:root {
      --bg: #f7f3ec;
      --paper: #fffdf8;
      --soft: #efe7da;
      --line: #dfd3c1;
      --text: #282725;
      --muted: #66605a;
      --gold: #b69b69;
      --gold-dark: #8f7240;
      --green: #1f8f5f;
      --green-dark: #146a46;
      --shadow: 0 18px 45px rgba(49, 43, 33, .10);
      --radius: 8px;
      --pill: 999px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
      overflow-x: clip;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--bg);
      font-family: "Montserrat", Arial, Helvetica, sans-serif;
      line-height: 1.6;
      overflow-x: clip;
    }

    body.nav-open { overflow: hidden; }

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

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

    p { margin: 0; }

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

    .topbar {
      background: rgba(47, 45, 42, .92);
      color: #f7f1e7;
      font-size: .86rem;
    }

    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 8px 0;
    }

    .topbar a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      opacity: .96;
      transition: color .2s ease, opacity .2s ease, transform .2s ease;
    }

    .topbar a:hover,
    .topbar a:focus-visible {
      color: #d8c28e;
      opacity: 1;
      transform: translateY(-1px);
    }

    .topbar-icon {
      width: 15px;
      height: 15px;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .topbar-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 248, .78);
      border-bottom: 1px solid rgba(182, 155, 105, .24);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 30px rgba(47, 45, 42, .05);
    }

    @media (min-width: 821px) {
      .site-header {
        position: sticky;
        top: 0;
      }
    }

    .header-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 132px;
    }

    .brand img {
      width: 106px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 13px;
      font-size: .82rem;
      color: #34312e;
    }

    .nav a {
      padding: 10px 0;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: color .2s ease, border-color .2s ease;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .nav-dropdown-toggle::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      opacity: .72;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      z-index: 5;
      width: 286px;
      display: grid;
      gap: 4px;
      padding: 12px;
      border: 1px solid rgba(176, 141, 87, .22);
      border-radius: 18px;
      background: rgba(255, 253, 248, .98);
      box-shadow: 0 22px 48px rgba(47, 45, 42, .16);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 10px);
      transition: opacity .18s ease, transform .18s ease;
    }

    .nav-dropdown-menu::before {
      content: "";
      position: absolute;
      inset: -16px 0 auto;
      height: 16px;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .nav-dropdown-menu a {
      display: flex;
      align-items: center;
      min-height: 40px;
      padding: 10px 12px;
      border: 0;
      border-radius: 12px;
      color: #3c3934;
      font-size: .82rem;
      font-weight: 700;
      white-space: normal;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible {
      background: #f4ebda;
      color: var(--gold-dark);
    }

    .nav a:hover,
    .nav a:focus-visible,
    .nav a.is-active {
      color: var(--gold-dark);
      border-color: var(--gold);
    }

    .nav a.is-active {
      font-weight: 800;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--pill);
      background: var(--paper);
      color: var(--text);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: var(--pill);
      font-weight: 700;
      text-align: center;
      white-space: nowrap;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(31, 143, 95, .18);
    }

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

    .btn-primary:hover,
    .btn-primary:focus-visible { background: var(--green-dark); }

    .header-whatsapp {
      align-self: center;
      min-height: 42px;
      height: 42px;
      padding: 10px 16px;
      flex: 0 0 auto;
      white-space: nowrap;
      font-size: .84rem;
      line-height: 1;
    }

    .header-whatsapp .whatsapp-icon {
      width: 1.05rem;
      height: 1.05rem;
      margin-right: 0;
    }

    .whatsapp-icon {
      width: 1.12em;
      height: 1.12em;
      flex: 0 0 auto;
      fill: currentColor;
      margin-right: 2px;
      vertical-align: -.16em;
    }

    .btn-secondary {
      color: #2f2a22;
      background: var(--paper);
      border-color: var(--gold);
    }

    .btn-gold {
      color: #221f1b;
      background: #d8c28e;
      border-color: #c9ad70;
    }

    .btn-gold:hover,
    .btn-gold:focus-visible {
      background: #c9ad70;
      box-shadow: 0 12px 28px rgba(143, 114, 64, .22);
    }

    .section {
      padding: 86px 0;
    }

    .section.alt {
      background: var(--paper);
    }

    .section-head {
      max-width: 1040px;
      margin-bottom: 34px;
    }

    .section-eyebrow {
      display: inline-flex;
      color: var(--gold-dark);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.12;
      letter-spacing: 0;
    }

    h1 {
      max-width: 880px;
      font-size: clamp(2.05rem, 4vw, 3.95rem);
      color: #fff;
    }

    h2 {
      font-size: clamp(1.75rem, 3vw, 2.7rem);
      color: #28231d;
    }

    h3 {
      font-size: 1.25rem;
      color: #302b24;
    }

    .lead {
      margin-top: 18px;
      font-size: 1.08rem;
      color: var(--muted);
    }

    .hero {
      position: relative;
      height: clamp(500px, 68vh, 570px);
      display: grid;
      align-items: center;
      overflow: hidden;
      touch-action: pan-y;
      user-select: none;
      color: #fff;
      background: #2c2b28;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .75s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
    }

    .hero-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(24, 23, 21, .86), rgba(24, 23, 21, .60) 46%, rgba(24, 23, 21, .22));
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-dots {
      position: absolute;
      left: 50%;
      bottom: 22px;
      z-index: 8;
      display: flex;
      gap: 10px;
      transform: translateX(-50%);
    }

    .hero-dot {
      width: 14px;
      height: 14px;
      padding: 0;
      border: 2px solid rgba(255, 255, 255, .86);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      transition: width .2s ease, background .2s ease;
    }

    .hero-dot.is-active {
      width: 38px;
      background: #fff;
      border-color: #fff;
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      z-index: 8;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 0 4px;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 50%;
      background: rgba(255, 255, 255, .14);
      color: #fff;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
      transition: background .2s ease, transform .2s ease;
    }

    .hero-arrow:hover,
    .hero-arrow:focus-visible {
      background: rgba(255, 255, 255, .24);
      transform: translateY(-50%) scale(1.04);
    }

    .hero-arrow.prev { left: 22px; }
    .hero-arrow.next { right: 22px; }

    .hero-content {
      position: relative;
      z-index: 2;
      max-height: 100%;
      padding: 58px 0 68px;
      overflow: hidden;
    }

    .hero-content .section-eyebrow {
      color: #d8c28e;
    }

    .hero-copy {
      display: none;
    }

    .hero-copy.is-active {
      display: block;
    }

    .hero-title {
      max-width: 760px;
      font-size: clamp(1.95rem, 3.35vw, 3.25rem);
      color: #fff;
    }

    .hero-line {
      display: block;
      white-space: nowrap;
    }

    .hero-subtitle {
      max-width: 720px;
      margin-top: 14px;
      font-size: clamp(.96rem, 1.18vw, 1.08rem);
      color: rgba(255, 255, 255, .92);
    }

    .hero-support {
      max-width: 760px;
      margin-top: 18px;
      color: rgba(255, 255, 255, .82);
      font-size: 1.03rem;
    }

    .inner-hero {
      position: relative;
      min-height: clamp(220px, 28vh, 300px);
      display: grid;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background: #2f2d2a;
    }

    .inner-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(47, 45, 42, .88), rgba(47, 45, 42, .62) 48%, rgba(47, 45, 42, .18));
    }

    .inner-hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .inner-hero-content {
      position: relative;
      z-index: 1;
      max-width: 820px;
      padding: 32px 0;
    }

    .inner-hero h1 {
      max-width: 780px;
      color: #fff;
      font-size: clamp(1.65rem, 3vw, 2.75rem);
    }

    .inner-hero .section-eyebrow {
      color: #efe3c8;
    }

    .inner-hero p {
      max-width: 720px;
      margin-top: 16px;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(1rem, 1.25vw, 1.12rem);
    }

    .hero-actions,
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    #como-funciona .cta-row {
      justify-content: center;
    }

    #como-funciona .section-head {
      margin-inline: auto;
      text-align: center;
    }

    #planos .section-head,
    #planos .note {
      margin-inline: auto;
      text-align: center;
    }

    #planos .note {
      max-width: 860px;
    }

    #planos .cta-row {
      justify-content: center;
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
      max-width: 800px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 11px;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .95);
      font-weight: 700;
      font-size: .84rem;
    }

    .grid {
      display: grid;
      gap: 22px;
    }

    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .card {
      background: var(--paper);
      border: 1px solid rgba(182, 155, 105, .28);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 10px 30px rgba(45, 39, 29, .06);
    }

    .card p {
      margin-top: 12px;
      color: var(--muted);
    }

    .icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 8px;
      background: #efe3c8;
      color: var(--gold-dark);
      font-size: 1.35rem;
      font-weight: 800;
    }

    .feature-carousel {
      display: flex;
      gap: 0;
      margin-top: 34px;
      padding: 0;
      overflow-x: hidden;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline mandatory;
      touch-action: pan-y;
      scrollbar-width: none;
      cursor: grab;
    }

    .feature-carousel::-webkit-scrollbar {
      display: none;
    }

    .feature-carousel.is-dragging {
      cursor: grabbing;
      scroll-snap-type: none;
      user-select: none;
    }

    .feature-page {
      flex: 0 0 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      padding: 24px 16px 58px;
      scroll-snap-align: start;
    }

    .feature-card {
      position: relative;
      min-height: 430px;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border: 0;
      border-radius: 18px;
      background: #26231f;
      box-shadow: 0 10px 22px rgba(45, 39, 29, .10);
      isolation: isolate;
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .feature-card-link {
      position: absolute;
      inset: 0;
      display: block;
      border-radius: inherit;
      color: inherit;
      cursor: pointer;
      user-select: none;
      -webkit-user-drag: none;
    }

    .feature-carousel.is-dragging .feature-card-link {
      cursor: grabbing;
    }

    .feature-card-link:focus-visible {
      outline: 3px solid rgba(216, 194, 142, .88);
      outline-offset: 4px;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 3;
      border: 1px solid rgba(182, 155, 105, .34);
      border-radius: inherit;
      pointer-events: none;
      transition: border-color .28s ease;
    }

    .feature-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(143, 114, 64, .02), rgba(143, 114, 64, .28) 38%, rgba(143, 114, 64, .86)),
        radial-gradient(circle at top right, rgba(255, 246, 219, .28), transparent 32%);
      pointer-events: none;
    }

    .feature-card img {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      pointer-events: none;
      user-select: none;
      transition: transform .45s ease, filter .45s ease;
    }

    .feature-card-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 18px;
      z-index: 2;
      display: grid;
      grid-template-rows: 42px 48px 1fr;
      row-gap: 8px;
      align-content: start;
      height: 226px;
      padding: 26px;
      color: #fff;
    }

    .feature-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 12px;
      background: rgba(255, 255, 255, .16);
      color: #fff6db;
      box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
    }

    .feature-icon svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .feature-card h3 {
      color: #fff;
      font-size: 1.22rem;
      line-height: 1.22;
      align-self: start;
      text-shadow: 0 2px 14px rgba(36, 28, 16, .22);
    }

    .feature-card p {
      color: rgba(255, 255, 255, .82);
      font-size: .92rem;
      line-height: 1.5;
      align-self: start;
      text-shadow: 0 2px 12px rgba(36, 28, 16, .22);
    }

    .feature-card:hover,
    .feature-card:focus-within {
      box-shadow: 0 14px 30px rgba(45, 39, 29, .16);
      transform: translateY(-4px);
    }

    .feature-card:hover::before,
    .feature-card:focus-within::before {
      border-color: rgba(216, 194, 142, .78);
    }

    .feature-card:hover img,
    .feature-card:focus-within img {
      filter: saturate(1.04) contrast(1.03);
      transform: scale(1.06);
    }

    .feature-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: -22px;
    }

    .feature-dots:empty {
      display: none;
    }

    .feature-dot {
      width: 11px;
      height: 11px;
      padding: 0;
      border: 1px solid var(--gold-dark);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      transition: width .2s ease, background .2s ease;
    }

    .feature-dot.is-active {
      width: 32px;
      background: var(--gold-dark);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 46px;
      align-items: center;
    }

    .why-parallax {
      position: relative;
      overflow: hidden;
      background: url("../img/parallax.jpg") center / cover fixed;
      background: image-set(url("../img/parallax.webp") type("image/webp"), url("../img/parallax.jpg") type("image/jpeg")) center / cover fixed;
    }

    .why-parallax .container {
      position: relative;
      z-index: 1;
    }

    .why-panel {
      max-width: 720px;
      padding: 38px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: var(--radius);
      background: rgba(255, 252, 245, .92);
      box-shadow: 0 24px 70px rgba(18, 15, 11, .22);
      backdrop-filter: blur(8px);
    }

    .why-panel .lead {
      color: #514b43;
    }

    .why-panel .check-list li {
      color: #332e28;
    }

    .local-band {
      background:
        linear-gradient(rgba(0, 0, 0, .10), rgba(0, 0, 0, .10)),
        url("../img/parallax2.jpg") center / cover fixed;
      background:
        linear-gradient(rgba(0, 0, 0, .10), rgba(0, 0, 0, .10)),
        image-set(url("../img/parallax2.webp") type("image/webp"), url("../img/parallax2.jpg") type("image/jpeg")) center / cover fixed;
      color: #fff;
    }

    .local-content {
      max-width: 760px;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .36);
    }

    .local-content h2,
    .local-content .lead,
    .local-content .section-eyebrow {
      color: #fff;
    }

    .local-content .section-eyebrow {
      border-color: rgba(255, 255, 255, .48);
      background: rgba(255, 255, 255, .16);
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
      color: #403b35;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .28em;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: inset 0 0 0 5px #dff0e7;
    }

    .media-card {
      overflow: hidden;
      padding: 0;
    }

    .media-card img {
      width: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    .internal-media-split {
      align-items: flex-start;
    }

    .internal-media-split .section-head {
      text-align: left;
      margin: 0;
    }

    .internal-media-split .cta-row {
      justify-content: flex-start;
    }

    .internal-image-card {
      margin: 0;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 22px 52px rgba(47, 45, 42, .13);
    }

    .internal-image-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .contact-section {
      position: relative;
      padding: 44px 0;
      overflow: visible;
      background: linear-gradient(135deg, var(--gold-dark), #6f5630);
      color: #fff;
    }

    .contact-section::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 1px;
      background: rgba(255, 255, 255, .18);
    }

    .contact-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
      gap: 34px;
      align-items: center;
    }

    .contact-copy {
      color: #fff;
    }

    .contact-copy h2 {
      color: #fff;
      font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    }

    .contact-copy p {
      margin-top: 10px;
      color: rgba(255, 255, 255, .78);
    }

    .contact-section .contact-form {
      padding: 20px;
      border-radius: 18px;
      background: rgba(47, 45, 42, .94);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
    }

    .contact-details {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .contact-line,
    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .contact-line svg,
    .footer-contact svg {
      width: 18px;
      height: 18px;
      margin-top: .2em;
      color: #d8c28e;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .contact-line a,
    .contact-line span {
      color: rgba(255, 255, 255, .86);
    }

    .contact-cta {
      justify-content: flex-start;
      margin-top: 24px;
    }

    .contact-cta .btn {
      width: auto;
      min-width: 280px;
      margin-top: 0;
    }

    .contact-form {
      display: grid;
      gap: 10px;
      margin-top: 0;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid rgba(216, 194, 142, .28);
      border-radius: 14px;
      background: rgba(255, 255, 255, .10);
      color: #fff;
      font: inherit;
      padding: 10px 13px;
      outline: none;
    }

    .contact-form textarea {
      min-height: 76px;
      resize: vertical;
    }

    .form-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .form-status {
      min-height: 0;
      margin: 0;
      color: rgba(255, 255, 255, .76);
      font-size: .9rem;
      font-weight: 700;
    }

    .form-status.is-success {
      color: #d8c28e;
    }

    .form-status.is-error {
      color: #ffb4a8;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: rgba(255, 255, 255, .62); }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #d8c28e;
      box-shadow: 0 0 0 3px rgba(216, 194, 142, .16);
    }

    .contact-copy .btn {
      width: 100%;
      margin-top: 4px;
    }

    .contact-copy .contact-cta .btn {
      width: auto;
      min-width: 280px;
      margin-top: 0;
    }

    .contact-copy .btn:disabled {
      opacity: .72;
      cursor: wait;
      transform: none;
    }

    .plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 30px;
    }

    .plan-card.featured {
      border-color: rgba(143, 114, 64, .72);
      box-shadow: var(--shadow);
    }

    .plan-seal {
      position: absolute;
      top: -14px;
      right: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 6px 13px;
      border: 1px solid rgba(143, 114, 64, .28);
      border-radius: 999px;
      background: #d8c28e;
      color: #2b251b;
      font-size: .76rem;
      font-weight: 800;
      text-align: center;
      text-transform: uppercase;
      box-shadow: 0 8px 18px rgba(49, 43, 33, .12);
    }

    .price {
      margin-top: 18px;
      font-size: 2.1rem;
      line-height: 1;
      color: var(--green-dark);
      font-weight: 800;
    }

    .price span {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 700;
    }

    .plan-card .check-list {
      margin-bottom: 26px;
    }

    .plan-card .btn {
      margin-top: auto;
      width: 100%;
      white-space: nowrap;
      font-size: .9rem;
      padding-inline: 14px;
    }

    .note {
      margin-top: 20px;
      color: var(--muted);
      font-size: .92rem;
    }

    .compare-wrap {
      overflow-x: auto;
      border: 1px solid rgba(182, 155, 105, .32);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 10px 30px rgba(45, 39, 29, .06);
    }

    table {
      width: 100%;
      min-width: 780px;
      border-collapse: collapse;
    }

    th,
    td {
      padding: 18px 16px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    th {
      background: #f1e8d8;
      color: #332e27;
      font-size: .95rem;
    }

    tr:last-child td { border-bottom: 0; }

    td:first-child {
      color: #2f2a23;
      font-weight: 800;
      width: 22%;
    }

    .compare-cards {
      display: none;
      gap: 16px;
    }

    .compare-card h3 {
      margin-bottom: 14px;
      color: var(--green-dark);
    }

    .compare-line {
      display: grid;
      grid-template-columns: minmax(96px, .55fr) minmax(0, 1fr);
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: .92rem;
    }

    .compare-line strong {
      color: #2f2a23;
      font-size: .86rem;
    }

    .included-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 24px;
      margin-top: 26px;
      padding: 0;
      list-style: none;
    }

    .included-grid li {
      position: relative;
      padding-left: 28px;
      color: #403b35;
    }

    .included-grid li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green);
      font-weight: 800;
    }

    .steps {
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-top: 52px;
      text-align: center;
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      position: absolute;
      left: 50%;
      top: -16px;
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: var(--gold);
      color: #fff;
      font-weight: 800;
      box-shadow: 0 12px 28px rgba(143, 114, 64, .24);
      transform: translateX(-50%);
    }

    .about-band {
      background:
        linear-gradient(rgba(47, 45, 42, .90), rgba(47, 45, 42, .90)),
        url("../img/parallax2.jpg") center / cover fixed;
      background:
        linear-gradient(rgba(47, 45, 42, .90), rgba(47, 45, 42, .90)),
        image-set(url("../img/parallax2.webp") type("image/webp"), url("../img/parallax2.jpg") type("image/jpeg")) center / cover fixed;
      color: #f8f0e3;
    }

    .about-band .section-eyebrow {
      color: #efe3c8;
    }

    .about-band h2,
    .about-band h3 { color: #fff; }

    .about-band .lead,
    .about-band p { color: rgba(255, 255, 255, .78); }

    .about-band .card {
      background: rgba(255, 255, 255, .06);
      border-color: rgba(216, 194, 142, .28);
      box-shadow: none;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid rgba(182, 155, 105, .28);
      border-radius: var(--radius);
      background: var(--paper);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 22px;
      border: 0;
      background: transparent;
      color: var(--text);
      font: inherit;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
    }

    .faq-question span {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #efe3c8;
      color: var(--gold-dark);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
    }

    .faq-answer p {
      padding: 0 22px 22px;
      color: var(--muted);
    }

    .faq-item.is-open .faq-answer { max-height: 260px; }
    .faq-item.is-open .faq-question span { background: var(--gold); color: #fff; }

    .final-cta {
      background: linear-gradient(135deg, var(--gold-dark), #6f5630);
      color: #fff;
      text-align: center;
    }

    .final-cta h2 { color: #fff; }

    .final-cta p {
      max-width: 680px;
      margin: 18px auto 0;
      color: rgba(255, 255, 255, .82);
      font-size: 1.08rem;
    }

    .final-cta .cta-row { justify-content: center; }

    .site-footer {
      padding: 44px 0 24px;
      background: #22211f;
      color: #f6efe5;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .7fr 1fr;
      gap: 24px;
    }

    .footer-logo {
      width: 150px;
      margin-bottom: 8px;
    }

    .site-footer h3 {
      color: #fff;
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .site-footer p,
    .site-footer li,
    .site-footer a {
      color: rgba(255, 255, 255, .78);
    }

    .site-footer a:hover,
    .site-footer a:focus-visible {
      color: #d8c28e;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 5px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-services ul {
      display: grid;
      gap: 4px;
      margin: 0;
      padding: 0 0 0 12px;
      list-style: none;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .22s ease, opacity .18s ease, margin .18s ease;
    }

    .footer-services:hover ul,
    .footer-services:focus-within ul,
    .footer-services.is-open ul {
      margin-top: 4px;
      max-height: 260px;
      opacity: 1;
    }

    .footer-services ul a {
      font-size: .9em;
      color: rgba(255, 255, 255, .62);
    }

    .footer-note {
      margin-top: 20px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      font-size: .88rem;
      color: rgba(255, 255, 255, .62);
    }

    .footer-cookie {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      font-size: .88rem;
      color: rgba(255, 255, 255, .68);
    }

    .footer-cookie + .footer-note {
      margin-top: 14px;
      padding-top: 0;
      border-top: 0;
    }

    .footer-bottom {
      background: #d8c28e;
      color: #27231d;
      font-size: .88rem;
      font-weight: 700;
    }

    .footer-bottom-inner {
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      padding: 10px 0;
    }

    .footer-bottom a {
      color: #27231d;
      text-decoration: none;
    }

    .footer-bottom a:hover,
    .footer-bottom a:focus-visible {
      color: #fff6db;
    }

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 60;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      padding: 13px 20px;
      border-radius: 999px;
      color: #fff;
      background: var(--green);
      box-shadow: 0 16px 38px rgba(31, 143, 95, .34);
      font-weight: 800;
      transition: width .2s ease, padding .2s ease, min-height .2s ease, transform .2s ease;
    }

    .whatsapp-float .whatsapp-icon {
      width: 1.45em;
      height: 1.45em;
      margin-right: 0;
    }

    .float-copy {
      display: grid;
      gap: 3px;
      line-height: 1;
      text-align: left;
    }

    .float-kicker {
      font-size: .62rem;
      font-weight: 600;
      opacity: .88;
      white-space: nowrap;
    }

    .float-number {
      font-size: 1.3rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .whatsapp-float.is-compact {
      width: 54px;
      min-height: 54px;
      padding: 0;
      gap: 0;
      border-radius: 50%;
    }

    .whatsapp-float.is-compact .float-copy {
      display: none;
    }

    .whatsapp-float.is-compact:hover,
    .whatsapp-float.is-compact:focus-visible {
      width: auto;
      min-height: 58px;
      padding: 13px 20px;
      gap: 10px;
      border-radius: 999px;
    }

    .whatsapp-float.is-compact:hover .float-copy,
    .whatsapp-float.is-compact:focus-visible .float-copy {
      display: grid;
    }

    @media (max-width: 1060px) {
      .nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        display: none;
        max-height: calc(100vh - 120px);
        overflow: auto;
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--paper);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
      }

      .nav.is-open { display: flex; }

      .nav a {
        padding: 12px 4px;
        border-bottom: 1px solid var(--line);
      }

      .nav-dropdown {
        display: grid;
      }

      .nav-dropdown-toggle {
        padding: 12px 4px;
        border-bottom: 1px solid var(--line);
      }

      .nav-dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        padding: 8px 0 4px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
      }

      .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
      }

      .nav-dropdown:hover .nav-dropdown-menu,
      .nav-dropdown:focus-within .nav-dropdown-menu,
      .nav-dropdown.is-open .nav-dropdown-menu {
        left: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
      }

      .nav-dropdown-menu::before {
        display: none;
      }

      .nav-dropdown-menu a {
        min-height: 38px;
        padding: 9px 12px;
        border-bottom: 0;
        background: #f8f1e5;
        white-space: normal;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
      }
      .header-inner {
        justify-content: flex-start;
        gap: 10px;
      }
      .brand { margin-right: auto; }
      .header-inner .btn-primary {
        display: inline-flex;
        width: 46px;
        min-height: 46px;
        padding: 0;
        flex: 0 0 auto;
      }
      .header-inner .btn-primary .whatsapp-label { display: none; }
      .header-inner .btn-primary .whatsapp-icon {
        width: 1.25rem;
        height: 1.25rem;
        margin: 0;
      }
      .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .feature-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .plan-card.featured { transform: none; }
    }

    @media (max-width: 820px) {
      .topbar { display: none; }
      .site-header {
        position: relative;
        background: rgba(255, 253, 248, .94);
      }

      .topbar-links { gap: 10px 16px; }
      .header-inner { min-height: 68px; }
      .brand img { width: 118px; }
      .nav {
        right: 14px;
        left: 14px;
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
      }
      .hero { height: 500px; }
      .hero-content { padding: 36px 0 74px; }
      .hero-copy {
        max-width: 620px;
      }
      .hero-title {
        max-width: 620px;
      }
      .inner-hero {
        min-height: 180px;
      }
      .inner-hero-content {
        padding: 26px 0;
      }
      .hero-dots { bottom: 18px; }
      .hero-slide::after { background: linear-gradient(90deg, rgba(24, 23, 21, .88), rgba(24, 23, 21, .66)); }
      .hero-slide img { object-position: 55% center; }
      .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.7rem;
      }
      .hero-arrow.prev { left: 12px; }
      .hero-arrow.next { right: 12px; }
      .section { padding: 64px 0; }
      body { font-size: 15px; }
      .lead { font-size: 1rem; }
      h2 { font-size: 1.72rem; }
      .why-parallax {
        background-attachment: scroll;
      }
      .local-band {
        background-attachment: scroll;
      }
      .about-band {
        background-attachment: scroll;
      }
      .why-panel {
        padding: 30px;
      }
      .split { grid-template-columns: 1fr; gap: 24px; }
      .internal-media-split {
        align-items: center;
      }
      .internal-media-split .section-head {
        text-align: center;
      }
      .internal-media-split .cta-row {
        justify-content: center;
      }
      .grid-2,
      .grid-3,
      .grid-4,
      .footer-grid,
      .included-grid { grid-template-columns: 1fr; }
      .feature-page { padding: 20px 14px 46px; }
      .feature-carousel {
        cursor: grab;
      }
      .feature-card,
      .feature-card img {
        min-height: 390px;
      }
      .media-card img { min-height: 280px; }
      .compare-wrap { display: none; }
      /* Mobile step number alignment */
      .steps {
        gap: 46px;
      }
      .step {
        padding-top: 64px;
      }
      .step::before {
        top: -24px;
      }
      .compare-cards { display: grid; }
      .footer-note { padding-bottom: 72px; }
      .site-footer .container {
        width: min(100% - 40px, var(--max));
      }
      .contact-section {
        padding: 36px 0 40px;
      }
      .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }

    @media (max-width: 520px) {
      .container { width: min(100% - 28px, var(--max)); }
      .cta-row .btn {
        width: auto;
        max-width: 100%;
        padding: 12px 18px;
        font-size: .84rem;
        line-height: 1.25;
        white-space: normal;
        border-radius: 26px;
      }
      .final-cta .cta-row .btn,
      .contact-form .btn {
        width: 100%;
      }
      .hero {
        height: 500px;
        min-height: 500px;
      }
      .hero-content {
        padding-top: 30px;
        padding-bottom: 66px;
      }
      .hero-title { font-size: 1.58rem; }
      .hero-title-main {
        font-size: clamp(1.34rem, 5.55vw, 1.58rem);
      }
      .hero-copy {
        max-width: 100%;
      }
      .hero-subtitle {
        margin-top: 10px;
        font-size: .88rem;
        line-height: 1.45;
      }
      .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
      }
      .hero-actions .btn {
        width: auto;
        min-width: 0;
        min-height: 42px;
        padding: 10px 9px;
        font-size: .76rem;
        line-height: 1.15;
        white-space: nowrap;
      }
      .badges { gap: 8px; }
      .badge:nth-child(n+4) { display: none; }
      .badge {
        width: auto;
        justify-content: center;
        min-height: 30px;
        font-size: .78rem;
        padding: 6px 9px;
      }
      .card,
      .plan-card,
      .why-panel { padding: 22px; }
      .feature-page {
        grid-template-columns: 1fr;
        padding: 18px 14px 42px;
      }
      .feature-card-body {
        bottom: 14px;
        grid-template-rows: 42px 50px 1fr;
        height: 220px;
        padding: 22px;
      }
      .plan-seal {
        top: -12px;
        right: 18px;
        padding: 6px 12px;
      }
      h1 { font-size: 1.78rem; }
      h2 { font-size: 1.62rem; }
      .hero-dots { bottom: 12px; }
      .hero-dot {
        width: 11px;
        height: 11px;
      }
      .hero-dot.is-active { width: 30px; }
      .hero-arrow { display: none; }
      .steps {
        gap: 46px;
      }
      .step {
        padding-top: 66px;
      }
      .step::before {
        top: -24px;
        left: 50%;
        transform: translateX(-50%);
      }
      #sepultamento .cta-row .btn {
        width: auto;
        min-width: 0;
        padding-inline: 20px;
        white-space: nowrap;
      }
      .site-footer .container {
        width: min(100% - 42px, var(--max));
      }
    }
  


    .internal-card-grid {
      margin-top: 26px;
    }

    .internal-list {
      max-width: 860px;
      margin: 22px auto 0;
      background: #fff;
      border: 1px solid rgba(47, 45, 42, .08);
      border-radius: 18px;
      padding: 26px;
      box-shadow: 0 16px 34px rgba(47, 45, 42, .08);
    }

    .internal-related {
      background: #f7f2e8;
    }

    .related-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .related-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 18px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(176, 141, 87, .35);
      color: var(--gold-dark);
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 12px 26px rgba(47, 45, 42, .08);
      transition: color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .related-links a:hover,
    .related-links a:focus-visible {
      color: var(--green);
      border-color: rgba(24, 97, 64, .32);
      transform: translateY(-2px);
    }

    .inner-hero .cta-row,
    .internal-intro .cta-row {
      justify-content: center;
    }
