:root {
      --wine: #450920;
      --rose: #a53860;
      --pink: #da627d;
      --blush: #ffa5ab;
      --sand: #f9dbbd;
      --cream: #f7ede2;
      --white: #fffdfa;
      --ink: #2a101a;
      --muted: #765e66;
      --line: rgba(69, 9, 32, 0.12);
      --shadow: 0 24px 70px rgba(69, 9, 32, 0.10);
      --radius: 24px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Open Sans", Arial, sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.55;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--rose);
    }

    .eyebrow::before {
      content: "";
      width: 30px;
      height: 1px;
      background: currentColor;
      opacity: .75;
    }

    .btn {
      min-height: 50px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      font-weight: 800;
      font-size: .92rem;
      transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--pink);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--rose);
    }

    .btn-light {
      color: #fff;
      border-color: rgba(255,255,255,.44);
      background: rgba(255,255,255,.05);
      backdrop-filter: blur(8px);
    }

    .btn-light:hover {
      background: #fff;
      color: var(--wine);
    }

    /* HEADER */
    .site-header {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255,255,255,.13);
      background: linear-gradient(180deg, rgba(8,6,8,.30), rgba(8,6,8,0));
    }

    .header-row {
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      min-width: 0;
    }

    .brand-logo {
      width: 54px;
      height: 54px;
      object-fit: contain;
      flex: 0 0 54px;
    }

    .brand-logo-placeholder {
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50%;
      display: none;
      place-items: center;
      font-size: .58rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      text-align: center;
      padding: 6px;
      color: rgba(255,255,255,.72);
    }

    .brand-copy {
      display: grid;
      gap: 2px;
    }

    .brand-copy strong {
      font-size: .92rem;
      line-height: 1.2;
    }

    .brand-copy span {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .11em;
      color: rgba(255,255,255,.62);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: rgba(255,255,255,.78);
      font-size: .86rem;
      font-weight: 600;
    }

    .nav a:not(.nav-cta) {
      transition: color .2s ease;
    }

    .nav a:not(.nav-cta):hover {
      color: #fff;
    }

    .nav-cta {
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--pink);
      color: #fff;
      display: inline-flex;
      align-items: center;
      font-weight: 800;
    }

    /* HERO */
    .hero {
      min-height: 94vh;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(10,8,10,.70) 0%, rgba(16,10,13,.64) 42%, rgba(20,8,14,.88) 100%),
        url('../../hero.png') center 28% / cover no-repeat,
        #151014;
      color: #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 34%, rgba(255,255,255,.055), transparent 44%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 32px;
      width: 1px;
      height: 54px;
      background: linear-gradient(to bottom, rgba(255,255,255,.8), rgba(255,255,255,0));
      opacity: .55;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(calc(100% - 40px), 1040px);
      margin: 0 auto;
      padding: 150px 0 100px;
      text-align: center;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: .19em;
      font-size: .72rem;
      font-weight: 800;
      color: var(--sand);
    }

    .hero-kicker::before,
    .hero-kicker::after {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
      opacity: .65;
    }

    .hero h1 {
      font-size: clamp(3.5rem, 8.8vw, 7.7rem);
      line-height: .93;
      letter-spacing: -.055em;
      font-weight: 800;
      text-wrap: balance;
    }

    .hero h1 span {
      display: block;
      color: #f3c2c6;
    }

    .hero p {
      width: min(100%, 680px);
      margin: 26px auto 0;
      color: rgba(255,255,255,.79);
      font-size: clamp(1rem, 1.5vw, 1.16rem);
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .hero-meta {
      margin-top: 42px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 24px;
      color: rgba(255,255,255,.72);
      font-size: .82rem;
      font-weight: 600;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
    }

    .hero-meta span::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--blush);
    }

    /* GENERIC SECTIONS */
    section {
      padding: 92px 0;
    }

    .section-header {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 56px;
      margin-bottom: 46px;
      align-items: end;
    }

    .section-header h2 {
      font-size: clamp(2.45rem, 5vw, 4.8rem);
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -.045em;
      margin-top: 12px;
      text-wrap: balance;
    }

    .section-header p {
      color: var(--muted);
      max-width: 630px;
      font-size: 1rem;
      line-height: 1.75;
    }

    /* ABOUT — texto à esquerda + foto à direita */
    .about-section {
      padding: 68px 0 74px;
      background: var(--cream);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      gap: 34px;
      align-items: stretch;
    }

    .about-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-section .section-header {
      display: block;
      margin-bottom: 26px;
    }

    .about-section .section-header h2 {
      font-size: clamp(2.25rem, 4.4vw, 4.05rem);
      max-width: 560px;
    }

    .about-section .section-header p {
      margin-top: 20px;
      max-width: 610px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .about-photo {
      min-height: 100%;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      background: #e9d8ce;
      box-shadow: var(--shadow);
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      min-height: 470px;
      object-fit: cover;
      object-position: center;
    }

    .about-box,
    .info-card,
    .ticket-card,
    .faq-item {
      border-radius: var(--radius);
    }

    .about-box {
      padding: 26px 28px;
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.38);
    }

    .about-box.feature {
      background: var(--rose);
      color: #fff;
      border-color: transparent;
    }

    .about-box h3 {
      font-size: 1.32rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .about-box p {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.65;
      max-width: 620px;
    }

    .about-box.feature p {
      color: rgba(255,255,255,.8);
    }

    /* INFO / DARK SECTION */
    .event-info {
      background: var(--wine);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .event-info::after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      right: -150px;
      top: -170px;
      border-radius: 50%;
      background: rgba(218,98,125,.10);
      filter: blur(2px);
      pointer-events: none;
    }

    .event-info .container {
      position: relative;
      z-index: 1;
    }

    .event-info .eyebrow {
      color: var(--blush);
    }

    .event-info .section-header p {
      color: rgba(255,255,255,.66);
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .info-card {
      padding: 26px;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.11);
      transition: transform .2s ease, background .2s ease;
    }

    .info-card:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,.075);
    }

    .info-card small {
      display: block;
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--blush);
      margin-bottom: 12px;
      font-weight: 800;
    }

    .info-card strong {
      display: block;
      font-size: 1.26rem;
      line-height: 1.25;
      font-weight: 800;
    }

    .info-card p {
      margin-top: 7px;
      font-size: .84rem;
      color: rgba(255,255,255,.55);
    }

    /* TICKETS */
    #ingressos {
      background: #fffaf7;
    }

    .ticket-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .ticket-summary {
      position: sticky;
      top: 24px;
      padding: 34px;
      border-radius: 28px;
      background: var(--rose);
      color: white;
      box-shadow: var(--shadow);
    }

    .ticket-summary .eyebrow {
      color: var(--sand) !important;
    }

    .ticket-summary h3 {
      font-size: 2rem;
      line-height: 1.05;
      font-weight: 800;
      margin: 12px 0 22px;
    }

    .price-line {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.16);
      font-size: .92rem;
    }

    .price-line span {
      color: rgba(255,255,255,.73);
    }

    .price-total {
      padding-top: 22px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
    }

    .price-total span {
      color: rgba(255,255,255,.74);
    }

    .price-total strong {
      font-size: 2.15rem;
      line-height: 1;
    }

    .ticket-note {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.16);
      font-size: .8rem;
      color: rgba(255,255,255,.7);
    }

    .ticket-card {
      padding: 38px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .ticket-card h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 7px;
      letter-spacing: -.025em;
    }

    .ticket-card > p {
      color: var(--muted);
      margin-bottom: 30px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      font-size: .8rem;
      font-weight: 800;
      color: var(--wine);
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 52px;
      padding: 0 15px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fffdfb;
      color: var(--ink);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .field input:focus,
    .field select:focus {
      border-color: rgba(165,56,96,.6);
      box-shadow: 0 0 0 4px rgba(218,98,125,.11);
    }

    .checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 19px 0 25px;
      font-size: .82rem;
      color: var(--muted);
    }

    .checkbox input {
      margin-top: 3px;
    }

    .submit-btn {
      width: 100%;
      border: 0;
      background: var(--wine);
    }

    .submit-btn:hover {
      background: var(--rose);
    }

    /* PAYMENT DEMO */
    .payment-demo {
      display: none;
      margin-top: 26px;
      padding: 24px;
      border: 1px dashed rgba(165,56,96,.28);
      border-radius: 20px;
      background: var(--cream);
    }

    .payment-demo.show {
      display: block;
      animation: fadeUp .35s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .payment-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      margin-bottom: 22px;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .76rem;
      font-weight: 800;
      color: #7a4c0d;
      background: #fff0bf;
      border-radius: 999px;
      padding: 8px 12px;
    }

    .qr-placeholder {
      display: grid;
      place-items: center;
      aspect-ratio: 1;
      width: min(100%, 240px);
      margin: 0 auto 20px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(69,9,32,.05) 1px, transparent 1px),
        linear-gradient(rgba(69,9,32,.05) 1px, transparent 1px);
      background-size: 18px 18px;
      text-align: center;
      padding: 28px;
      font-weight: 800;
      color: var(--muted);
    }

    .pix-code {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .pix-code input {
      flex: 1;
      min-width: 0;
      padding: 0 14px;
      min-height: 48px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: var(--muted);
    }

    .pix-code button {
      border: 0;
      border-radius: 12px;
      padding: 0 16px;
      background: var(--wine);
      color: #fff;
      cursor: pointer;
      font-weight: 800;
    }

    .demo-alert {
      margin-top: 16px;
      font-size: .78rem;
      color: var(--muted);
      text-align: center;
    }

    /* FAQ */
    #duvidas {
      background: var(--cream);
    }

    .faq-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .faq-item {
      padding: 25px;
      background: rgba(255,255,255,.45);
      border: 1px solid var(--line);
    }

    .faq-item h3 {
      font-size: .98rem;
      margin-bottom: 9px;
      color: var(--wine);
    }

    .faq-item p {
      color: var(--muted);
      font-size: .9rem;
    }


    .faq-contact {
      background: rgba(218, 98, 125, .18);
      border-color: rgba(165, 56, 96, .34);
      box-shadow: 0 14px 34px rgba(69, 9, 32, .06);
    }

    .faq-contact h3 {
      color: var(--rose);
    }

    .faq-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 42px;
      margin-top: 18px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--rose);
      color: #fff;
      font-size: .84rem;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease;
    }

    .faq-whatsapp:hover {
      background: var(--wine);
      transform: translateY(-2px);
    }

    /* FOOTER */
    footer {
      padding: 34px 0;
      background: var(--wine);
      color: rgba(255,255,255,.62);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
      font-size: .83rem;
    }

    .footer-brand {
      font-weight: 800;
      color: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .nav a:not(.nav-cta) {
        display: none;
      }

      .hero {
        min-height: 88vh;
      }

      .section-header,
      .ticket-layout {
        grid-template-columns: 1fr;
      }

      .section-header {
        gap: 18px;
      }

      .about-layout {
        grid-template-columns: 1fr;
      }

      .about-photo {
        min-height: 420px;
      }

      .info-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ticket-summary {
        position: static;
      }
    }

    @media (max-width: 620px) {
      .container,
      .hero-inner {
        width: min(calc(100% - 28px), var(--container));
      }

      .header-row {
        min-height: 76px;
      }

      .brand-logo,
      .brand-logo-placeholder {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
      }

     .brand-copy span {
    display: block;
    font-size: .56rem;
    letter-spacing: .08em;
    line-height: 1.2;
    white-space: nowrap;
      }

    .brand-copy strong {
    font-size: .82rem;
      }

      .nav-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: .78rem;
      }

      .hero {
        min-height: 82vh;
        background:
          linear-gradient(180deg, rgba(10,8,10,.82) 0%, rgba(16,10,13,.76) 42%, rgba(20,8,14,.92) 100%),
          url('../../hero.png') center top / cover no-repeat,
          #151014;
      }

      .hero-inner {
        padding: 126px 0 88px;
      }

      .hero-kicker {
        font-size: .62rem;
        letter-spacing: .13em;
      }

      .hero-kicker::before,
      .hero-kicker::after {
        width: 20px;
      }

      .hero h1 {
        font-size: clamp(3.25rem, 17vw, 5.1rem);
      }

      .hero p {
        font-size: .94rem;
      }

      .hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: .75rem;
      }

      .hero-meta span {
        justify-content: center;
      }

      section {
        padding: 70px 0;
      }

      .about-section {
        padding: 56px 0 60px;
      }

      .about-grid,
      .info-grid,
      .faq-list,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .about-photo img {
        min-height: 380px;
      }

      .field.full {
        grid-column: auto;
      }

      .about-box,
      .ticket-card,
      .ticket-summary {
        padding: 26px;
      }

      .payment-head,
      .price-total {
        align-items: flex-start;
        flex-direction: column;
      }

      .pix-code {
        flex-direction: column;
      }

      .pix-code button {
        min-height: 48px;
      }
    }

    /* REAL PAYMENT STATES */
    .form-error {
      display: none;
      margin: 0 0 18px;
      padding: 12px 14px;
      border-radius: 12px;
      background: #fff0f1;
      color: #8c213f;
      border: 1px solid rgba(165,56,96,.22);
      font-size: .86rem;
    }
    .form-error.show { display: block; }
    .submit-btn[disabled] { opacity: .6; cursor: wait; transform: none; }
    .payment-demo { border-style: solid; }
    .payment-demo .qr-placeholder img {
      width: 100%; height: 100%; object-fit: contain; border-radius: 12px;
    }
    .status.is-paid { color: #115c39; background: #dff7e9; }
    .status.is-failed { color: #8c213f; background: #ffe0e7; }
    .payment-success {
      display: none;
      margin-top: 18px;
      border-radius: 16px;
      padding: 18px;
      background: #eaf8ef;
      color: #174b31;
      text-align: center;
      font-weight: 700;
    }
    .payment-success.show { display: block; }
    .payment-link {
      display: none;
      margin-top: 12px;
      text-align: center;
      font-size: .86rem;
      font-weight: 800;
      color: var(--rose);
    }
    .payment-link.show { display: block; }
    .dev-badge {
      display: inline-flex;
      margin-top: 14px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(69,9,32,.07);
      color: var(--muted);
      font-size: .72rem;
      font-weight: 800;
    }

/* LOTES */
.lots-section {
  background: #fffaf7;
}
.lot-map-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.lot-map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.lot-map-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.lot-map-card figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
}
.lot-legend {
  display: grid;
  gap: 12px;
}
.lot-legend-card {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.lot-color-dot {
  width: 12px;
  height: 100%;
  min-height: 58px;
  border-radius: 999px;
  background: var(--lot-color);
}
.lot-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lot-title-row strong { color: var(--wine); }
.lot-title-row span {
  font-size: .75rem;
  font-weight: 800;
  color: var(--muted);
}
.lot-legend-card p {
  margin-top: 5px;
  font-size: .9rem;
  color: var(--muted);
}
.lot-availability {
  display: block;
  margin-top: 8px;
  font-size: .76rem;
  font-weight: 800;
  color: var(--rose);
}
.lot-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--muted);
  font-size: .8rem;
}

