﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Lora', Georgia, serif; background: #fff; color: #1a2744; line-height: 1.6; }
    :root { --navy: #1a2744; --gold: #c9a84c; --cream: #f5f0e8; --white: #ffffff; --border: #eee8da; --radius: 16px; --muted: #666; }

    h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }
    h1 { font-size: clamp(32px, 6vw, 56px); line-height: 1.1; }
    h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
    h3 { font-size: clamp(18px, 3vw, 24px); }
    a { color: var(--gold); text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    @media (max-width: 768px) { .container { padding: 0 16px; } }

    /* ── HEADER ───────────────────────────────── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 32px; min-height: 68px;
      max-width: 1200px; margin: 0 auto;
    }
    @media (max-width: 768px) { nav { padding: 0 16px; } }

    .logo-with-img { display: flex; align-items: center; gap: 8px; }
    .logo-with-img img { height: 36px; width: auto; display: block; object-fit: contain; }
    .logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); font-style: italic; }
    @media (max-width: 768px) { .logo-with-img img { height: 36px; } }

    .nav-menu { display: flex; gap: 32px; align-items: center; }
    @media (max-width: 1024px) { .nav-menu { gap: 20px; } }
    @media (max-width: 768px) { .nav-menu { display: none; } }

    .nav-menu a {
      color: #555; font-size: 14px; font-weight: 500;
      transition: color 0.2s; white-space: nowrap;
      padding: 4px 0; position: relative;
    }
    .nav-menu a::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
      height: 2px; background: var(--navy);
      transform: scaleX(0); transition: transform .2s;
    }
    .nav-menu a:hover { color: var(--navy); }
    .nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
    .nav-menu a.active { color: var(--navy); }

    .btn-member {
      background: var(--navy); color: #fff; padding: 10px 22px;
      border-radius: 30px; font-weight: 600; cursor: pointer;
      border: none; font-size: 13px; font-family: 'Lora', serif;
      transition: all 0.2s; white-space: nowrap;
    }
    .btn-member:hover { background: #243a6e; box-shadow: 0 4px 14px rgba(26,39,68,.25); }

    /* mobile nav toggle */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: all .3s; border-radius: 2px; }
    @media (max-width: 768px) { .hamburger { display: block; } }

    .mobile-menu {
      display: none; position: fixed; top: 68px; left: 0; right: 0;
      background: #fff; border-top: 1px solid #eee;
      padding: 12px 16px; z-index: 99; flex-direction: column; gap: 2px;
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: #444; font-size: 15px; padding: 11px 16px; border-radius: 8px; transition: background .15s; }
    .mobile-menu a:hover { background: #f5f5f5; color: var(--navy); }

    /* ── NAV DROPDOWN ─────────────────────────── */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
    .nav-dropdown > a .dd-arrow {
      display: inline-block; width: 6px; height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform .2s; margin-top: 1px; flex-shrink: 0;
    }
    .nav-dropdown:hover > a .dd-arrow { transform: rotate(-135deg) translateY(-2px); }

    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%);
      background: #fff; border-radius: 10px;
      border: 1px solid #eee;
      box-shadow: 0 8px 28px rgba(0,0,0,.1);
      min-width: 200px;
      opacity: 0; visibility: hidden;
      transition: opacity .15s, transform .15s;
      transform: translateX(-50%) translateY(4px);
      pointer-events: none;
      z-index: 200;
    }
    /* bridge invisível que elimina o gap e mantém hover */
    .nav-dropdown-menu::before {
      content: ''; position: absolute;
      top: -24px; left: 0; right: 0; height: 24px;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: all;
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 10px;
      padding: 11px 18px; color: #333 !important;
      font-size: 14px; transition: background .12s;
      border-bottom: 1px solid #f5f5f5;
    }
    .nav-dropdown-menu a:first-child { border-radius: 10px 10px 0 0; }
    .nav-dropdown-menu a:last-child { border-bottom: none; border-radius: 0 0 10px 10px; }
    .nav-dropdown-menu a:hover { background: #f9f6f0; color: var(--navy) !important; }
    .nav-dropdown-menu .ddm-emoji { font-size: 16px; }
    /* .btn-member {
      background: var(--gold); color: var(--navy); padding: 10px 22px;
      border-radius: 30px; font-weight: 700; cursor: pointer;
      border: none; font-size: 13px; font-family: 'Lora', serif;
      transition: all 0.25s; white-space: nowrap;
    }
    .btn-member:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.35); } */
    .btn-member {
      background: var(--navy);
      color: #fff;
      padding: 10px 22px;
      border-radius: 30px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      font-size: 13px;
      font-family: 'Lora', serif;
      transition: all 0.25s;
      white-space: nowrap;
    }

    .btn-member:hover {
      background: #243a6e;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(26,39,68,0.25);}

    /* mobile nav toggle */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      margin: 5px 0;
      transition: all .3s;
      border-radius: 2px;
    }
    @media (max-width: 768px) { .hamburger { display: block; } }

    .mobile-menu {
      display: none; position: fixed; top: 72px; left: 0; right: 0;
      background: var(--navy); border-top: 1px solid rgba(201,168,76,.15);
      padding: 16px; z-index: 99; flex-direction: column; gap: 4px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: rgba(255,255,255,.82); font-size: 16px; padding: 12px 16px; border-radius: 10px; transition: background .2s; }
    .mobile-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold); }

    /* ── PAGE TRANSITIONS ─────────────────────── */
    .site-page { display: none; padding-top: 72px; min-height: 100vh; }
    .site-page.active { display: block; animation: pageIn .35s ease both; }
    @keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* ── BUTTONS ──────────────────────────────── */
    .btn {
      display: inline-block; padding: 14px 30px; border-radius: var(--radius);
      font-size: 15px; font-weight: 600; font-family: 'Lora', serif;
      border: none; cursor: pointer; transition: all 0.25s; text-align: center;
    }
    /* .btn-primary { background: var(--gold); color: var(--navy); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,168,76,0.35); } */
    .btn-primary {
      background: var(--navy);
      color: #fff;
    }

    .btn-primary:hover {
      background: #243a6e;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(26,39,68,0.22);
    }
    .btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
    .btn-outline:hover { background: var(--navy); color: #fff; }
    .btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.7); color: #fff; }
    .btn-outline-white:hover { background: rgba(255,255,255,.1); }
    .btn-sm { padding: 9px 20px; font-size: 13px; }

    /* section spacing */
    .section { padding: 72px 0; }
    .section-alt { background: var(--cream); }
    .section-title { margin-bottom: 44px; }
    .section-title h2 { color: var(--navy); margin-bottom: 10px; }
    .section-title p { font-size: 17px; color: var(--muted); max-width: 560px; }
    .section-title.centered { text-align: center; }
    .section-title.centered p { margin: 0 auto; }

    /* ═══════════════════════════════════════════
       HOMEPAGE — #inicio
    ═══════════════════════════════════════════ */
    /* HERO — fundo branco, texto azul */
    .hero {
      background: #fff;
      padding: 80px 24px 60px;
      border-bottom: 1px solid var(--border);
    }
    .hero-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    @media (max-width: 768px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    }
    .hero-text { }
    .hero-tag {
      display: inline-block; background: rgba(201,168,76,.12);
      border: 1px solid rgba(201,168,76,.4); color: var(--gold2, #a8832e);
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; border-radius: 30px;
      padding: 4px 14px; margin-bottom: 18px;
    }
    .hero-text h1 { color: var(--navy); margin-bottom: 22px; }
    .hero-text h1 em { font-style: italic; color: var(--gold); }
    .hero-text p { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* hero image placeholder */
    .hero-image {
      background: linear-gradient(135deg, #e8f0fe 0%, var(--cream) 100%);
      border-radius: 24px; height: 480px;
      display: flex; align-items: center; justify-content: center;
      border: none; font-size: 64px;
      color: var(--navy); overflow: hidden;
      position: relative;
    }
    .hero-image img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .hero-image > div { display: none; }
    @media (max-width: 768px) { .hero-image { height: 300px; } }

    /* IMPACT NUMBERS */
    .impact {
      background: var(--navy); padding: 48px 24px; color: #fff;
    }
    .impact-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    @media (max-width: 768px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
    .impact-item { text-align: center; padding: 16px; }
    .impact-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      color: #fff;
      display: block;
      margin-bottom: 6px;
    }
    .impact-label { font-size: 13px; color: rgba(255,255,255,.65); letter-spacing: .5px; line-height: 1.4; }

    /* HOMEPAGE SECTIONS — experiências preview */
    .exp-preview-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
    }
    .exp-preview-card {
      background: #fff; border-radius: 14px; padding: 24px 18px;
      border: 1px solid var(--border); text-align: center;
      transition: all .25s; cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,.04);
    }
    .exp-preview-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); border-color: var(--gold); }
    .exp-preview-card .ep-emoji { font-size: 36px; margin-bottom: 10px; }
    .exp-preview-card h3 { font-size: 15px; color: var(--navy); }

    /* DEPOIMENTOS PREVIEW (homepage only) */
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .testimonial {
      background: #fff; padding: 32px 28px; border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
      position: relative;
    }
    .testimonial::before {
      content: '\201C'; position: absolute; top: 16px; left: 22px;
      font-family: 'Playfair Display', serif; font-size: 56px;
      color: var(--gold); opacity: .25; line-height: 1; pointer-events: none;
    }
    .testimonial p { font-style: italic; color: var(--muted); margin-bottom: 20px; line-height: 1.85; font-size: 15px; padding-top: 12px; }
    .testimonial-author { font-weight: 700; color: var(--navy); font-size: 14px; }
    .testimonial-role { font-size: 12px; color: var(--gold); margin-top: 2px; }

    .feedback-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 18px;
    }

    .feedback-card {
      appearance: none;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(26,39,68,.08);
      cursor: pointer;
      height: 300px;
      overflow: hidden;
      padding: 0;
      position: relative;
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }

    .feedback-card:hover {
      border-color: rgba(201,168,76,.75);
      box-shadow: 0 14px 34px rgba(26,39,68,.12);
      transform: translateY(-4px);
    }

    .feedback-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .feedback-card::after {
      content: 'Ampliar';
      position: absolute;
      right: 14px;
      bottom: 14px;
      background: rgba(26,39,68,.88);
      color: #fff;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      padding: 7px 12px;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .2s, transform .2s;
    }

    .feedback-card:hover::after,
    .feedback-card:focus-visible::after {
      opacity: 1;
      transform: translateY(0);
    }

    .feedback-modal {
      position: fixed;
      inset: 0;
      background: rgba(12,18,32,.72);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 28px;
      z-index: 900;
    }

    .feedback-modal.open {
      display: flex;
    }

    .feedback-modal-inner {
      position: relative;
      width: min(92vw, 620px);
      max-height: 88vh;
      display: flex;
      justify-content: center;
    }

    .feedback-modal img {
      max-width: 100%;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 16px;
      box-shadow: 0 24px 70px rgba(0,0,0,.32);
      background: #fff;
    }

    .feedback-modal-close {
      position: absolute;
      top: -16px;
      right: -16px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: none;
      background: #fff;
      color: var(--navy);
      cursor: pointer;
      font-size: 24px;
      line-height: 1;
      box-shadow: 0 8px 22px rgba(0,0,0,.18);
    }

    /* MIDIA PREVIEW */
    .midia-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
    .midia-card {
      background: #fff; border-radius: 14px; border: 1px solid var(--border);
      overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.04);
      transition: transform .2s;
      display: block;
      color: inherit;
    }
    .midia-card:hover { transform: translateY(-3px); }
    .midia-thumb {
      height: 140px; background: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: 48px; border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }
    .midia-thumb img,
    .materia-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .media-emoji {
      position: relative;
      z-index: 0;
    }
    .midia-info { padding: 16px; }
    .midia-veiculo { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
    .midia-titulo { font-size: 14px; color: var(--navy); font-weight: 600; line-height: 1.4; }

    /* EXP HIGHLIGHT BUTTONS (homepage) — estilo M50 */
    .exp-highlight-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
    .exp-highlight-btn {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 28px; border-radius: 50px;
      border: 1.5px solid var(--border); background: #fff;
      cursor: pointer; font-family: 'Lora', serif;
      transition: all .2s;
    }
    .exp-highlight-btn .ehb-emoji { font-size: 22px; line-height: 1; }
    .exp-highlight-btn .ehb-label { font-size: 15px; font-weight: 600; color: var(--navy); white-space: nowrap; }
    .exp-highlight-btn:hover {
      border-color: var(--navy); background: var(--navy);
      transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,39,68,.15);
    }
    .exp-highlight-btn:hover .ehb-label { color: #fff; }
    .exp-more-types { display: flex; gap: 10px; flex-wrap: wrap; }
    .exp-more-btn {
      display: flex; align-items: center; gap: 6px;
      padding: 9px 20px; border-radius: 50px;
      border: 1.5px solid var(--border); background: #fff;
      cursor: pointer; font-size: 14px; font-family: 'Lora', serif; color: var(--muted);
      transition: all .2s;
    }
    .exp-more-btn:hover { border-color: var(--gold); color: var(--navy); background: rgba(201,168,76,.06); }
    .faq-preview { max-width: 700px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 0; cursor: pointer; gap: 16px;
    }
    .faq-q span { font-size: 15px; font-weight: 600; color: var(--navy); }
    .faq-q .faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .25s; }
    .faq-q.open .faq-icon { transform: rotate(45deg); }
    .faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; padding-bottom: 18px; display: none; }
    .faq-a.open { display: block; }

    /* ═══════════════════════════════════════════
       EXPERIÊNCIAS PAGE — subtipos visíveis upfront
    ═══════════════════════════════════════════ */
    .exp-page-hero {
      background: var(--cream); padding: 60px 24px 0;
      border-bottom: 1px solid var(--border);
    }
    /* category filter pills — always visible, no extra click */
    .exp-filters {
      display: flex; gap: 10px; flex-wrap: wrap;
      padding: 24px 0 0;
    }
    .exp-filter {
      display: flex; align-items: center; gap: 7px;
      padding: 10px 20px; border-radius: 30px;
      border: 1.5px solid var(--border);
      background: #fff; cursor: pointer; font-size: 14px;
      font-family: 'Lora', serif; color: var(--muted);
      transition: all .2s; white-space: nowrap;
    }
    .exp-filter:hover { border-color: var(--gold); color: var(--navy); }
    .exp-filter.active { background: var(--navy); border-color: var(--navy); color: #fff; }
    .exp-filter .ef-emoji { font-size: 18px; }

    /* events panel below filters */
    .exp-panel { padding: 40px 0; }
    .exp-panel-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .exp-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
    .exp-card {
      background: #fff; border-radius: var(--radius);
      border: 1px solid var(--border); overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: all .2s;
    }
    .exp-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }
    .exp-card-thumb {
      height: 160px; background: #f8f4ec;
      display: flex; align-items: center; justify-content: center;
      font-size: 56px; border-bottom: 1px solid var(--border);
      overflow: hidden; position: relative;
    }
    .exp-card-thumb img {
      width: 100%; height: 100%; object-fit: contain;
      position: absolute; inset: 0; z-index: 1;
    }
    .exp-card-thumb .thumb-emoji { position: relative; z-index: 0; }
    .exp-card-body { padding: 20px; }
    .exp-card-tag {
      font-size: 11px; font-weight: 700; color: var(--gold);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
    }
    .exp-card-body h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
    .exp-card-body p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }
    .exp-card-meta { display: flex; gap: 14px; font-size: 12px; color: #aaa; }
    .exp-card[data-cat] { transition: opacity .25s, transform .25s; }
    .exp-card.hidden-cat { display: none; }

    .event-price-row {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px; margin: 16px 0;
    }
    .event-price {
      background: #f8f4ec; border: 1px solid var(--border);
      border-radius: 10px; padding: 10px;
    }
    .event-price span { display: block; color: var(--muted); font-size: 11px; margin-bottom: 3px; }
    .event-price strong { color: var(--navy); font-size: 15px; }
    .event-more {
      display: inline-flex; color: var(--navy); font-size: 13px;
      font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 2px;
    }

    .experience-detail-shell {
      background: #fff; min-height: calc(100vh - 120px);
      padding: 56px 32px 88px;
    }
    .experience-detail-inner {
      max-width: 1160px; margin: 0 auto;
      display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
      gap: 48px; align-items: start;
    }
    .experience-back {
      background: none; border: none; color: var(--navy);
      cursor: pointer; font-family: 'Lora', serif;
      font-size: 14px; font-weight: 700; margin-bottom: 28px; padding: 0;
    }
    .experience-detail-media {
      height: 340px; background: var(--cream); border: 1px solid var(--border);
      border-radius: 16px; display: flex; align-items: center; justify-content: center;
      font-size: 64px; overflow: hidden; margin-bottom: 28px;
    }
    .experience-detail-media img { width: 100%; height: 100%; object-fit: contain; background: #f8f4ec; }
    .experience-detail-tag {
      color: var(--gold); font-size: 12px; font-weight: 700;
      letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 10px;
    }
    .experience-detail h1 { color: var(--navy); margin-bottom: 8px; }
    .experience-detail-subtitle { color: var(--muted); font-size: 18px; margin-bottom: 22px; }
    .experience-detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
    .experience-detail-meta span {
      background: #f8f4ec; border: 1px solid var(--border);
      border-radius: 999px; color: var(--navy); font-size: 13px; padding: 8px 13px;
    }
    .experience-detail-section { margin-top: 30px; }
    .experience-detail-section h3 { color: var(--navy); font-size: 22px; margin-bottom: 12px; }
    .experience-detail-section p,
    .experience-detail-section li { color: var(--muted); font-size: 15px; line-height: 1.85; }
    .experience-detail-section ul { list-style: none; }
    .experience-detail-side {
      background: #f8f4ec; border: 1px solid var(--border);
      border-radius: 16px; padding: 26px;
      position: sticky; top: 146px;
    }
    .experience-detail-side h3 { color: var(--navy); margin-bottom: 16px; }
    .experience-detail-side .event-price-row { grid-template-columns: 1fr; }
    .experience-detail-side .btn { width: 100%; margin-top: 10px; }

    /* ═══════════════════════════════════════════
       CLUBE PAGE
    ═══════════════════════════════════════════ */
    #clube {
      background: url('../assets/images/site/Imagem2.jpg') no-repeat center/cover;
      position: relative;
    }
    #clube::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(26, 39, 68, 0.72);
      z-index: 0;
    }
    #clube > * { position: relative; z-index: 1; }

    .clube-hero {
      background: linear-gradient(135deg, var(--navy) 0%, #243a6e 100%);
      padding: 80px 24px; color: #fff; text-align: center;
    }
    .clube-hero h1 { color: #fff; margin-bottom: 16px; }
    .clube-hero h1 em { color: var(--gold); font-style: italic; }
    .clube-hero p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 32px; line-height: 1.8; }

    .clube-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }
    .clube-item {
      background: #fff; border-radius: var(--radius); padding: 28px;
      border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.04);
    }
    .clube-item-icon { font-size: 36px; margin-bottom: 14px; }
    .clube-item h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
    .clube-item p { font-size: 14px; color: var(--muted); line-height: 1.75; }

    /* plano */
    .plano-card {
      max-width: 440px; margin: 0 auto;
      background: var(--navy); border-radius: 24px;
      padding: 40px; text-align: center; color: #fff;
      box-shadow: 0 12px 40px rgba(26,39,68,.25);
    }
    .plano-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 20px; padding: 4px 14px; margin-bottom: 16px; }
    .plano-card h3 { font-size: 28px; color: #fff; margin-bottom: 8px; }
    .plano-card .plano-price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--gold); margin: 16px 0 6px; }
    .plano-card .plano-period { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
    .plano-features { list-style: none; text-align: left; margin-bottom: 28px; }
    .plano-features li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; color: rgba(255,255,255,.8); display: flex; gap: 10px; align-items: flex-start; }
    .plano-features li:last-child { border-bottom: none; }
    .plano-features li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

    /* ═══════════════════════════════════════════
       MATÉRIAS PAGE
    ═══════════════════════════════════════════ */
    .materias-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
    .materia-card {
      background: #fff; border-radius: var(--radius);
      border: 1px solid var(--border); overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,.04); transition: transform .2s;
      display: block;
      color: inherit;
    }
    .materia-card:hover { transform: translateY(-4px); }
    .materia-thumb {
      height: 180px; background: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: 56px; border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }
    .materia-body { padding: 22px; }
    .materia-veiculo { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
    .materia-titulo { font-size: 17px; color: var(--navy); font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
    .materia-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
    .materia-data { font-size: 11px; color: #bbb; }

    /* ═══════════════════════════════════════════
       FAQ PAGE
    ═══════════════════════════════════════════ */
    .faq-section { max-width: 720px; margin: 0 auto; }
    .faq-group-title {
      font-size: 13px; font-weight: 700; color: var(--gold);
      letter-spacing: 1.5px; text-transform: uppercase;
      margin: 36px 0 8px; padding-bottom: 8px;
      border-bottom: 2px solid var(--gold);
    }
    .faq-group-title:first-child { margin-top: 0; }

    /* ═══════════════════════════════════════════
       CONTATO PAGE
    ═══════════════════════════════════════════ */
    .contato-hero {
      background: var(--cream); padding: 60px 24px;
      text-align: center; border-bottom: 1px solid var(--border);
    }
    .contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
    .contato-item { text-align: center; background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
    .contato-item .ci-icon { font-size: 32px; margin-bottom: 10px; }
    .contato-item h4 { color: var(--navy); margin-bottom: 6px; font-size: 16px; }
    .contato-item p, .contato-item a { font-size: 14px; color: var(--muted); }
    .contato-item a { color: var(--gold); font-weight: 600; }

    /* ── FOOTER ───────────────────────────────── */
    footer { background: var(--navy); color: white; padding: 56px 24px 32px; }
    .footer-content {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 36px; margin-bottom: 32px;
    }
    .footer-col h4 { color: var(--gold); margin-bottom: 14px; font-size: 15px; }
    .footer-col a { color: rgba(255,255,255,.65); display: block; margin-bottom: 8px; font-size: 14px; transition: color .2s; }
    .footer-col a:hover { color: var(--gold); }
    .footer-col p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
    .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(201,168,76,.15); font-size: 12px; color: rgba(255,255,255,.4); }

    /* ── SHARED UTILITY ───────────────────────── */
    .text-center { text-align: center; }
    .mt-8  { margin-top: 8px; }
    .mt-16 { margin-top: 16px; }
    .mt-32 { margin-top: 32px; }
    .mt-48 { margin-top: 48px; }
    .link-saiba-mais { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; font-size: 14px; border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: color .2s; }
    .link-saiba-mais:hover { color: var(--gold); }
    .empty-state {
      grid-column: 1 / -1;
      width: 100%;
      padding: 28px;
      background: #fff;
      border: 1px dashed var(--border);
      border-radius: 14px;
      color: var(--muted);
      font-size: 14px;
      text-align: center;
    }
    @keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
    .fade-up { animation: fadeUp .5s ease both; }
    /* =====================================================
   AJUSTES FINAIS UX — FORA DE CASA
   ===================================================== */

    /* Mantém apenas a página ativa visível */
    .site-page {
      display: none !important;
      min-height: calc(100vh - 68px);
    }

    .site-page.active {
      display: block !important;
    }

    /* Header mais limpo */
    header {
      background: #ffffff !important;
      border-bottom: 1px solid #ece7dd !important;
      box-shadow: 0 2px 14px rgba(26,39,68,.06) !important;
    }

    nav {
      min-height: 120px !important;
      max-width: 1440px !important;
      padding: 0 32px !important;
    }

    .site-page {
      padding-top: 120px !important;
    }

    .logo-with-img {
      min-width: 132px;
      height: 120px;
      align-items: center !important;
    }

    .logo-with-img img {
      height: 112px !important;
      width: auto !important;
      max-width: 132px;
      object-fit: contain;
      object-position: left center;
      transform: translateY(0);
    }

    .mobile-menu {
      top: 120px !important;
    }

    .btn-member,
    .btn-primary {
      background: var(--navy) !important;
      color: #fff !important;
      box-shadow: none !important;
    }

    .btn-member:hover,
    .btn-primary:hover {
      background: #243a6e !important;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(26,39,68,.20) !important;
    }

    /* Home mais aberta e menos “quadrado central” */
    #inicio .container,
    #experiencias .container,
    #experiencias .exp-panel-inner,
    #clube .container {
      width: 100% !important;
      max-width: 1440px !important;
      padding-left: 32px !important;
      padding-right: 32px !important;
    }

    #inicio .section {
      padding: 80px 0 !important;
    }

    .hero {
      background: #fff !important;
      padding: 122px 0 72px !important;
      border-bottom: 1px solid var(--border);
    }

    .hero-inner {
      max-width: 1440px !important;
      grid-template-columns: 1.2fr 1fr !important;
      gap: 96px !important;
    }

    .hero-text h1 {
      max-width: 620px;
    }

    .hero-text p {
      max-width: 560px !important;
    }

    .home-full-inner {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .upcoming-strip {
      background: #f8f4ec;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .upcoming-head .section-title {
      margin-bottom: 0;
    }

    .upcoming-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .upcoming-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(26,39,68,.07);
      cursor: pointer;
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }

    .upcoming-card:hover {
      transform: translateY(-4px);
      border-color: rgba(201,168,76,.75);
      box-shadow: 0 14px 34px rgba(26,39,68,.12);
    }

    .upcoming-thumb {
      height: 128px;
      background: #f8f4ec;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }

    .upcoming-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .upcoming-thumb .thumb-emoji {
      position: relative;
      z-index: 0;
    }

    .upcoming-body {
      padding: 20px;
    }

    .upcoming-tag {
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .upcoming-body h3 {
      color: var(--navy);
      font-size: 19px;
      margin-bottom: 8px;
    }

    .upcoming-body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .upcoming-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
      color: #888;
      font-size: 12px;
    }

    .home-faq-layout {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .home-faq-layout .faq-preview {
      max-width: 880px;
    }

    /* Remove o azul “perdido” e transforma os números em uma faixa mais premium */
    .impact {
      background: #16243f !important;
      padding: 46px 24px !important;
    }

    .impact-grid {
      max-width: 1440px !important;
      gap: 48px !important;
    }

    .impact-item {
      padding: 8px 16px !important;
    }

    .impact-number {
      color: #fff !important;
      font-size: clamp(34px, 4vw, 50px) !important;
    }

    .impact-label {
      color: rgba(255,255,255,.70) !important;
      font-size: 14px !important;
    }

    /* Experiências: deixa claro que é uma categoria por vez */
    .exp-page-hero {
      padding: 72px 24px 28px !important;
    }

    .exp-filters {
      margin-top: 28px;
      padding: 0 !important;
    }

    .exp-filter.active {
      background: var(--navy) !important;
      border-color: var(--navy) !important;
      color: #fff !important;
    }

    .exp-current-header {
      margin-top: 28px;
      padding: 22px 26px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      max-width: 760px;
    }

    .exp-current-header h3 {
      color: var(--navy);
      margin-bottom: 6px;
    }

    .exp-current-header p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .exp-panel {
      padding: 36px 0 72px !important;
    }

    /* Clube */
    #clube {
      background: #fff !important;
    }

    #clube::before {
      display: none !important;
    }

    .clube-hero {
      background: #16243f !important;
      padding: 72px 0 !important;
      text-align: left !important;
      overflow: hidden;
    }

    .clube-hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
      gap: 64px;
      align-items: center;
    }

    .clube-hero p {
      margin-left: 0 !important;
      margin-right: 0 !important;
      max-width: 640px !important;
    }

    .clube-video-slot {
      aspect-ratio: 16 / 10;
      border-radius: 18px;
      background:
        radial-gradient(circle at 28% 20%, rgba(201,168,76,.2), transparent 34%),
        linear-gradient(135deg, #0f1b33 0%, #243a6e 100%);
      box-shadow: 0 18px 48px rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.16);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .clube-video-slot::before {
      content: '';
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
    }

    .clube-video-play {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: rgba(255,255,255,.94);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 12px 34px rgba(0,0,0,.24);
      padding-left: 5px;
      position: relative;
      z-index: 1;
    }

    .clube-video-slot video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
    }

    .clube-grid {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
      gap: 22px !important;
    }

    .clube-item {
      min-height: 220px;
    }

    .clube-item-icon {
      font-size: 32px !important;
    }

    .clube-photo-band {
      min-height: 380px;
      background:
        linear-gradient(90deg, rgba(22,36,63,.88) 0%, rgba(22,36,63,.72) 42%, rgba(22,36,63,.2) 100%),
        url('../assets/images/site/Imagem2.jpg') center/cover no-repeat;
      color: #fff;
      display: flex;
      align-items: center;
    }

    .clube-photo-band-content {
      max-width: 600px;
    }

    .clube-photo-band h2 {
      color: #fff;
      margin-bottom: 14px;
    }

    .clube-photo-band p {
      color: rgba(255,255,255,.78);
      font-size: 17px;
      line-height: 1.8;
      max-width: 560px;
    }

    #clube .section {
      background: #fff;
    }

    #clube .section-alt {
      background: var(--cream);
    }

    /* Footer com mais respiro */
    footer {
      background: #16243f !important;
      padding: 76px 24px 34px !important;
    }

    .footer-content {
      max-width: 1440px !important;
      grid-template-columns: 1.8fr 1.1fr 1.1fr 1.2fr !important;
      gap: 92px !important;
      align-items: start !important;
      margin-bottom: 48px !important;
    }

    .footer-col h4 {
      color: #d7c184 !important;
      font-size: 17px !important;
      margin-bottom: 20px !important;
    }

    .footer-col p {
      max-width: 420px;
      font-size: 15px !important;
      line-height: 1.9 !important;
      color: rgba(255,255,255,.68) !important;
    }

    .footer-col a {
      font-size: 15px !important;
      margin-bottom: 12px !important;
      color: rgba(255,255,255,.72) !important;
    }

    .footer-bottom {
      max-width: 1440px !important;
      margin: 0 auto !important;
      padding-top: 28px !important;
      border-top: 1px solid rgba(255,255,255,.14) !important;
    }

    /* Mobile */
    @media (max-width: 768px) {
      #inicio .container,
      #experiencias .container,
      #experiencias .exp-panel-inner,
      #clube .container,
      .home-full-inner,
      .home-faq-layout {
        padding-left: 18px !important;
        padding-right: 18px !important;
      }

      nav {
        min-height: 94px !important;
        padding: 0 18px !important;
      }

      .site-page {
        padding-top: 94px !important;
      }

      .logo-with-img {
        height: 94px;
        min-width: 104px;
      }

      .logo-with-img img {
        height: 88px !important;
        max-width: 104px;
        transform: translateY(0);
      }

      .mobile-menu {
        top: 94px !important;
      }

      .hero {
        padding-top: 106px !important;
      }

      .hero-inner {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
      }

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

      .upcoming-grid {
        grid-template-columns: 1fr !important;
      }

      .feedback-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
      }

      .feedback-card {
        flex: 0 0 78vw;
        height: 250px;
        scroll-snap-align: start;
      }

      .feedback-modal {
        padding: 18px;
      }

      .feedback-modal-close {
        top: 10px;
        right: 10px;
      }

      .clube-hero-layout {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
      }

      .clube-video-slot {
        width: 100%;
        min-height: 0;
      }

      .clube-item {
        min-height: auto;
      }

      .clube-photo-band {
        min-height: 320px;
        background:
          linear-gradient(rgba(22,36,63,.86), rgba(22,36,63,.72)),
          url('../assets/images/site/Imagem2.jpg') center/cover no-repeat;
      }

      .experience-detail-shell {
        padding: 34px 18px 68px;
      }

      .experience-detail-inner {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .experience-detail-media {
        height: 240px;
      }

      .experience-detail-side {
        position: static;
      }

      .impact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
      }

      .footer-content {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
      }
    }
