/* ═══════════════════════════════════════════════════════
       1. DESIGN TOKENS — CSS CUSTOM PROPERTIES
    ═══════════════════════════════════════════════════════ */
    :root {
      --color-bg-light: #b4a497;
      --color-bg-dark: #584335;
      --color-bg-darkest: #3e2d23;
      --color-bg-mid: #7a6152;
      --color-bg-surface: #c8bab1;
      --color-bg-glass: rgba(88, 67, 53, 0.6);
      --color-bg-glass-light: rgba(180, 164, 151, 0.4);

      --color-text-primary: #f5efe8;
      --color-text-secondary: #e8ddd5;
      --color-text-muted: #c4b5a9;
      --color-text-subtle: #a08f83;
      --color-text-dark: #2c1d15;
      --color-text-dark-muted: #5a3f30;

      --color-accent: #d4b896;
      --color-accent-glow: rgba(212, 184, 150, 0.3);
      --color-border-light: rgba(245, 239, 232, 0.15);
      --color-border-dark: rgba(245, 239, 232, 0.06);
      --color-border-accent: rgba(212, 184, 150, 0.4);

      --font-serif: 'Cormorant Garamond', 'Georgia', serif;
      --font-sans: 'DM Sans', 'system-ui', sans-serif;
      --font-italic: 'Cormorant', serif;

      --text-xs: 0.75rem;
      --text-sm: 0.875rem;
      --text-base: 1rem;
      --text-md: 1.125rem;
      --text-lg: 1.25rem;
      --text-xl: 1.5rem;
      --text-2xl: 2rem;
      --text-3xl: 2.5rem;
      --text-4xl: 3.25rem;
      --text-5xl: 4.5rem;
      --text-6xl: 6rem;

      --weight-light: 300;
      --weight-regular: 400;
      --weight-medium: 500;
      --weight-semibold: 600;

      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-5: 1.25rem;
      --space-6: 1.5rem;
      --space-8: 2rem;
      --space-10: 2.5rem;
      --space-12: 3rem;
      --space-16: 4rem;
      --space-20: 5rem;
      --space-24: 6rem;
      --space-32: 8rem;
      --space-40: 10rem;

      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 20px;
      --radius-2xl: 32px;
      --radius-full: 9999px;

      --shadow-sm: 0 2px 8px rgba(30, 18, 11, 0.25);
      --shadow-md: 0 8px 24px rgba(30, 18, 11, 0.3);
      --shadow-lg: 0 20px 48px rgba(30, 18, 11, 0.35);
      --shadow-glow: 0 0 40px rgba(212, 184, 150, 0.2);

      --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
      --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);

      --z-base: 0;
      --z-above: 10;
      --z-overlay: 20;
      --z-modal: 30;
      --z-nav: 50;
    }

    /* ═══════════════════════════════════════════════════════
       2. RESET & BASE
    ═══════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-sans);
      background-color: var(--color-bg-dark);
      color: var(--color-text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--color-bg-darkest);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--color-bg-mid);
      border-radius: var(--radius-full);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--color-accent);
    }

    ::selection {
      background: rgba(212, 184, 150, 0.25);
      color: var(--color-text-primary);
    }

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

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

    /* ═══════════════════════════════════════════════════════
       3. ANIMAÇÕES (KEYFRAMES)
    ═══════════════════════════════════════════════════════ */
    @keyframes revealUp {
      0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(3px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @keyframes subtlePulse {

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

      50% {
        opacity: 0.7;
        transform: scale(1.04);
      }
    }

    @keyframes driftH {
      0% {
        transform: translateX(-8%) translateY(0) rotate(-3deg);
        opacity: 0.3;
      }

      50% {
        transform: translateX(8%) translateY(1.5%) rotate(-3deg);
        opacity: 0.5;
      }

      100% {
        transform: translateX(-8%) translateY(0) rotate(-3deg);
        opacity: 0.3;
      }
    }

    @keyframes slowRotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes wordReveal {
      0% {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(4px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes ping {
      0% {
        transform: scale(1);
        opacity: 1;
      }

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

    @keyframes lineGrow {
      from {
        width: 0;
      }

      to {
        width: 48px;
      }
    }

    @keyframes navShow {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes borderBeam {
      from {
        background-position: 0% 50%;
      }

      to {
        background-position: 100% 50%;
      }
    }

    /* ═══════════════════════════════════════════════════════
       4. CLASSES UTILITÁRIAS DE ANIMAÇÃO
    ═══════════════════════════════════════════════════════ */
    .animate-reveal {
      animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
      will-change: transform, opacity, filter;
    }

    .animate-word {
      animation: wordReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
      display: inline-block;
      will-change: transform, opacity, filter;
    }

    .animate-fade {
      animation: fadeIn 0.8s ease-out both;
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-0 {
      animation-delay: 0ms;
    }

    .delay-100 {
      animation-delay: 100ms;
    }

    .delay-200 {
      animation-delay: 200ms;
    }

    .delay-300 {
      animation-delay: 300ms;
    }

    .delay-400 {
      animation-delay: 400ms;
    }

    .delay-500 {
      animation-delay: 500ms;
    }

    .delay-600 {
      animation-delay: 600ms;
    }

    .delay-800 {
      animation-delay: 800ms;
    }

    /* ═══════════════════════════════════════════════════════
       5. GLASSMORPHISM
    ═══════════════════════════════════════════════════════ */
    .glass {
      background: var(--color-bg-glass);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--color-border-light);
    }

    .glass-light {
      background: var(--color-bg-glass-light);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(245, 239, 232, 0.2);
    }

    .glass-nav {
      background: rgba(62, 45, 35, 0.80);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--color-border-dark);
    }

    /* ═══════════════════════════════════════════════════════
       6. FLASHLIGHT CARD EFFECT
    ═══════════════════════════════════════════════════════ */
    .flashlight-card {
      position: relative;
      --mouse-x: -999px;
      --mouse-y: -999px;
    }

    .flashlight-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y),
          rgba(212, 184, 150, 0.08), transparent 45%);
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
      z-index: 10;
      border-radius: inherit;
    }

    .flashlight-card:hover::after {
      opacity: 1;
    }

    /* ═══════════════════════════════════════════════════════
       7. TIPOGRAFIA
    ═══════════════════════════════════════════════════════ */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-serif);
      font-weight: var(--weight-light);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--color-text-primary);
    }

    p {
      font-family: var(--font-sans);
    }

    .text-gradient {
      background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent) 60%, var(--color-text-muted) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .heading-underline {
      position: relative;
      display: inline-block;
    }

    .heading-underline::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 48px;
      height: 1px;
      background: var(--color-accent);
      animation: lineGrow 0.8s ease forwards;
    }

    /* ═══════════════════════════════════════════════════════
       8. LAYOUT GLOBAL
    ═══════════════════════════════════════════════════════ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-6);
    }

    .section {
      padding: var(--space-32) 0;
      position: relative;
    }

    .section--alt {
      background: rgba(30, 18, 11, 0.3);
    }

    .section__eyebrow {
      font-family: var(--font-sans);
      font-size: var(--text-xs);
      font-weight: var(--weight-medium);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: var(--space-4);
      display: block;
    }

    .section__title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, var(--text-4xl));
      font-weight: var(--weight-light);
      margin-bottom: var(--space-6);
    }

    .section__lead {
      font-size: var(--text-md);
      color: var(--color-text-muted);
      line-height: 1.75;
      max-width: 680px;
    }

    /* ═══════════════════════════════════════════════════════
       9. FUNDO ATMOSFÉRICO GLOBAL
    ═══════════════════════════════════════════════════════ */
    .site-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      overflow: hidden;
      background: var(--color-bg-dark);
      pointer-events: none;
    }

    .site-bg__glow {
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 120vw;
      height: 80vh;
      background: radial-gradient(ellipse at center,
          rgba(212, 184, 150, 0.06) 0%,
          rgba(180, 164, 151, 0.03) 40%,
          transparent 70%);
      animation: subtlePulse 10s ease-in-out infinite;
    }

    .site-bg__streak {
      position: absolute;
      bottom: 15%;
      left: -15%;
      width: 130%;
      height: 350px;
      background: radial-gradient(ellipse at center,
          rgba(180, 164, 151, 0.035) 0%,
          transparent 70%);
      animation: driftH 25s ease-in-out infinite;
    }

    .site-bg__vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, transparent 30%, rgba(30, 18, 11, 0.55) 100%);
    }

    /* ═══════════════════════════════════════════════════════
       10. NAVBAR
    ═══════════════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: var(--z-nav);
      padding: var(--space-4) 0;
      animation: navShow 0.6s ease both;
      transition: background var(--transition-normal), box-shadow var(--transition-normal);
    }

    .nav.scrolled {
      background: rgba(62, 45, 35, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--color-border-dark), var(--shadow-sm);
    }

    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-6);
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      font-family: var(--font-serif);
      font-size: var(--text-lg);
      font-weight: var(--weight-light);
      color: var(--color-text-primary);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1;
    }

    .nav__logo img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      flex-shrink: 0;
      filter: brightness(1.05);
    }

    .nav__logo span {
      font-size: 0.6em;
      letter-spacing: 0.14em;
      opacity: 0.55;
      display: block;
      margin-top: 2px;
    }

    .nav__links {
      display: flex;
      gap: var(--space-8);
      list-style: none;
      align-items: center;
    }

    .nav__links a {
      font-family: var(--font-sans);
      font-size: var(--text-xs);
      font-weight: var(--weight-medium);
      color: var(--color-text-muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color var(--transition-normal);
      position: relative;
    }

    .nav__links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-accent);
      transition: width var(--transition-normal);
    }

    .nav__links a:hover {
      color: var(--color-text-primary);
    }

    .nav__links a:hover::after {
      width: 100%;
    }

    .nav__cta {
      background: var(--color-text-primary);
      color: var(--color-bg-dark);
      font-family: var(--font-sans);
      font-size: var(--text-xs);
      font-weight: var(--weight-medium);
      letter-spacing: 0.08em;
      padding: var(--space-2) var(--space-6);
      border-radius: var(--radius-full);
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      transition: all var(--transition-normal);
      display: inline-block;
    }

    .nav__cta:hover {
      background: var(--color-accent);
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }

    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: var(--space-2);
    }

    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--color-text-muted);
      transition: all var(--transition-normal);
    }

    /* ═══════════════════════════════════════════════════════
       11. HERO
    ═══════════════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

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

    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.05);
      filter: brightness(0.6) saturate(0.85);
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(62, 45, 35, 0.5) 0%,
          rgba(62, 45, 35, 0.1) 40%,
          rgba(62, 45, 35, 0.0) 100%);
    }

    .hero__ambient {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 60vh;
      background: radial-gradient(ellipse at center top, rgba(212, 184, 150, 0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0;
      margin-top: -8vh; /* Sobe o texto para ficar rente abaixo dos quadros */
    }

    .hero__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-6);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 0;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-1) var(--space-3);
      border-radius: var(--radius-full);
      background: rgba(212, 184, 150, 0.12);
      border: 1px solid var(--color-border-accent);
      color: var(--color-accent);
      font-family: var(--font-sans);
      font-size: 0.65rem;
      font-weight: var(--weight-medium);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: var(--space-10);
    }

    .hero__badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-accent);
      display: inline-block;
      position: relative;
    }

    .hero__badge-dot::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--color-accent);
      opacity: 0.6;
      animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    .hero__title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: var(--weight-light);
      line-height: 1.1;
      color: var(--color-text-primary);
      max-width: 800px;
      margin-bottom: var(--space-8);
    }

    .hero__title em {
      font-style: italic;
      color: var(--color-accent);
    }

    .hero__subtitle {
      font-family: var(--font-serif);
      font-size: var(--text-xl);
      font-style: italic;
      color: var(--color-text-muted);
      letter-spacing: 0.04em;
      margin-bottom: var(--space-10);
    }

    .hero__actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-6);
      flex-wrap: wrap;
    }

    /* Hero Divider / Transition */
    .hero__divider {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      z-index: 3;
    }

    .hero__divider svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 8vw;
      min-height: 50px;
      max-height: 120px;
    }

    .hero__divider .shape-fill {
      fill: var(--color-bg-dark);
    }


    .hero__scroll {
      position: absolute;
      bottom: var(--space-8);
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-2);
      color: var(--color-text-subtle);
      font-size: var(--text-xs);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--color-border-light), transparent);
      animation: subtlePulse 2s ease-in-out infinite;
    }

    /* ═══════════════════════════════════════════════════════
       12. BOTÕES
    ═══════════════════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      font-family: var(--font-sans);
      font-size: var(--text-sm);
      font-weight: var(--weight-medium);
      letter-spacing: 0.06em;
      border: none;
      cursor: pointer;
      transition: all var(--transition-normal);
      position: relative;
      overflow: hidden;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--color-text-primary);
      color: var(--color-bg-dark);
      padding: var(--space-3) var(--space-8);
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-sm);
    }

    .btn-primary:hover {
      background: var(--color-accent);
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-outline {
      background: transparent;
      color: var(--color-text-primary);
      padding: var(--space-3) var(--space-8);
      border-radius: var(--radius-full);
      border: 1px solid var(--color-border-light);
    }

    .btn-outline:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
    }

    .btn-glow {
      background: linear-gradient(135deg, var(--color-bg-mid), var(--color-bg-dark));
      color: var(--color-text-primary);
      padding: var(--space-3) var(--space-8);
      border-radius: var(--radius-full);
      border: 1px solid var(--color-border-accent);
      box-shadow: 0 8px 32px rgba(212, 184, 150, 0.15);
    }

    .btn-glow:hover {
      box-shadow: 0 12px 40px rgba(212, 184, 150, 0.3);
      transform: translateY(-2px);
      border-color: rgba(212, 184, 150, 0.6);
    }

    .btn-lg {
      padding: var(--space-4) var(--space-10);
      font-size: var(--text-md);
    }

    /* ═══════════════════════════════════════════════════════
       13. CARDS
    ═══════════════════════════════════════════════════════ */
    .card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border-dark);
      padding: var(--space-8);
      background: rgba(62, 45, 35, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform 0.15s ease-out;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .card:hover {
      border-color: var(--color-border-accent);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 184, 150, 0.15);
      /* JavaScript handles the actual tilt/scale on mousemove */
    }

    .card__icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border-light);
      background: rgba(245, 239, 232, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-6);
      font-size: 1.25rem;
      color: var(--color-accent);
      transform: translateZ(40px);
      transition: transform 0.3s ease, color 0.3s ease;
    }
    
    .card:hover .card__icon {
      transform: translateZ(60px) scale(1.1);
      color: #fff;
    }

    .card__title {
      font-family: var(--font-serif);
      font-size: var(--text-lg);
      font-weight: var(--weight-normal);
      color: var(--color-text-primary);
      margin-bottom: var(--space-3);
      transform: translateZ(25px);
    }

    .card__desc {
      font-family: var(--font-sans);
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.6;
      transform: translateZ(15px);
    }

    .card__body {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════════════════
       14. QUOTE BLOCK
    ═══════════════════════════════════════════════════════ */
    .quote-block {
      padding: var(--space-6) var(--space-8);
      background: rgba(30, 18, 11, 0.4);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(212, 184, 150, 0.08);
      backdrop-filter: blur(8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .quote-block__text {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: var(--text-lg);
      font-weight: var(--weight-light);
      color: var(--color-accent);
      line-height: 1.6;
      text-align: center;
    }

    .quote-block__author {
      font-family: var(--font-sans);
      font-size: var(--text-xs);
      color: var(--color-text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: var(--space-3);
    }

    /* ═══════════════════════════════════════════════════════
       15. ACCORDION (FAQ)
    ═══════════════════════════════════════════════════════ */
    .accordion {
      border: 1px solid var(--color-border-dark);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .accordion__item {
      border-bottom: 1px solid var(--color-border-dark);
    }

    .accordion__item:last-child {
      border-bottom: none;
    }

    .accordion__trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-5) var(--space-6);
      font-family: var(--font-serif);
      font-size: var(--text-lg);
      font-weight: var(--weight-light);
      color: var(--color-text-primary);
      background: rgba(62, 45, 35, 0.4);
      border: none;
      cursor: pointer;
      text-align: left;
      transition: background var(--transition-fast);
    }

    .accordion__trigger:hover {
      background: rgba(62, 45, 35, 0.7);
    }

    .accordion__chevron {
      width: 16px;
      height: 16px;
      color: var(--color-accent);
      transition: transform var(--transition-normal);
      flex-shrink: 0;
      opacity: 0.7;
    }

    .accordion__item.open .accordion__chevron {
      transform: rotate(180deg);
    }

    .accordion__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition-slow);
    }

    .accordion__item.open .accordion__body {
      max-height: 300px;
    }

    .accordion__content {
      padding: var(--space-5) var(--space-6);
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.75;
      background: rgba(30, 18, 11, 0.25);
    }

    /* ═══════════════════════════════════════════════════════
       16. DIVIDER ORNAMENTAL
    ═══════════════════════════════════════════════════════ */
    .divider-accent {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-border-accent), transparent);
      margin: 0;
    }

    .ornament {
      text-align: center;
      color: var(--color-text-subtle);
      font-size: var(--text-xs);
      letter-spacing: 0.5em;
      padding: var(--space-4) 0;
    }

    /* ═══════════════════════════════════════════════════════
       17. BADGE
    ═══════════════════════════════════════════════════════ */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-2);
      padding: var(--space-1) var(--space-3);
      border-radius: var(--radius-full);
      font-family: var(--font-sans);
      font-size: var(--text-xs);
      font-weight: var(--weight-medium);
      letter-spacing: 0.05em;
    }

    .badge-accent {
      background: rgba(212, 184, 150, 0.12);
      border: 1px solid var(--color-border-accent);
      color: var(--color-accent);
    }

    .badge-subtle {
      background: rgba(245, 239, 232, 0.06);
      border: 1px solid var(--color-border-light);
      color: var(--color-text-muted);
    }

    /* ═══════════════════════════════════════════════════════
       18. SEÇÃO: SOBRE MIM
    ═══════════════════════════════════════════════════════ */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: center;
    }

    .about-photo {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: var(--space-8);
    }

    .about-photo__frame {
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/5;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
      z-index: 2;
      animation: photoFloat 10s ease-in-out infinite alternate;
    }

    @keyframes photoFloat {
      0% { transform: translateY(0) rotate(0deg); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,184,150,0.1); }
      100% { transform: translateY(-12px) rotate(0.5deg); box-shadow: 0 45px 80px rgba(0,0,0,0.8), 0 0 20px 2px rgba(212,184,150,0.2); }
    }

    .about-photo__frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      filter: saturate(0.85) brightness(0.9);
      transition: filter var(--transition-slow), transform var(--transition-slow);
    }

    .about-photo__frame:hover img {
      filter: saturate(0.95) brightness(0.95);
      transform: scale(1.03);
    }

    .about-photo__frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(30, 18, 11, 0.5) 100%);
      pointer-events: none;
    }

    .about-photo__border {
      position: absolute;
      inset: -12px;
      border-radius: 40px;
      border: 1px solid rgba(212, 184, 150, 0.15);
      pointer-events: none;
      z-index: 1;
    }

    .about-photo__accent {
      position: absolute;
      top: -30px;
      left: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 184, 150, 0.3) 0%, transparent 70%);
      filter: blur(20px);
      z-index: 0;
    }

    .about-content p {
      font-size: var(--text-md);
      color: var(--color-text-muted);
      line-height: 1.8;
      margin-bottom: var(--space-5);
    }

    .about-content p:last-of-type {
      margin-bottom: var(--space-8);
    }

    /* ═══════════════════════════════════════════════════════
       18.5. EFEITOS DA SEÇÃO: SOBRE MIM (AURA STYLE)
    ═══════════════════════════════════════════════════════ */
    #sobre {
      position: relative;
      background: var(--color-bg-dark);
      overflow: hidden;
    }

    #sobre .container {
      position: relative;
      z-index: 5;
    }

    #sobre::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(180, 164, 151, 0.08) 0%, transparent 80%);
      pointer-events: none;
      z-index: 1;
    }

    .sobre-orb-1 {
      position: absolute;
      top: -20%; left: -10%;
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(212, 184, 150, 0.06) 0%, transparent 70%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 2;
      animation: ambientSlowPulse 12s infinite alternate ease-in-out;
    }

    .sobre-orb-2 {
      position: absolute;
      bottom: -30%; right: -10%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(212, 184, 150, 0.04) 0%, transparent 70%);
      filter: blur(50px);
      pointer-events: none;
      z-index: 2;
      animation: floatSlowRight 18s infinite alternate ease-in-out;
    }

    .sobre-interference {
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212, 184, 150, 0.015) 60deg, transparent 120deg);
      opacity: 0.8;
      pointer-events: none;
      z-index: 2;
      animation: slow-rotate 120s linear infinite;
    }

    .sobre-interference-reverse {
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(212, 184, 150, 0.015) 60deg, transparent 120deg);
      opacity: 0.5;
      pointer-events: none;
      z-index: 2;
      animation: slow-rotate 150s linear infinite reverse;
    }

    .sobre-beam {
      position: absolute;
      bottom: 20%; left: -20%;
      width: 140%; height: 300px;
      background: radial-gradient(ellipse at center, rgba(212, 184, 150, 0.03) 0%, transparent 70%);
      transform: rotate(-5deg);
      pointer-events: none;
      z-index: 2;
      animation: drift-horizontal 20s ease-in-out infinite;
    }

    @keyframes ambientSlowPulse {
      0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
      100% { transform: scale(1.1) translate(40px, 30px); opacity: 1; }
    }

    @keyframes floatSlowRight {
      0% { transform: translate(0, 0); }
      100% { transform: translate(-80px, -40px); }
    }

    @keyframes slow-rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes drift-horizontal {
      0% { transform: translateX(-10%) translateY(0); opacity: 0.3; }
      50% { transform: translateX(10%) translateY(2%); opacity: 0.7; }
      100% { transform: translateX(-10%) translateY(0); opacity: 0.3; }
    }

    /* Shimmer Button Effect */
    .btn-shimmer {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 9999px;
      padding: 1px;
      text-decoration: none;
      background: transparent;
      outline: none;
    }
    .btn-shimmer::before {
      content: '';
      position: absolute;
      inset: -1000%;
      background: conic-gradient(from 0deg, transparent 0, transparent 340deg, var(--color-accent) 360deg);
      animation: spin-shimmer 2.5s linear infinite;
    }
    .btn-shimmer__inner {
      position: relative;
      z-index: 10;
      display: flex;
      height: 100%;
      width: 100%;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      background: rgba(30, 20, 15, 0.85); /* Glass base */
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: var(--space-4) var(--space-8);
      border: 1px solid rgba(212, 184, 150, 0.1);
      color: #fff;
      font-size: var(--text-md);
      font-weight: 500;
      overflow: hidden;
      transition: all 0.4s ease;
    }
    .btn-shimmer__flash {
      position: absolute;
      top: 0; left: 0;
      height: 100%; width: 100%;
      background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.3), transparent);
      transform: translateX(-100%) skewX(-15deg);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .btn-shimmer:hover .btn-shimmer__flash {
      opacity: 1;
      animation: shimmer-flash 1.5s infinite;
    }
    .btn-shimmer:hover .btn-shimmer__inner {
      background: rgba(45, 30, 20, 0.95);
      border-color: rgba(212, 184, 150, 0.4);
      transform: scale(1.02);
    }
    @keyframes spin-shimmer {
      100% { transform: rotate(360deg); }
    }
    @keyframes shimmer-flash {
      0% { transform: translateX(-100%) skewX(-15deg); }
      100% { transform: translateX(200%) skewX(-15deg); }
    }

    /* Transition Zone Divider */
    .transition-zone {
      position: relative;
      height: 2px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 20;
      background: transparent;
    }
    .transition-beam {
      position: absolute;
      width: 60%;
      height: 1px;
      background: radial-gradient(ellipse at center, var(--color-accent) 0%, transparent 80%);
      animation: pulsateBeam 3s ease-in-out infinite alternate;
      box-shadow: 0 0 20px 2px rgba(212, 184, 150, 0.4);
      opacity: 0.7;
    }
    .transition-star {
      background: var(--color-bg-dark);
      padding: var(--space-2) var(--space-4);
      color: var(--color-accent);
      font-size: 1.2rem;
      z-index: 2;
      border-radius: 50%;
      border: 1px solid rgba(212, 184, 150, 0.1);
      box-shadow: inset 0 0 20px rgba(212, 184, 150, 0.05);
    }
    @keyframes pulsateBeam {
      0% { transform: scaleX(0.8); opacity: 0.4; }
      100% { transform: scaleX(1.1); opacity: 0.9; }
    }

    /* Flashlight Card Effect */
    .flashlight-card {
      position: relative;
      overflow: hidden;
    }
    .flashlight-card::before {
      content: "";
      position: absolute;
      inset: 0px;
      /* Using fallback of -500px so it's hidden if JS hasn't run */
      background: radial-gradient(
        400px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
        rgba(212, 184, 150, 0.08),
        transparent 40%
      );
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
      z-index: 10;
    }
    .flashlight-card:hover::before { opacity: 1; }

    /* ═══════════════════════════════════════════════════════
       19. SEÇÃO: ABORDAGEM
    ═══════════════════════════════════════════════════════ */
    #abordagem {
      position: relative;
      overflow: hidden;
      background: var(--color-bg-dark);
    }
    
    /* Modern Mesh/Grid Background */
    .abordagem-bg-grid {
      position: absolute;
      inset: -50%;
      background-image: 
        linear-gradient(rgba(212, 184, 150, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 184, 150, 0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      background-position: center top;
      transform: perspective(1000px) rotateX(60deg) translateY(-100px) translateZ(-200px);
      animation: grid-move 20s linear infinite;
      pointer-events: none;
      z-index: 1;
      mask-image: linear-gradient(to top, transparent, black 40%, black 60%, transparent);
      -webkit-mask-image: linear-gradient(to top, transparent, black 40%, black 60%, transparent);
    }
    
    .abordagem-glow {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 1000px; height: 1000px;
      background: radial-gradient(circle, rgba(212, 184, 150, 0.04) 0%, transparent 60%);
      pointer-events: none;
      z-index: 1;
      filter: blur(80px);
    }

    @keyframes grid-move {
      0% { background-position: center 0; }
      100% { background-position: center 80px; }
    }

    /* Text Slide Up Animation (Gemini Style) */
    @keyframes textSlide {
      0% { transform: translateY(110%); opacity: 0; filter: blur(5px); }
      100% { transform: translateY(0); opacity: 1; filter: blur(0px); }
    }
    .text-clip-anim {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.25em;
      overflow: hidden;
      padding-bottom: 0.1em;
    }
    .text-clip-anim span {
      display: inline-block;
      opacity: 0;
      transform: translateY(110%);
    }
    .in-view.text-clip-anim span,
    .in-view .text-clip-anim span {
      animation: textSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .approach-intro {
      max-width: 800px;
      margin: 0 auto var(--space-16);
      text-align: center;
    }

    .approach-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-6);
      margin-bottom: var(--space-12);
    }

    .approach-closing {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .approach-closing p {
      font-family: var(--font-serif);
      font-size: var(--text-xl);
      font-style: italic;
      color: var(--color-text-secondary);
      margin-bottom: var(--space-8);
    }

    /* ═══════════════════════════════════════════════════════
       20. SEÇÃO: SESSÕES (BENTO GRID - VIBE DESIGN)
    ═══════════════════════════════════════════════════════ */
    .sessoes-bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: minmax(200px, auto);
      gap: var(--space-6);
      position: relative;
      z-index: 5;
      padding-top: var(--space-10);
    }

    .sessoes-card-duracao {
      grid-column: span 5;
    }
    
    .sessoes-card-encontro {
      grid-column: span 7;
    }

    .sessoes-card-modalidade {
      grid-column: span 4;
      grid-row: span 2;
    }

    .sessoes-card-espaco {
      grid-column: span 8;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(135deg, rgba(180, 164, 151, 0.05) 0%, transparent 100%);
    }

    .sessoes-card-quote {
      grid-column: span 8;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      border: 1px solid var(--color-border-dark);
      background: radial-gradient(circle at top right, rgba(212, 184, 150, 0.06), transparent 60%), rgba(30, 18, 11, 0.4);
      padding: var(--space-8);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }
    
    .sessoes-quote-beam {
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(212, 184, 150, 0.08), transparent);
      transform: skewX(-20deg);
      animation: sessoesBeam 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
      pointer-events: none;
    }

    @keyframes sessoesBeam {
      0% { left: -100%; }
      40%, 100% { left: 200%; }
    }

    .sessoes-glow-bg {
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1000px;
      height: 60vh;
      background: radial-gradient(ellipse at center, rgba(212, 184, 150, 0.05) 0%, transparent 60%);
      pointer-events: none;
      z-index: 1;
      filter: blur(40px);
      animation: subtlePulse 8s ease-in-out infinite;
    }

    .sessoes-bg-stripes {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(212, 184, 150, 0.015) 60px,
        rgba(212, 184, 150, 0.015) 61px
      );
      pointer-events: none;
      z-index: 1;
    }

    /* ═══════════════════════════════════════════════════════
       TRANSITION EFFECTS SESSÕES -> FAQ
    ═══════════════════════════════════════════════════════ */
    .transition-wrapper {
      position: relative;
      width: 100%;
      height: 120px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: -60px;
      margin-bottom: -60px;
      z-index: 10;
    }
    
    .transition-line {
      width: 90%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.15), transparent);
      position: relative;
    }
    
    .transition-beam {
      position: absolute;
      top: -1px;
      left: 0;
      width: 300px;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.8), transparent);
      filter: blur(2px);
      animation: transitionBeamAnim 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    
    @keyframes transitionBeamAnim {
      0% { left: -30%; opacity: 0; }
      15% { opacity: 1; }
      85% { opacity: 1; }
      100% { left: 120%; opacity: 0; }
    }

    @media (max-width: 900px) {
      .sessoes-card-duracao,
      .sessoes-card-encontro,
      .sessoes-card-modalidade,
      .sessoes-card-espaco,
      .sessoes-card-quote {
        grid-column: span 12;
        grid-row: auto;
      }
    }

    /* ═══════════════════════════════════════════════════════
       21. SEÇÃO: FAQ
    ═══════════════════════════════════════════════════════ */
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: var(--space-16);
      align-items: start;
    }

    .faq-sidebar {
      position: sticky;
      top: 100px;
    }

    .faq-sidebar p {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.75;
      margin-top: var(--space-5);
    }

    /* ═══════════════════════════════════════════════════════
       22. SEÇÃO: CTA CONTACT
    ═══════════════════════════════════════════════════════ */
    .cta-section {
      text-align: center;
      padding: var(--space-32) 0;
    }

    .cta-card {
      max-width: 700px;
      margin: 0 auto;
      border-radius: var(--radius-2xl);
      border: 1px solid var(--color-border-light);
      padding: var(--space-16) var(--space-12);
      background: rgba(30, 18, 11, 0.5);
      position: relative;
      overflow: hidden;
    }

    .cta-card__ambient {
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 120%;
      background: radial-gradient(ellipse at center, rgba(212, 184, 150, 0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-card h2 {
      font-size: clamp(1.8rem, 4vw, var(--text-4xl));
      margin-bottom: var(--space-5);
      position: relative;
    }

    .cta-card p {
      color: var(--color-text-muted);
      font-size: var(--text-md);
      line-height: 1.7;
      max-width: 480px;
      margin: 0 auto var(--space-10);
      position: relative;
    }

    .cta-card__actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: var(--space-4);
      flex-wrap: wrap;
      position: relative;
    }

    /* ═══════════════════════════════════════════════════════
       23. FOOTER
    ═══════════════════════════════════════════════════════ */
    footer {
      padding: var(--space-16) 0 var(--space-8);
      border-top: 1px solid var(--color-border-dark);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: var(--space-12);
      margin-bottom: var(--space-12);
    }

    .footer-logo {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: var(--weight-light);
      color: var(--color-text-primary);
      letter-spacing: 0.04em;
      margin-bottom: var(--space-4);
    }

    .footer-logo span {
      display: block;
      font-size: var(--text-xs);
      font-family: var(--font-sans);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-text-subtle);
      margin-top: 4px;
    }

    .footer-tagline {
      font-size: var(--text-sm);
      color: var(--color-text-subtle);
      line-height: 1.7;
      max-width: 240px;
    }

    .footer-col-title {
      font-family: var(--font-sans);
      font-size: var(--text-xs);
      font-weight: var(--weight-medium);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-text-subtle);
      margin-bottom: var(--space-5);
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }

    .footer-links a {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      transition: color var(--transition-fast);
    }

    .footer-links a:hover {
      color: var(--color-accent);
    }

    .footer-social {
      display: flex;
      gap: var(--space-4);
      margin-top: var(--space-5);
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--color-border-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-muted);
      transition: all var(--transition-normal);
      font-size: 14px;
    }

    .footer-social a:hover {
      border-color: var(--color-border-accent);
      color: var(--color-accent);
      transform: translateY(-2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: var(--space-8);
      border-top: 1px solid var(--color-border-dark);
      font-size: var(--text-xs);
      color: var(--color-text-subtle);
    }

    /* ═══════════════════════════════════════════════════════
       24. MOBILE NAV DRAWER
    ═══════════════════════════════════════════════════════ */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: rgba(30, 18, 11, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: calc(var(--z-nav) + 10);
      padding: var(--space-8) var(--space-8);
      display: flex;
      flex-direction: column;
      gap: var(--space-6);
      transition: right var(--transition-slow);
      border-left: 1px solid var(--color-border-dark);
    }

    .mobile-nav.open {
      right: 0;
    }

    .mobile-nav__close {
      align-self: flex-end;
      background: none;
      border: none;
      color: var(--color-text-muted);
      font-size: 20px;
      cursor: pointer;
      padding: var(--space-2);
      transition: color var(--transition-fast);
    }

    .mobile-nav__close:hover {
      color: var(--color-text-primary);
    }

    .mobile-nav__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
    }

    .mobile-nav__links a {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: var(--weight-light);
      color: var(--color-text-primary);
      transition: color var(--transition-fast);
    }

    .mobile-nav__links a:hover {
      color: var(--color-accent);
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: calc(var(--z-nav) + 9);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-normal);
    }

    .mobile-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    /* ═══════════════════════════════════════════════════════
       25. RESPONSIVIDADE
    ═══════════════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .nav__links {
        display: none;
      }

      .nav__cta {
        display: none;
      }

      .nav__hamburger {
        display: flex;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
      }

      .about-photo {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
      }

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

      .sessions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
      }

      .sessions-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 16/9;
      }

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

      .faq-sidebar {
        position: relative;
        top: auto;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }

      .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
      }

      .cta-card {
        padding: var(--space-12) var(--space-8);
      }
    }

    @media (max-width: 600px) {
      .hero__title {
        /* Tamanho reduzido para caber perfeitamente na linha sem quebrar palavras */
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
        line-height: 1.25;
      }
      
      .hero__badge {
        font-size: 0.55rem;
        padding: 4px 10px;
        letter-spacing: 0.08em;
      }

      .btn {
        padding: var(--space-2) var(--space-5);
        font-size: var(--text-sm);
      }

      .btn-lg {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
      }
      
      .btn-shimmer__inner {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-xs);
      }

      /* Melhoria Absoluta de Performance Mobile: desabilita blurs pesados, filtros de vidro e grids que matam as placas de vídeo de celulares */
      .site-bg__glow,
      .site-bg__streak,
      .sobre-orb-1,
      .sobre-orb-2,
      .sobre-interference,
      .sobre-interference-reverse,
      .abordagem-glow,
      .abordagem-bg-grid,
      .sessoes-glow-bg,
      .hero__ambient {
        display: none !important;
        animation: none !important;
      }

      .card, .quote-block, .btn-shimmer__inner, .nav.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: rgba(45, 30, 20, 0.95); /* Cor sólida como fallback de vidro */
      }
      
      .about-photo__frame {
        animation: none !important; /* Animando box shadow em celular trava a página */
        box-shadow: none !important;
        border: 1px solid rgba(212, 184, 150, 0.2);
      }
      
      .transition-beam {
        animation: none !important;
        box-shadow: none !important;
      }

      .section {
        padding: var(--space-20) 0;
      }

      .container {
        padding: 0 var(--space-4);
      }

      .card {
        padding: var(--space-6);
      }

      .cta-card {
        padding: var(--space-10) var(--space-6);
      }
    }