/* LOT CHOICE */
.lot-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.lot-fieldset legend {
  font-size: .8rem;
  font-weight: 800;
  color: var(--wine);
  margin-bottom: 8px;
}
.lot-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lot-choice {
  cursor: pointer;
  min-width: 0;
}
.lot-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lot-choice-inner {
  display: block;
  height: 100%;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fffdfb;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.lot-choice-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--lot-color);
}
.lot-choice:hover .lot-choice-inner { transform: translateY(-2px); }
.lot-choice input:checked + .lot-choice-inner {
  border-color: var(--lot-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lot-color) 18%, transparent);
}
.lot-choice input:disabled + .lot-choice-inner {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.25);
}
.lot-choice-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}
.lot-choice-top strong { color: var(--wine); }
.lot-choice-top > span { font-size: .72rem; font-weight: 800; color: var(--muted); }
.lot-choice small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
  font-size: .72rem;
}
.lot-choice em {
  display: block;
  margin-top: 9px;
  color: var(--rose);
  font-style: normal;
  font-size: .7rem;
  font-weight: 800;
}
.payment-lot {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
}

@media (max-width: 900px) {
  .lot-map-layout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .lot-choice-grid { grid-template-columns: 1fr; }
  .lot-title-row { align-items: flex-start; flex-direction: column; gap: 3px; }
}
