﻿:root {
      --ink: #1c1711;
      --cocoa: #4b2c1d;
      --cream: #fff8e9;
      --paper: #f7ead3;
      --butter: #ffd56a;
      --tomato: #d9512c;
      --tomato-dark: #aa341f;
      --basil: #66794c;
      --basil-dark: #33422d;
      --sky: #83bdd1;
      --sky-dark: #2e6a82;
      --pink: #f1a9a1;
      --line: rgba(28, 23, 17, 0.14);
      --light-line: rgba(255, 248, 233, 0.24);
      --shadow: 0 24px 70px rgba(45, 26, 15, 0.18);
      --radius: 8px;
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --display: "Nunito", system-ui, sans-serif;
    }

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

    html {
      width: 100%;
      max-width: 100%;
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
      overscroll-behavior: none;
      overscroll-behavior-x: none;
      overflow-x: hidden;
    }

    body {
      position: relative;
      width: 100%;
      max-width: 100%;
      min-height: 100vh;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      line-height: 1.6;
      overflow-x: clip;
      overscroll-behavior: none;
      overscroll-behavior-x: none;
      touch-action: pan-y;
    }

    @supports not (overflow: clip) {
      body {
        overflow-x: hidden;
      }
    }

    body.is-slider-locked {
      overflow: hidden;
      touch-action: none;
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      color: var(--cream);
      background: var(--tomato);
    }

    .site-header {
      position: fixed;
      z-index: 40;
      top: 0;
      right: 0;
      left: 0;
      max-width: 100%;
      overflow-x: clip;
      color: var(--cream);
      background: rgba(28, 23, 17, 0.76);
      border-bottom: 1px solid rgba(255, 248, 233, 0.16);
      backdrop-filter: blur(16px);
    }

    main,
    .hero,
    .section,
    .final-cta,
    .site-footer {
      max-width: 100%;
      overflow-x: clip;
      overscroll-behavior-x: none;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      width: min(1180px, calc(100% - 40px));
      min-height: 74px;
      margin: 0 auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      color: rgba(255, 248, 233, 0.78);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .nav-links a,
    .nav-cta {
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--cream);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 15px;
      border: 1px solid rgba(255, 248, 233, 0.3);
      border-radius: var(--radius);
      color: var(--cream);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      background: rgba(255, 248, 233, 0.1);
      border-color: rgba(255, 248, 233, 0.62);
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      min-height: 88svh;
      color: var(--cream);
      background:
        linear-gradient(90deg, rgba(28, 23, 17, 0.88) 0%, rgba(28, 23, 17, 0.62) 42%, rgba(28, 23, 17, 0.2) 100%),
        linear-gradient(180deg, rgba(28, 23, 17, 0.1) 0%, rgba(28, 23, 17, 0.7) 100%),
        url("../img/Dupla.png") center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 22%;
      background: linear-gradient(180deg, rgba(247, 234, 211, 0), var(--paper));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      align-items: end;
      width: min(1180px, calc(100% - 40px));
      min-height: 88svh;
      margin: 0 auto;
      padding: 128px 0 74px;
    }

    .hero-copy {
      width: min(760px, 100%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--tomato);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 32px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
    }

    .hero .eyebrow,
    .dark .eyebrow,
    .final-cta .eyebrow {
      color: var(--butter);
    }

    h1,
    h2,
    h3 {
      letter-spacing: 0;
    }

    h1,
    h2 {
      font-family: var(--serif);
      line-height: 0.95;
    }

    h1 {
      max-width: 720px;
      margin-top: 18px;
      font-size: clamp(4.4rem, 11vw, 9rem);
      font-weight: 700;
    }

    .hero-slogan {
      display: block;
      width: fit-content;
      max-width: 100%;
      margin-top: 14px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 213, 106, 0.42);
      border-radius: var(--radius);
      color: var(--butter);
      background: rgba(28, 23, 17, 0.42);
      font-family: var(--display);
      font-size: clamp(1.05rem, 2vw, 1.55rem);
      font-weight: 900;
      letter-spacing: 0.02em;
      line-height: 1.1;
    }

    h3 {
      font-family: var(--display);
      line-height: 1.04;
    }

    .hero-lead {
      max-width: 680px;
      margin-top: 24px;
      color: rgba(255, 248, 233, 0.9);
      font-size: clamp(1rem, 1.7vw, 1.25rem);
    }

    .hero-actions,
    .section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

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

    .btn-primary {
      color: var(--cream);
      background: var(--tomato);
      border-color: var(--tomato);
    }

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

    .btn-light {
      color: var(--ink);
      background: var(--butter);
      border-color: var(--butter);
    }

    .btn-light:hover,
    .btn-light:focus-visible {
      color: var(--ink);
      background: #ffe08a;
      border-color: #ffe08a;
    }

    .btn-outline {
      color: var(--cream);
      border-color: rgba(255, 248, 233, 0.34);
      background: rgba(255, 248, 233, 0.08);
    }

    .btn-outline:hover,
    .btn-outline:focus-visible {
      background: rgba(255, 248, 233, 0.14);
      border-color: rgba(255, 248, 233, 0.66);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: min(900px, 100%);
      margin-top: 44px;
    }

    .metric {
      min-height: 108px;
      padding: 16px;
      border: 1px solid rgba(255, 248, 233, 0.18);
      border-radius: var(--radius);
      background: rgba(28, 23, 17, 0.58);
      backdrop-filter: blur(10px);
    }

    .metric strong {
      display: block;
      color: var(--cream);
      font-family: var(--display);
      font-size: clamp(1.7rem, 2.8vw, 2.55rem);
      line-height: 1;
    }

    .metric span {
      display: block;
      margin-top: 9px;
      color: rgba(255, 248, 233, 0.74);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section {
      padding: 84px 0;
    }

    .section.dark {
      color: var(--cream);
      background: var(--ink);
    }

    .section.blue {
      background: #dceef1;
    }

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

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.62fr);
      gap: 42px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-header h2 {
      margin-top: 12px;
      color: inherit;
      font-size: clamp(3.1rem, 7.4vw, 6.35rem);
      text-wrap: balance;
    }

    .section-header p {
      color: rgba(28, 23, 17, 0.74);
      font-size: 1rem;
    }

    .dark .section-header p {
      color: rgba(255, 248, 233, 0.74);
    }

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

    .step-card,
    .trust-card,
    .package-card,
    .note-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--cream);
      box-shadow: 0 16px 42px rgba(45, 26, 15, 0.08);
    }

    .step-card {
      min-height: 276px;
      padding: 24px;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: var(--cream);
      background: var(--tomato);
      font-family: var(--display);
      font-weight: 900;
    }

    .step-card h3,
    .trust-card h3,
    .package-card h3,
    .note-card h3 {
      margin-top: 18px;
      color: var(--ink);
      font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    }

    .step-card p,
    .trust-card p,
    .package-card p,
    .note-card p {
      margin-top: 14px;
      color: rgba(28, 23, 17, 0.7);
      font-size: 0.94rem;
    }

    .mascot-band {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
      gap: 18px;
      align-items: stretch;
    }

    .mascot-photo {
      min-height: 560px;
      border-radius: var(--radius);
      background: url("../img/festa.png") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .trust-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(28px, 4.5vw, 52px);
      border: 1px solid rgba(255, 248, 233, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 248, 233, 0.06);
    }

    .trust-panel h2 {
      margin-top: 12px;
      font-size: clamp(3rem, 6vw, 5.7rem);
      text-wrap: balance;
    }

    .trust-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
      list-style: none;
    }

    .trust-list li {
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      gap: 10px;
      color: rgba(255, 248, 233, 0.82);
      font-size: 0.96rem;
    }

    .trust-list i {
      margin-top: 5px;
      color: var(--butter);
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .package-card {
      position: relative;
      overflow: hidden;
      padding: clamp(24px, 4vw, 34px);
    }

    .package-card.featured {
      color: var(--cream);
      background: var(--tomato);
      border-color: transparent;
    }

    .package-card.featured h3,
    .package-card.featured p {
      color: var(--cream);
    }

    .card-kicker {
      color: var(--tomato);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .featured .card-kicker {
      color: var(--butter);
    }

    .price-line {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 10px;
      margin-top: 24px;
    }

    .price-line strong {
      font-family: var(--display);
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      line-height: 0.95;
    }

    .price-line span {
      color: rgba(28, 23, 17, 0.62);
      font-weight: 800;
    }

    .featured .price-line span {
      color: rgba(255, 248, 233, 0.8);
    }

    .package-list {
      display: grid;
      gap: 10px;
      margin-top: 22px;
      list-style: none;
    }

    .package-list li {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 9px;
      color: rgba(28, 23, 17, 0.74);
      font-size: 0.94rem;
    }

    .featured .package-list li {
      color: rgba(255, 248, 233, 0.9);
    }

    .package-list i {
      margin-top: 4px;
      color: var(--basil);
    }

    .featured .package-list i {
      color: var(--butter);
    }

    .simulator-layout {
      display: grid;
      grid-template-columns: minmax(340px, 0.86fr) minmax(360px, 0.7fr);
      gap: 18px;
      align-items: start;
    }

    .config-panel,
    .estimate-panel,
    .contact-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--cream);
      box-shadow: var(--shadow);
    }

    .panel-body {
      padding: clamp(22px, 4vw, 34px);
    }

    .panel-title {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .panel-title h3 {
      margin-top: 8px;
      color: var(--ink);
      font-size: clamp(2rem, 3.5vw, 3rem);
    }

    .panel-title p {
      max-width: 380px;
      color: rgba(28, 23, 17, 0.64);
      font-size: 0.92rem;
    }

    .mode-switch {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 24px;
    }

    .mode-switch input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .mode-switch label {
      display: grid;
      gap: 6px;
      min-height: 98px;
      padding: 16px;
      border: 1px solid rgba(28, 23, 17, 0.14);
      border-radius: var(--radius);
      background: #fffaf0;
      color: var(--ink);
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .mode-switch strong {
      font-family: var(--display);
      font-size: 1.08rem;
      line-height: 1.1;
    }

    .mode-switch span {
      color: rgba(28, 23, 17, 0.62);
      font-size: 0.82rem;
      line-height: 1.35;
    }

    .mode-switch input:checked + label {
      border-color: rgba(217, 81, 44, 0.55);
      background: rgba(217, 81, 44, 0.1);
      box-shadow: 0 0 0 4px rgba(217, 81, 44, 0.08);
    }

    .slider-wrap {
      margin-top: 18px;
      padding: 22px;
      border: 1px solid rgba(28, 23, 17, 0.12);
      border-radius: var(--radius);
      background: #fffaf0;
      overscroll-behavior: contain;
      touch-action: none;
    }

    .slider-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    label,
    .label {
      color: rgba(28, 23, 17, 0.72);
      font-size: 0.73rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .slider-top p {
      max-width: 420px;
      margin-top: 6px;
      color: rgba(28, 23, 17, 0.62);
      font-size: 0.9rem;
    }

    .slider-value {
      color: var(--tomato);
      font-family: var(--display);
      min-width: 1.6em;
      font-size: clamp(2.35rem, 4.2vw, 3.8rem);
      font-weight: 900;
      line-height: 1;
      text-align: right;
      white-space: nowrap;
    }

    input[type="range"] {
      --range-progress: 0%;
      appearance: none;
      -webkit-appearance: none;
      width: 100%;
      height: 52px;
      margin-top: 16px;
      padding: 0;
      border: 0;
      accent-color: var(--tomato);
      background: transparent;
      cursor: ew-resize;
      touch-action: none;
      -webkit-tap-highlight-color: transparent;
    }

    input[type="range"]::-webkit-slider-runnable-track {
      height: 10px;
      border: 1px solid rgba(28, 23, 17, 0.18);
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        var(--tomato) 0%,
        var(--tomato) var(--range-progress),
        rgba(28, 23, 17, 0.16) var(--range-progress),
        rgba(28, 23, 17, 0.16) 100%
      );
    }

    input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      -webkit-appearance: none;
      width: 30px;
      height: 30px;
      margin-top: -11px;
      border: 5px solid var(--cream);
      border-radius: 50%;
      background: var(--tomato);
      box-shadow: 0 8px 18px rgba(217, 81, 44, 0.28);
    }

    input[type="range"]::-moz-range-track {
      height: 10px;
      border: 1px solid rgba(28, 23, 17, 0.18);
      border-radius: 999px;
      background: rgba(28, 23, 17, 0.16);
    }

    input[type="range"]::-moz-range-progress {
      height: 10px;
      border-radius: 999px;
      background: var(--tomato);
    }

    input[type="range"]::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border: 5px solid var(--cream);
      border-radius: 50%;
      background: var(--tomato);
      box-shadow: 0 8px 18px rgba(217, 81, 44, 0.28);
    }

    input[type="range"]:focus-visible {
      outline: 3px solid rgba(217, 81, 44, 0.28);
      outline-offset: 2px;
    }

    html.is-slider-locked {
      overscroll-behavior: none;
    }

    html.is-slider-locked body {
      overscroll-behavior: none;
    }

    .range-scale {
      position: relative;
      height: 20px;
      margin-top: 8px;
      color: rgba(28, 23, 17, 0.5);
      font-size: 0.76rem;
      font-weight: 800;
    }

    .range-scale span {
      position: absolute;
      top: 0;
      left: var(--scale-pos);
      transform: translateX(-50%);
    }

    .range-scale span:first-child {
      left: 0;
      transform: translateX(0);
    }

    .range-scale span:last-child {
      left: 100%;
      transform: translateX(-100%);
    }

    .range-scale .kids-included {
      --scale-pos: 23.08%;
    }

    .range-scale .adults-reference {
      --scale-pos: 40%;
    }

    .adults-block {
      display: none;
    }

    .adults-block.is-visible {
      display: block;
    }

    .estimate-panel {
      position: sticky;
      top: 96px;
      overflow: hidden;
    }

    .estimate-header {
      padding: 28px;
      color: var(--cream);
      background: var(--basil-dark);
    }

    .estimate-header span {
      color: var(--butter);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .estimate-header h3 {
      margin-top: 10px;
      color: var(--cream);
      font-family: var(--display);
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      line-height: 0.95;
    }

    .estimate-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      padding: 14px;
    }

    .estimate-card {
      min-height: 132px;
      padding: 18px;
      border: 1px solid rgba(28, 23, 17, 0.1);
      border-radius: var(--radius);
      background: #fffdf7;
    }

    .estimate-card span {
      display: block;
      color: rgba(28, 23, 17, 0.54);
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .estimate-card strong {
      display: block;
      margin-top: 12px;
      color: var(--ink);
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 0.98;
    }

    .estimate-card small {
      display: block;
      margin-top: 9px;
      color: rgba(28, 23, 17, 0.58);
      font-size: 0.77rem;
      line-height: 1.38;
    }

    .breakdown {
      padding: 0 28px 28px;
    }

    .breakdown p {
      color: rgba(28, 23, 17, 0.72);
      font-size: 0.92rem;
    }

    .breakdown .mini-note {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      color: rgba(28, 23, 17, 0.62);
      font-size: 0.84rem;
    }

    .contact-panel {
      margin-top: 18px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

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

    input,
    select,
    textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid rgba(28, 23, 17, 0.16);
      border-radius: var(--radius);
      color: var(--ink);
      background: #fffdf7;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    textarea {
      min-height: 104px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(217, 81, 44, 0.68);
      box-shadow: 0 0 0 4px rgba(217, 81, 44, 0.1);
      background: #fff;
    }

    .submit-btn {
      width: 100%;
      min-height: 54px;
      color: var(--cream);
      background: var(--tomato);
      border-color: var(--tomato);
    }

    .submit-btn:hover,
    .submit-btn:focus-visible {
      background: var(--tomato-dark);
      border-color: var(--tomato-dark);
    }

    .success-box {
      display: none;
      margin-top: 18px;
      padding: 18px;
      border: 1px solid rgba(102, 121, 76, 0.28);
      border-radius: var(--radius);
      color: var(--basil-dark);
      background: rgba(102, 121, 76, 0.1);
    }

    .truth-grid {
      display: grid;
      grid-template-columns: 0.8fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .truth-image {
      min-height: 500px;
      border-radius: var(--radius);
      background: url("../img/Malu.png") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .truth-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .trust-card {
      min-height: 226px;
      padding: 22px;
    }

    .trust-card i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: var(--cream);
      background: var(--sky-dark);
    }

    .policy-panel {
      display: grid;
      grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
      gap: 0;
      margin-top: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffaf0;
      box-shadow: 0 16px 42px rgba(45, 26, 15, 0.08);
      overflow: hidden;
    }

    .policy-visual {
      display: grid;
      place-items: center;
      min-height: 100%;
      padding: clamp(12px, 2vw, 18px);
      background: #fff4e3;
    }

    .policy-visual img {
      width: 100%;
      height: 100%;
      max-height: 980px;
      object-fit: contain;
      object-position: center;
    }

    .policy-content {
      padding: clamp(24px, 4vw, 36px);
    }

    .policy-panel h3 {
      color: var(--ink);
      font-size: clamp(2rem, 4vw, 3.15rem);
    }

    .policy-content > p {
      max-width: 850px;
      margin-top: 12px;
      color: rgba(28, 23, 17, 0.72);
      font-size: 0.98rem;
    }

    .policy-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .policy-card {
      padding: 18px;
      border: 1px solid rgba(28, 23, 17, 0.1);
      border-radius: var(--radius);
      background: #fffdf7;
    }

    .policy-card strong {
      display: block;
      color: var(--tomato-dark);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .policy-card p {
      margin-top: 10px;
      color: rgba(28, 23, 17, 0.7);
      font-size: 0.91rem;
    }

    .policy-fineprint {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      color: rgba(28, 23, 17, 0.62);
      font-size: 0.86rem;
    }

    .check-field {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      padding: 14px;
      border: 1px solid rgba(28, 23, 17, 0.12);
      border-radius: var(--radius);
      background: #fffaf0;
    }

    .check-field input {
      width: 18px;
      min-height: 18px;
      margin-top: 3px;
      accent-color: var(--tomato);
    }

    .check-field label {
      color: rgba(28, 23, 17, 0.72);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 1.45;
      text-transform: none;
    }

    .check-field a {
      color: var(--tomato-dark);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .final-cta {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      color: var(--cream);
      background:
        linear-gradient(90deg, rgba(28, 23, 17, 0.95) 0%, rgba(28, 23, 17, 0.82) 42%, rgba(28, 23, 17, 0.22) 100%),
        url("../img/felizes.png") right center / contain no-repeat,
        var(--cream);
    }

    .final-cta .container {
      min-height: 560px;
      display: grid;
      align-items: center;
    }

    .final-copy {
      width: min(620px, 100%);
    }

    .final-copy h2 {
      margin-top: 12px;
      font-size: clamp(3.4rem, 8vw, 7rem);
    }

    .final-copy p {
      margin-top: 20px;
      color: rgba(255, 248, 233, 0.82);
      font-size: 1.02rem;
    }

    .site-footer {
      color: rgba(255, 248, 233, 0.72);
      background: #120f0b;
      border-top: 1px solid rgba(255, 248, 233, 0.12);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 34px 0;
    }

    .footer-brand strong {
      display: block;
      color: var(--cream);
      font-size: 0.84rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-brand span {
      display: block;
      margin-top: 6px;
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 12px;
      border: 1px solid rgba(255, 248, 233, 0.18);
      border-radius: var(--radius);
      color: var(--cream);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .legal-page {
      background: var(--cream);
    }

    .legal-main {
      padding: 132px 0 82px;
    }

    .legal-hero {
      display: grid;
      gap: 18px;
      width: min(980px, calc(100% - 40px));
      margin: 0 auto 46px;
    }

    .legal-hero h1 {
      color: var(--ink);
      font-size: clamp(3.8rem, 8vw, 7rem);
      max-width: 780px;
    }

    .legal-hero p {
      max-width: 760px;
      color: rgba(28, 23, 17, 0.72);
      font-size: 1.02rem;
    }

    .legal-updated {
      color: var(--tomato-dark);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .legal-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      gap: 30px;
      align-items: start;
      width: min(980px, calc(100% - 40px));
      margin: 0 auto;
    }

    .legal-nav {
      position: sticky;
      top: 104px;
      display: grid;
      gap: 8px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffaf0;
    }

    .legal-nav strong {
      color: var(--tomato-dark);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .legal-nav a {
      color: rgba(28, 23, 17, 0.72);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .legal-nav a:hover,
    .legal-nav a:focus-visible {
      color: var(--tomato-dark);
    }

    .legal-document {
      display: grid;
      gap: 28px;
    }

    .legal-section {
      padding-bottom: 28px;
      border-bottom: 1px solid var(--line);
      scroll-margin-top: 112px;
    }

    .legal-section:last-child {
      border-bottom: 0;
    }

    .legal-section h2 {
      color: var(--ink);
      font-family: var(--display);
      font-size: clamp(1.7rem, 3vw, 2.35rem);
      letter-spacing: 0;
    }

    .legal-section p,
    .legal-section li {
      color: rgba(28, 23, 17, 0.74);
      font-size: 0.98rem;
    }

    .legal-section p {
      margin-top: 12px;
    }

    .legal-section ul {
      display: grid;
      gap: 10px;
      margin-top: 14px;
      padding-left: 22px;
    }

    .legal-section a {
      color: var(--tomato-dark);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-banner {
      position: fixed;
      z-index: 80;
      right: 18px;
      bottom: 18px;
      left: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      width: min(940px, calc(100% - 36px));
      margin: 0 auto;
      padding: 18px;
      border: 1px solid rgba(255, 248, 233, 0.22);
      border-radius: var(--radius);
      color: var(--cream);
      background: rgba(28, 23, 17, 0.94);
      box-shadow: 0 22px 70px rgba(18, 15, 11, 0.34);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.22s ease, transform 0.22s ease;
      backdrop-filter: blur(16px);
    }

    .cookie-banner[hidden] {
      display: none;
    }

    .cookie-banner.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .cookie-banner strong {
      display: block;
      color: var(--butter);
      font-family: var(--display);
      font-size: 1.08rem;
      line-height: 1.1;
    }

    .cookie-banner p {
      max-width: 660px;
      margin-top: 6px;
      color: rgba(255, 248, 233, 0.82);
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .cookie-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .cookie-banner .btn {
      min-height: 42px;
      padding: 0 14px;
      font-size: 0.72rem;
      white-space: nowrap;
    }

    .cookie-banner .btn-outline {
      color: var(--cream);
      border-color: rgba(255, 248, 233, 0.28);
      background: transparent;
    }

    @media (max-width: 980px) {
      .nav,
      .hero-inner,
      .container,
      .footer-inner {
        width: min(100% - 28px, 1180px);
      }

      .nav-links {
        display: none;
      }

      .hero {
        min-height: auto;
        background-position: 56% center;
      }

      .hero-inner {
        min-height: 760px;
        padding-top: 118px;
      }

      .hero-metrics,
      .steps-grid,
      .truth-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-header,
      .mascot-band,
      .simulator-layout,
      .policy-panel,
      .truth-grid {
        grid-template-columns: 1fr;
      }

      .mascot-photo,
      .truth-image {
        min-height: 430px;
      }

      .policy-visual {
        min-height: 0;
      }

      .policy-visual img {
        height: auto;
        max-height: none;
      }

      .estimate-panel {
        position: static;
      }

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

      .legal-nav {
        position: static;
      }

      .cookie-banner {
        grid-template-columns: 1fr;
      }

      .cookie-actions {
        justify-content: stretch;
      }

      .cookie-banner .btn {
        flex: 1 1 150px;
      }
    }

    @media (max-width: 680px) {
      .site-header {
        position: absolute;
      }

      .nav {
        min-height: 68px;
      }

      .brand span {
        max-width: 144px;
        white-space: normal;
        line-height: 1.1;
      }

      .nav-cta {
        min-height: 38px;
        padding: 0 11px;
        font-size: 0.68rem;
      }

      .hero {
        background-position: 58% center;
      }

      .hero-inner {
        min-height: 780px;
        padding: 108px 0 54px;
      }

      h1 {
        font-size: clamp(4.1rem, 18vw, 5.8rem);
      }

      .hero-lead {
        max-width: 94%;
      }

      .hero-actions,
      .section-actions {
        display: grid;
      }

      .hero-metrics,
      .steps-grid,
      .package-grid,
      .mode-switch,
      .estimate-grid,
      .form-grid,
      .policy-grid,
      .truth-cards,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 64px 0;
      }

      .section-header {
        gap: 18px;
      }

      .section-header h2,
      .trust-panel h2,
      .final-copy h2 {
        font-size: clamp(3.2rem, 14vw, 4.75rem);
      }

      .panel-title {
        display: grid;
      }

      .slider-top {
        display: grid;
      }

      .panel-body,
      .trust-panel,
      .policy-content {
        padding: 22px;
      }

      .estimate-header,
      .breakdown {
        padding-right: 22px;
        padding-left: 22px;
      }

      .mascot-photo,
      .truth-image {
        min-height: 360px;
      }

      .final-cta,
      .final-cta .container {
        min-height: 620px;
      }

      .legal-main {
        padding-top: 112px;
      }

      .legal-hero,
      .legal-layout {
        width: min(100% - 28px, 980px);
      }

      .legal-hero h1 {
        font-size: clamp(3.2rem, 14vw, 4.6rem);
      }

      .cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 14px;
      }
    }

