:root {
      /* CONFIG: Paleta de cores (altere aqui para mudar o tema do site) */
      --ink: #0e0e0f;
      --ink-2: #1a1a1c;
      --ink-3: #242428;
      --ink-4: #2e2e33;
      --gold: #c8a96e;
      --gold-light: #e8cc97;
      --gold-dark: #9e7f46;
      --cream: #f5f0e8;
      --cream-2: #ede6d6;
      --cream-3: #ddd4bf;
      --ash: #8a8478;
      --ash-light: #b5af9f;
      --white: #faf8f4;
      --r: 16px;
      --r-sm: 10px;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.12);
      --container: 1140px;
      /* CONFIG: Imagem padrão de fundo das SEÇÕES (troque a URL e ela muda em todas as sections) */
      --section-bg-image: url("https://transportefunerario.com/wp-content/uploads/2025/07/fachada.png");
    }

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

    html {
      scroll-behavior: smooth;
    }

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

    h1,
    h2,
    h3,
    h4,
    .serif {
      font-family: "Cormorant Garamond", Georgia, serif;
      letter-spacing: 0.01em;
      line-height: 1.15;
    }

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

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

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

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ─── DIVIDER ─── */
    .ornament {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .ornament span {
      height: 1px;
      flex: 1;
      background: linear-gradient(90deg, transparent, var(--gold-dark));
    }

    .ornament span:last-child {
      background: linear-gradient(90deg, var(--gold-dark), transparent);
    }

    .ornament svg {
      flex: none;
      color: var(--gold);
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 24px;
      border-radius: var(--r-sm);
      font-family: "Jost", sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn svg {
      width: 17px;
      height: 17px;
      flex: none;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--ink);
      box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(200, 169, 110, 0.45);
    }

    .btn-ghost {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(200, 169, 110, 0.4);
    }

    .btn-ghost:hover {
      background: rgba(200, 169, 110, 0.08);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .btn-cream {
      background: var(--cream);
      color: var(--ink);
      box-shadow: 0 4px 20px rgba(245, 240, 232, 0.2);
    }

    .btn-cream:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(245, 240, 232, 0.3);
      background: var(--white);
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(14, 14, 15, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 16px 0;
    }

    .brand img {
      height: 45px;
      filter: brightness(1.1);
    }

    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ash-light);
      padding: 8px 12px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }

    .nav-links a:hover {
      color: var(--cream);
      background: rgba(200, 169, 110, 0.08);
    }

    /* ─── DROPDOWN MENU ─── */
    .nav-dropdown {
      position: relative;
      display: inline-block;
    }

    .nav-dropdown-trigger {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ash-light);
      padding: 8px 12px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      cursor: pointer;
      user-select: none;
    }

    .nav-dropdown:hover .nav-dropdown-trigger {
      color: var(--cream);
      background: rgba(200, 169, 110, 0.08);
    }

    .nav-dropdown-trigger svg {
      width: 10px;
      height: 10px;
      color: var(--gold);
      transition: transform 0.25s ease;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(14, 14, 15, 0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(200, 169, 110, 0.2);
      border-radius: var(--r-sm);
      min-width: 190px;
      padding: 8px 0;
      box-shadow: var(--shadow);
      z-index: 100;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      display: block;
    }

    .nav-dropdown-menu a {
      display: block !important;
      padding: 10px 18px !important;
      font-size: 13px !important;
      color: var(--ash-light) !important;
      text-transform: uppercase !important;
      font-weight: 500 !important;
      border-radius: 0 !important;
      text-align: left !important;
      letter-spacing: 0.04em !important;
      background: transparent !important;
    }

    .nav-dropdown-menu a:hover {
      color: var(--cream) !important;
      background: rgba(200, 169, 110, 0.09) !important;
    }

    /* Mobile Submenu Styling */
    .mobile-group {
      border-left: 1px solid rgba(200, 169, 110, 0.15);
      margin: 4px 0 4px 12px;
      padding-left: 10px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    
    .mobile-group-title {
      display: block;
      font-size: 11px;
      font-weight: 600;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 6px 12px;
    }

    .nav-ctas {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .nav-ctas .btn {
      padding: 10px 18px;
      font-size: 12px;
    }

    .nav-toggle {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .nav-burger {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(200, 169, 110, 0.25);
      background: rgba(200, 169, 110, 0.05);
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .nav-burger span {
      width: 18px;
      height: 1.5px;
      background: var(--cream);
      border-radius: 99px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .nav-panel {
      display: none;
    }

    .nav-toggle:checked+.nav-burger span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle:checked+.nav-burger span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle:checked+.nav-burger span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .nav-toggle:checked~.nav-panel {
      display: block;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 80px 0 60px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      /* CONFIG: Intensidade do escurecimento da imagem da HERO */
      filter: saturate(0.6) brightness(0.35);
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          rgba(14, 14, 15, 0.92) 0%,
          rgba(14, 14, 15, 0.75) 40%,
          rgba(14, 14, 15, 0.55) 70%,
          rgba(14, 14, 15, 0.8) 100%);
    }

    /* grain overlay */
    .hero-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.035;
      z-index: 1;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      border-radius: 99px;
      border: 1px solid rgba(200, 169, 110, 0.35);
      background: rgba(200, 169, 110, 0.08);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 28px;
    }

    .hero-badge span.dot {
      width: 6px;
      height: 6px;
      border-radius: 99px;
      background: var(--gold);
      animation: pulse-dot 2s ease infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(0.8);
      }
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-size: clamp(48px, 6vw, 82px);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 20px;
      text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.7;
      color: var(--ash-light);
      max-width: 50ch;
      margin-bottom: 36px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: var(--r-sm);
      border: 1px solid rgba(200, 169, 110, 0.2);
      background: rgba(200, 169, 110, 0.06);
      font-size: 12px;
      color: var(--ash-light);
      letter-spacing: 0.04em;
    }

    .hero-pill svg {
      color: var(--gold);
      width: 14px;
      height: 14px;
    }

    /* Hero aside card */
    .hero-card {
      background: rgba(22, 22, 25, 0.9);
      border: 1px solid rgba(200, 169, 110, 0.2);
      border-radius: var(--r);
      padding: 32px 28px;
      backdrop-filter: blur(12px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 169, 110, 0.05);
    }

    .hero-card h3 {
      font-size: 22px;
      color: var(--cream);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .hero-card .sub {
      font-size: 13px;
      color: var(--ash);
      margin-bottom: 24px;
      letter-spacing: 0.04em;
    }

    .service-list {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      border-radius: var(--r-sm);
      background: rgba(200, 169, 110, 0.05);
      border: 1px solid rgba(200, 169, 110, 0.12);
      transition: border-color 0.25s, background 0.25s;
    }

    .service-item:hover {
      background: rgba(200, 169, 110, 0.09);
      border-color: rgba(200, 169, 110, 0.25);
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.2), rgba(200, 169, 110, 0.06));
      border: 1px solid rgba(200, 169, 110, 0.2);
      display: grid;
      place-items: center;
      flex: none;
      color: var(--gold);
    }

    .service-icon svg {
      width: 19px;
      height: 19px;
    }

    .service-label {
      font-weight: 600;
      font-size: 14px;
      color: var(--cream);
    }

    .service-desc {
      font-size: 13px;
      color: var(--ash);
      line-height: 1.55;
      margin-top: 2px;
    }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      border-top: 1px solid rgba(200, 169, 110, 0.12);
      border-bottom: 1px solid rgba(200, 169, 110, 0.12);
      background: rgba(200, 169, 110, 0.04);
      padding: 20px 0;
    }

    .trust-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 28px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ash-light);
      border-right: 1px solid rgba(200, 169, 110, 0.15);
    }

    .trust-item:last-child {
      border-right: none;
    }

    .trust-item svg {
      color: var(--gold);
      width: 18px;
      height: 18px;
      flex: none;
    }

    /* ─── SECTION WRAPPER ─── */
    section {
      position: relative;
      overflow: hidden;
      padding: 90px 0;
    }

    section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: var(--section-bg-image);
      background-size: cover;
      background-position: center;
      /* CONFIG: Intensidade do escurecimento da imagem das SEÇÕES */
      filter: saturate(0.65) brightness(0.32);
      transform: scale(1.03);
      z-index: 0;
    }

    section::after {
      content: "";
      position: absolute;
      inset: 0;
      /* CONFIG: Overlay (degradê) por cima da imagem das SEÇÕES */
      background: linear-gradient(135deg,
          rgba(14, 14, 15, 0.92) 0%,
          rgba(14, 14, 15, 0.72) 40%,
          rgba(14, 14, 15, 0.55) 70%,
          rgba(14, 14, 15, 0.86) 100%);
      z-index: 1;
    }

    section>.container {
      position: relative;
      z-index: 2;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title-text {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 14px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--ash-light);
      line-height: 1.7;
      max-width: 52ch;
      font-weight: 300;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 52px;
    }

    /* ─── ABOUT ─── */
    #sobre {
      background: var(--ink-2);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-media {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
    }

    .about-media img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      filter: saturate(0.8) brightness(0.9);
      transition: transform 0.6s ease, filter 0.6s ease;
    }

    .about-media:hover img {
      transform: scale(1.03);
      filter: saturate(0.9) brightness(1);
    }

    .about-media::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(200, 169, 110, 0.2);
      border-radius: var(--r);
      pointer-events: none;
    }

    .about-media-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(14, 14, 15, 0.88);
      border: 1px solid rgba(200, 169, 110, 0.3);
      border-radius: var(--r-sm);
      padding: 14px 18px;
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-media-badge .num {
      font-family: "Cormorant Garamond", serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .about-media-badge .label {
      font-size: 12px;
      color: var(--ash-light);
      line-height: 1.4;
    }

    .about-checks {
      list-style: none;
      display: grid;
      gap: 14px;
      margin: 28px 0 36px;
    }

    .about-check {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      color: var(--ash-light);
      line-height: 1.6;
    }

    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 99px;
      background: rgba(200, 169, 110, 0.15);
      border: 1px solid rgba(200, 169, 110, 0.3);
      display: grid;
      place-items: center;
      flex: none;
      color: var(--gold);
      margin-top: 2px;
    }

    .check-icon svg {
      width: 12px;
      height: 12px;
    }

    /* ─── STEPS ─── */
    #passo-a-passo {
      background: var(--ink);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .step-card {
      background: var(--ink-2);
      border: 1px solid rgba(200, 169, 110, 0.12);
      border-radius: var(--r);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
    }

    .step-card:hover {
      border-color: rgba(200, 169, 110, 0.3);
      transform: translateY(-4px);
    }

    .step-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .step-card:hover::before {
      opacity: 1;
    }

    .step-num {
      font-family: "Cormorant Garamond", serif;
      font-size: 64px;
      font-weight: 700;
      color: rgba(200, 169, 110, 0.1);
      line-height: 1;
      position: absolute;
      top: 16px;
      right: 20px;
      pointer-events: none;
      user-select: none;
    }

    .step-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.18), rgba(200, 169, 110, 0.06));
      border: 1px solid rgba(200, 169, 110, 0.25);
      display: grid;
      place-items: center;
      color: var(--gold);
      margin-bottom: 22px;
    }

    .step-icon svg {
      width: 24px;
      height: 24px;
    }

    .step-card h3 {
      font-size: 22px;
      color: var(--cream);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .step-card p {
      font-size: 14px;
      color: var(--ash);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── HOW IT WORKS ─── */
    #como-funciona {
      background: var(--ink-2);
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .how-steps {
      display: grid;
      gap: 0;
    }

    .how-step {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 20px;
      position: relative;
      padding-bottom: 36px;
    }

    .how-step:last-child {
      padding-bottom: 0;
    }

    .how-step-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .how-num {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--gold-dark), rgba(200, 169, 110, 0.5));
      display: grid;
      place-items: center;
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      flex: none;
      box-shadow: 0 8px 24px rgba(200, 169, 110, 0.25);
    }

    .how-line {
      width: 1px;
      flex: 1;
      background: linear-gradient(180deg, rgba(200, 169, 110, 0.3), transparent);
      margin-top: 8px;
    }

    .how-step:last-child .how-line {
      display: none;
    }

    .how-step-body {
      padding-top: 8px;
    }

    .how-step-body h3 {
      font-size: 21px;
      color: var(--cream);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .how-step-body p {
      font-size: 14px;
      color: var(--ash);
      line-height: 1.7;
      font-weight: 300;
    }

    .how-media {
      position: sticky;
      top: 120px;
    }

    .how-img {
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid rgba(200, 169, 110, 0.15);
    }

    .how-img img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      filter: saturate(0.7) brightness(0.85);
    }

    .how-note {
      margin-top: 20px;
      padding: 20px;
      border-radius: var(--r-sm);
      background: rgba(200, 169, 110, 0.06);
      border: 1px solid rgba(200, 169, 110, 0.18);
      font-size: 14px;
      color: var(--ash-light);
      line-height: 1.65;
    }

    .how-note strong {
      color: var(--gold-light);
      font-weight: 600;
    }

    /* ─── NIGHT SECTION ─── */
    #seguranca {
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    #seguranca::before {
      content: "";
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 99px;
      background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%);
      top: -200px;
      right: -200px;
      pointer-events: none;
    }

    .night-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr;
      gap: 28px;
      align-items: start;
    }

    .night-card {
      background: var(--ink-2);
      border: 1px solid rgba(200, 169, 110, 0.15);
      border-radius: var(--r);
      padding: 36px 32px;
    }

    .night-card h3 {
      font-size: 26px;
      color: var(--cream);
      margin-bottom: 28px;
      font-weight: 600;
    }

    .night-list {
      list-style: none;
      display: grid;
      gap: 16px;
    }

    .night-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 16px;
      align-items: flex-start;
      padding: 18px;
      border-radius: var(--r-sm);
      background: rgba(200, 169, 110, 0.04);
      border: 1px solid rgba(200, 169, 110, 0.1);
      transition: border-color 0.2s, background 0.2s;
    }

    .night-item:hover {
      background: rgba(200, 169, 110, 0.08);
      border-color: rgba(200, 169, 110, 0.2);
    }

    .night-badge {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.2), rgba(200, 169, 110, 0.05));
      border: 1px solid rgba(200, 169, 110, 0.22);
      display: grid;
      place-items: center;
      font-family: "Cormorant Garamond", serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold);
    }

    .night-item-title {
      font-weight: 600;
      font-size: 15px;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .night-item-desc {
      font-size: 13px;
      color: var(--ash);
      line-height: 1.6;
      font-weight: 300;
    }

    .night-cta {
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.12), rgba(200, 169, 110, 0.04));
      border: 1px solid rgba(200, 169, 110, 0.25);
      border-radius: var(--r);
      padding: 36px 28px;
    }

    .night-cta h3 {
      font-size: 26px;
      color: var(--cream);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .night-cta p {
      font-size: 14px;
      color: var(--ash);
      line-height: 1.7;
      margin-bottom: 24px;
      font-weight: 300;
    }

    .night-cta-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .night-cta-btns .btn {
      width: 100%;
      justify-content: center;
    }

    /* ─── SIMULAÇÃO ─── */
    #simulacao {
      background: var(--ink-2);
    }

    .sim-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .sim-media {
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid rgba(200, 169, 110, 0.15);
      min-height: 360px;
      position: relative;
    }

    .sim-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.6) brightness(0.5);
    }

    .sim-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 32px;
      background: linear-gradient(180deg, transparent 30%, rgba(14, 14, 15, 0.9) 100%);
    }

    .sim-overlay-content {
      text-align: center;
      width: 100%;
    }

    .sim-overlay h3 {
      font-size: 26px;
      color: var(--cream);
      margin-bottom: 8px;
    }

    .sim-overlay p {
      font-size: 14px;
      color: var(--ash-light);
      margin-bottom: 20px;
    }

    .sim-cards {
      display: grid;
      gap: 16px;
    }

    .sim-card {
      background: var(--ink);
      border: 1px solid rgba(200, 169, 110, 0.15);
      border-radius: var(--r);
      padding: 24px;
      transition: border-color 0.25s;
    }

    .sim-card:hover {
      border-color: rgba(200, 169, 110, 0.3);
    }

    .sim-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .sim-card-label {
      font-weight: 700;
      font-size: 16px;
      color: var(--cream);
    }

    .sim-card-sub {
      font-size: 12px;
      color: var(--ash);
      margin-top: 3px;
    }

    .sim-card-price {
      font-family: "Cormorant Garamond", serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--gold);
      white-space: nowrap;
    }

    .sim-card p {
      font-size: 13px;
      color: var(--ash);
      line-height: 1.65;
      font-weight: 300;
    }

    .sim-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    /* ─── DIFERENCIAIS ─── */
    #diferenciais {
      background: var(--ink);
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .diff-card {
      background: var(--ink-2);
      border: 1px solid rgba(200, 169, 110, 0.1);
      border-radius: var(--r);
      padding: 36px 28px;
      text-align: center;
      transition: border-color 0.25s, transform 0.25s;
    }

    .diff-card:hover {
      border-color: rgba(200, 169, 110, 0.3);
      transform: translateY(-4px);
    }

    .diff-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.16), rgba(200, 169, 110, 0.04));
      border: 1px solid rgba(200, 169, 110, 0.22);
      display: grid;
      place-items: center;
      color: var(--gold);
      margin: 0 auto 24px;
    }

    .diff-icon svg {
      width: 28px;
      height: 28px;
    }

    .diff-card h3 {
      font-size: 24px;
      color: var(--cream);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .diff-card p {
      font-size: 14px;
      color: var(--ash);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── FAQ ─── */
    #faq {
      background: var(--ink-2);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .faq-intro {
      padding-right: 20px;
    }

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

    details {
      background: var(--ink);
      border: 1px solid rgba(200, 169, 110, 0.12);
      border-radius: var(--r-sm);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    details[open] {
      border-color: rgba(200, 169, 110, 0.3);
    }

    summary {
      cursor: pointer;
      list-style: none;
      padding: 20px 22px;
      font-weight: 600;
      font-size: 15px;
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      user-select: none;
      transition: color 0.2s;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary:hover {
      color: var(--gold-light);
    }

    summary::after {
      content: "";
      width: 18px;
      height: 18px;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23c8a96e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      flex: none;
      transition: transform 0.25s;
    }

    details[open] summary::after {
      transform: rotate(180deg);
    }

    details p {
      padding: 0 22px 20px;
      font-size: 14px;
      color: var(--ash);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── CONTATO ─── */
    #contato {
      background: var(--ink);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info {
      padding-top: 8px;
    }

    .contact-methods {
      display: grid;
      gap: 16px;
      margin-top: 32px;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px;
      border-radius: var(--r-sm);
      background: var(--ink-2);
      border: 1px solid rgba(200, 169, 110, 0.12);
      font-size: 14px;
      color: var(--ash-light);
      transition: border-color 0.2s;
    }

    .contact-method:hover {
      border-color: rgba(200, 169, 110, 0.3);
    }

    .contact-method-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(200, 169, 110, 0.1);
      border: 1px solid rgba(200, 169, 110, 0.2);
      display: grid;
      place-items: center;
      color: var(--gold);
      flex: none;
    }

    .contact-method-icon svg {
      width: 18px;
      height: 18px;
    }

    .form-card {
      background: var(--ink-2);
      border: 1px solid rgba(200, 169, 110, 0.15);
      border-radius: var(--r);
      padding: 36px 32px;
    }

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

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

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

    label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    input,
    textarea {
      padding: 14px 16px;
      border-radius: var(--r-sm);
      border: 1px solid rgba(200, 169, 110, 0.15);
      background: rgba(14, 14, 15, 0.6);
      color: var(--cream);
      font-family: "Jost", sans-serif;
      font-size: 14px;
      font-weight: 400;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--ash);
    }

    input:focus,
    textarea:focus {
      border-color: rgba(200, 169, 110, 0.5);
      box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
    }

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

    .form-footer {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .form-note {
      margin-top: 14px;
      font-size: 12px;
      color: var(--ash);
      line-height: 1.5;
    }

    /* ─── DESTAQUE FINAL ─── */
    #destaques {
      background: var(--ink-2);
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: stretch;
    }

    .highlight-hero {
      background: linear-gradient(135deg, #0e0e0f 0%, #1a1510 60%, #0e0e0f 100%);
      border: 1px solid rgba(200, 169, 110, 0.25);
      border-radius: var(--r);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
    }

    .highlight-hero::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 350px;
      height: 350px;
      border-radius: 99px;
      background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .highlight-hero>* {
      position: relative;
      z-index: 1;
    }

    .highlight-hero h2 {
      font-size: clamp(30px, 3.5vw, 44px);
      color: var(--cream);
      margin: 16px 0 16px;
    }

    .highlight-hero p {
      font-size: 15px;
      color: var(--ash-light);
      line-height: 1.7;
      margin-bottom: 32px;
      font-weight: 300;
    }

    .highlight-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .highlight-cards {
      display: grid;
      gap: 16px;
    }

    .highlight-card {
      background: var(--ink);
      border: 1px solid rgba(200, 169, 110, 0.12);
      border-radius: var(--r);
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: border-color 0.25s;
    }

    .highlight-card:hover {
      border-color: rgba(200, 169, 110, 0.28);
    }

    .highlight-card-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      flex: none;
      color: var(--ink);
      font-family: "Cormorant Garamond", serif;
      font-size: 14px;
      font-weight: 700;
    }

    .highlight-card-icon.gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    }

    .highlight-card-icon.blue {
      background: linear-gradient(135deg, #3b5bdb, #1c3faa);
    }

    .highlight-card-icon.teal {
      background: linear-gradient(135deg, #2e9e72, #1e6a4a);
      color: white;
    }

    .highlight-card h4 {
      font-size: 16px;
      color: var(--cream);
      margin-bottom: 6px;
      font-weight: 600;
      font-family: "Jost", sans-serif;
    }

    .highlight-card p {
      font-size: 13px;
      color: var(--ash);
      line-height: 1.6;
      font-weight: 300;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #080809;
      border-top: 1px solid rgba(200, 169, 110, 0.12);
      padding: 60px 0 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    }

    .footer-brand img {
      height: 48px;
      margin-bottom: 16px;
      filter: brightness(1.1);
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--ash);
      line-height: 1.7;
      font-weight: 300;
      max-width: 30ch;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(200, 169, 110, 0.2);
      background: rgba(200, 169, 110, 0.06);
      display: grid;
      place-items: center;
      color: var(--ash);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .footer-social a:hover {
      color: var(--gold);
      border-color: rgba(200, 169, 110, 0.4);
      background: rgba(200, 169, 110, 0.1);
    }

    .footer-social a svg {
      width: 16px;
      height: 16px;
    }

    .footer-col h4 {
      font-family: "Jost", sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: var(--ash);
      padding: 5px 0;
      transition: color 0.2s;
      font-weight: 300;
    }

    .footer-col a:hover {
      color: var(--cream);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 24px;
      font-size: 13px;
      color: var(--ash);
    }

    .footer-bottom a {
      color: var(--ash);
      transition: color 0.2s;
    }

    .footer-bottom a:hover {
      color: var(--gold-light);
    }

    /* ─── MODAL ─── */
    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 100;
    }

    .modal[aria-hidden="false"] {
      display: flex;
    }

    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 9, 0.85);
      backdrop-filter: blur(6px);
    }

    .modal-panel {
      position: relative;
      width: min(680px, 100%);
      background: var(--ink-2);
      border: 1px solid rgba(200, 169, 110, 0.25);
      border-radius: var(--r);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
      overflow: hidden;
    }

    .modal-head {
      padding: 24px 28px;
      border-bottom: 1px solid rgba(200, 169, 110, 0.12);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .modal-head h3 {
      font-size: 24px;
      color: var(--cream);
      font-weight: 600;
    }

    .modal-head p {
      font-size: 13px;
      color: var(--ash);
      margin-top: 4px;
    }

    .modal-close {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid rgba(200, 169, 110, 0.2);
      background: transparent;
      cursor: pointer;
      display: grid;
      place-items: center;
      color: var(--ash);
      transition: color 0.2s, border-color 0.2s;
      flex: none;
    }

    .modal-close:hover {
      color: var(--cream);
      border-color: rgba(200, 169, 110, 0.4);
    }

    .modal-close svg {
      width: 16px;
      height: 16px;
    }

    .modal-body {
      padding: 28px;
      display: grid;
      gap: 20px;
    }

    .modal-radios {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .radio-card {
      border-radius: var(--r-sm);
      border: 1px solid rgba(200, 169, 110, 0.15);
      background: rgba(14, 14, 15, 0.6);
      padding: 16px;
      cursor: pointer;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      transition: border-color 0.2s, background 0.2s;
    }

    .radio-card.selected {
      border-color: rgba(200, 169, 110, 0.5);
      background: rgba(200, 169, 110, 0.08);
    }

    .radio-card input {
      margin-top: 3px;
      accent-color: var(--gold);
    }

    .radio-card strong {
      font-size: 14px;
      color: var(--cream);
    }

    .radio-card .muted {
      font-size: 12px;
      color: var(--ash);
      margin-top: 2px;
    }

    .modal-foot {
      padding: 20px 28px;
      border-top: 1px solid rgba(200, 169, 110, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .modal-price[aria-hidden="true"] {
      display: none;
    }

    .modal-price-label {
      font-size: 11px;
      color: var(--ash);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .modal-price-value {
      font-family: "Cormorant Garamond", serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .modal-foot-btns {
      display: flex;
      gap: 10px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 980px) {
      .hero-layout {
        grid-template-columns: 1fr;
      }

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

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

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

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

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

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

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

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

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

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
      }

      .nav-ctas .btn-ghost {
        display: none;
      }

      .nav-burger {
        display: flex;
      }

      .nav-panel {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: calc(100% + 12px);
        width: min(var(--container), calc(100% - 40px));
        border-radius: var(--r);
        padding: 10px;
        background: rgba(14, 14, 15, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(200, 169, 110, 0.18);
        box-shadow: var(--shadow-sm);
        z-index: 60;
      }

      .nav-panel a {
        display: block;
        padding: 12px 12px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--ash-light);
      }

      .nav-panel a:hover {
        color: var(--cream);
        background: rgba(200, 169, 110, 0.08);
      }

      .hero-card {
        display: none;
      }

      .hero {
        min-height: auto;
        padding: 80px 0 60px;
      }

      .hero h1 {
        font-size: clamp(36px, 8vw, 56px);
      }

      .how-media {
        position: static;
      }

      .trust-item {
        padding: 10px 16px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: 1fr;
      }

      .modal-radios {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .trust-items {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
      }

      .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(200, 169, 110, 0.1);
        width: 100%;
      }

      .trust-item:last-child {
        border-bottom: none;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
        animation: none !important;
      }
    }

    /* ─── MOBILE FIXED BUTTONS ─── */
    .mobile-fixed-buttons {
      display: none;
    }

    @media (max-width: 768px) {
      .mobile-fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--ink);
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
      }

      .mobile-fixed-buttons a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 10px;
        color: var(--cream);
        font-family: "Jost", sans-serif;
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;
        border-right: 1px solid rgba(200, 169, 110, 0.15);
        transition: background 0.2s;
      }

      .mobile-fixed-buttons a:last-child {
        border-right: none;
      }

      .mobile-fixed-buttons a.mf-whatsapp {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        color: var(--ink);
      }

      .mobile-fixed-buttons a.mf-phone {
        background: var(--ink-2);
      }

      .mobile-fixed-buttons svg {
        width: 20px;
        height: 20px;
      }

      body {
        padding-bottom: 52px;
        /* Espaço para não cobrir o rodapé/conteúdo */
      }
    }