/* ===================== DESIGN TOKENS ===================== */
  :root {
    --gold-100: #f8e6a8;
    --gold-200: #e9c870;
    --gold-300: #d4af37;
    --gold-400: #b8902c;
    --gold-500: #8c6a1e;
    --gold-deep: #5a4112;
    --gold-shimmer: linear-gradient(135deg,
      #f8e6a8 0%, #e9c870 20%, #d4af37 40%,
      #fff5cc 50%, #d4af37 60%, #b8902c 80%, #8c6a1e 100%);
    --black-pure: #000;
    --black-rich: #0a0a0a;
    --black-soft: #141414;
    --black-elev: #1c1c1c;
    --ink: #f4ecd8;
    --ink-dim: #b8a878;
    --ink-mute: #6b6253;
    --grad-gold: linear-gradient(135deg, #f8e6a8 0%, #d4af37 35%, #8c6a1e 70%, #d4af37 100%);
    --grad-bg: radial-gradient(ellipse at top, #1a1305 0%, #0a0a0a 50%, #000 100%);
    --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.5);
    --shadow-deep: 0 30px 80px -15px rgba(0, 0, 0, 0.95);
    --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-power: cubic-bezier(0.65, 0, 0.35, 1);

    --display: 'Cinzel', 'Cormorant Garamond', serif;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', system-ui, sans-serif;
  }

  /* ===================== RESET ===================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--black-pure);
  }
  body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--black-rich);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  body.locked { overflow: hidden; }
  img { max-width: 100%; display: block; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
  ::selection { background: var(--gold-300); color: var(--black-pure); }

  /* ===================== LOADER ===================== */
  .loader {
    position: fixed; inset: 0; z-index: 999;
    background: var(--black-pure);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 1s var(--ease-luxe), visibility 1s;
  }
  .loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader-mark {
    width: 80px; height: 80px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold-300);
    border-radius: 50%;
    animation: spin 1.4s linear infinite;
    margin-bottom: 24px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .loader-text {
    font-family: var(--display);
    letter-spacing: 0.4em;
    font-size: 12px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

  /* ===================== CUSTOM CURSOR (desktop) ===================== */
  .cursor, .cursor-trail {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: difference;
  }
  .cursor {
    width: 8px; height: 8px;
    background: var(--gold-200);
    border-radius: 50%;
    transition: width 0.3s var(--ease-luxe), height 0.3s var(--ease-luxe);
  }
  .cursor-trail {
    width: 36px; height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    transition: width 0.4s var(--ease-luxe), height 0.4s var(--ease-luxe), border-color 0.4s;
  }
  .cursor.grow { width: 14px; height: 14px; }
  .cursor-trail.grow { width: 64px; height: 64px; border-color: var(--gold-300); }
  @media (hover: none), (max-width: 980px) {
    .cursor, .cursor-trail { display: none; }
  }

  /* ===================== ATMOSFERA ===================== */
  .atm-3d {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .atm-3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
  }
  .stardust {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    background:
      radial-gradient(2px 2px at 12% 18%, rgba(248,230,168,0.6), transparent 50%),
      radial-gradient(1.5px 1.5px at 78% 32%, rgba(248,230,168,0.5), transparent 50%),
      radial-gradient(1px 1px at 25% 65%, rgba(212,175,55,0.5), transparent 50%),
      radial-gradient(2px 2px at 88% 78%, rgba(248,230,168,0.55), transparent 50%),
      radial-gradient(1.5px 1.5px at 45% 88%, rgba(212,175,55,0.45), transparent 50%),
      radial-gradient(1px 1px at 60% 22%, rgba(248,230,168,0.5), transparent 50%),
      radial-gradient(1.5px 1.5px at 8% 50%, rgba(212,175,55,0.4), transparent 50%);
    background-size: 100% 100%;
    animation: twinkle 6s ease-in-out infinite alternate;
  }
  @keyframes twinkle {
    0%,100% { opacity: 0.3; }
    50% { opacity: 0.9; }
  }
  .grain {
    position: fixed; inset: -50%; pointer-events: none; z-index: 2; opacity: 0.04;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
  }
  .vignette {
    position: fixed; inset: 0; pointer-events: none; z-index: 3;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5));
  }

  /* ===================== NAV ===================== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 5vw;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-luxe);
    transform: translateY(0);
  }
  .nav.scrolled {
    background: rgba(10, 10, 10, 0.88);
    border-bottom-color: rgba(212, 175, 55, 0.18);
    padding: 10px 5vw;
  }
  .nav.hidden { transform: translateY(-100%); }
  .nav-brand {
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 14px;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .nav-cta {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-200);
    padding: 9px 18px;
    border: 1px solid var(--gold-400);
    border-radius: 100px;
    transition: all 0.3s var(--ease-luxe);
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .nav-cta svg {
    width: 14px; height: 14px;
    position: relative; z-index: 1;
  }
  .nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-gold); transform: translateX(-101%);
    transition: transform 0.5s var(--ease-luxe);
  }
  .nav-cta:hover::before { transform: translateX(0); }
  .nav-cta:hover { color: var(--black-pure); border-color: var(--gold-200); }
  .nav-cta span { position: relative; z-index: 1; }

  /* ===================== HERO ===================== */
  .hero {
    position: relative;
    min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 6vw 80px;
    z-index: 5;
    overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.18), transparent 55%);
    pointer-events: none;
  }
  .hero-content {
    position: relative;
    z-index: 6;
    max-width: 880px;
    will-change: transform, opacity;
  }
  .hero-logo {
    width: min(260px, 56vw);
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 50px rgba(212,175,55,0.6));
    transform-style: preserve-3d;
    will-change: transform;
  }
  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: ''; width: 18px; height: 1px;
    background: var(--gold-400);
  }
  .hero h1 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(2.2rem, 7.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
  }
  .hero h1 .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: baseline;
  }
  .hero h1 .word > span {
    display: inline-block;
    will-change: transform;
  }
  .hero h1 .accent {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 600;
    animation: shimmer 4s linear infinite;
  }
  @keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  .hero-sub {
    font-family: var(--serif);
    font-size: clamp(1rem, 2.4vw, 1.4rem);
    font-style: italic;
    color: var(--ink-dim);
    max-width: 600px;
    margin: 0 auto 36px;
  }

  /* ===================== MAGNETIC CTA BUTTON ===================== */
  .magnetic-wrap {
    display: inline-block;
    position: relative;
    will-change: transform;
  }
  .btn-luxe {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 17px 34px;
    background: var(--grad-gold);
    color: var(--black-pure);
    font-family: var(--sans);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    border-radius: 100px;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: transform 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe);
    position: relative;
    will-change: transform;
    cursor: pointer;
  }
  .btn-luxe::after {
    content: ''; position: absolute; inset: -2px;
    border-radius: 100px;
    background: var(--grad-gold);
    z-index: -1; filter: blur(14px); opacity: 0.7;
    transition: opacity 0.4s var(--ease-luxe);
  }
  .btn-luxe:hover { transform: translateY(-2px); box-shadow: 0 14px 50px -8px rgba(212, 175, 55, 0.65); }
  .btn-luxe:hover::after { opacity: 1; }
  .btn-luxe svg { width: 16px; height: 16px; }
  .btn-luxe-shine {
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s var(--ease-luxe);
    pointer-events: none;
  }
  .btn-luxe:hover .btn-luxe-shine { left: 200%; }

  .hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: var(--gold-300); font-size: 11px;
    letter-spacing: 0.4em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    opacity: 0.7;
    z-index: 6;
  }
  .hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--gold-300), transparent);
    animation: scrollLine 2.2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ===================== SECTION FRAME ===================== */
  section { position: relative; z-index: 5; }
  .section {
    padding: 80px 6vw;
    max-width: 1280px; margin: 0 auto;
  }
  .section-eyebrow {
    font-family: var(--sans);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--gold-300);
    text-align: center; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; width: 36px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400));
  }
  .section-eyebrow::after {
    background: linear-gradient(90deg, var(--gold-400), transparent);
  }
  .section-title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.8rem, 5.2vw, 3rem);
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .section-title .accent {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    animation: shimmer 5s linear infinite;
  }
  .section-lede {
    font-family: var(--serif);
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-style: italic;
    color: var(--ink-dim);
    text-align: center;
    max-width: 660px;
    margin: 0 auto 50px;
  }

  /* ===================== ABOUT ===================== */
  .about {
    background: linear-gradient(180deg, var(--black-rich) 0%, var(--black-soft) 100%);
    border-block: 1px solid rgba(212, 175, 55, 0.12);
  }
  .about-card {
    max-width: 780px; margin: 0 auto;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 4px;
    background:
      linear-gradient(135deg, rgba(212,175,55,0.05), transparent),
      var(--black-soft);
    position: relative;
    will-change: transform;
  }
  .about-card::before, .about-card::after {
    content: ''; position: absolute; width: 26px; height: 26px;
    border: 1px solid var(--gold-300);
  }
  .about-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
  .about-card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
  .about-card p {
    font-family: var(--serif);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.7;
    color: var(--ink);
  }
  .about-card .quote-mark {
    font-family: var(--display);
    font-size: 64px;
    color: var(--gold-300);
    line-height: 0.5;
    display: block;
    margin-bottom: 8px;
    opacity: 0.6;
  }

  .about-card p strong {
    color: var(--gold-200);
    font-style: normal;
    font-weight: 600;
  }
  .about-card p em {
    color: var(--gold-300);
    font-style: italic;
    letter-spacing: 0.04em;
  }

  /* ===================== TRUST BADGES ===================== */
  .trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    max-width: 880px;
    margin: 36px auto 0;
  }
  .trust-badge {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    padding: 22px 14px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    background: linear-gradient(160deg, rgba(212,175,55,0.04), transparent), var(--black-soft);
    text-align: center;
    transition: border-color 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe), box-shadow 0.4s var(--ease-luxe);
  }
  .trust-badge:hover {
    border-color: var(--gold-300);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
  }
  .trust-badge svg {
    width: 28px; height: 28px;
    color: var(--gold-300);
    filter: drop-shadow(0 2px 8px rgba(212,175,55,0.4));
  }
  .trust-badge span {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
    line-height: 1.4;
  }

  /* ===================== STATS ===================== */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 56px auto 0;
    max-width: 780px;
  }
  .stat {
    text-align: center;
    padding: 22px 10px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }
  .stat:first-child { border-left: 0; }
  .stat-num {
    font-family: var(--display);
    font-size: clamp(1.9rem, 5.2vw, 2.6rem);
    font-weight: 600;
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
    animation: shimmer 6s linear infinite;
  }
  .stat-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dim);
    line-height: 1.4;
  }

  /* ===================== INSTAGRAM SECTION ===================== */
  .ig-section {
    background:
      radial-gradient(ellipse at 30% 40%, rgba(225, 48, 108, 0.1), transparent 50%),
      radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.08), transparent 50%),
      linear-gradient(180deg, var(--black-soft), var(--black-rich));
    border-block: 1px solid rgba(212, 175, 55, 0.14);
    overflow: hidden;
    position: relative;
  }
  .ig-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.15), transparent 60%);
    pointer-events: none;
    animation: igFloat 8s ease-in-out infinite alternate;
  }
  .ig-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 133, 41, 0.12), transparent 60%);
    pointer-events: none;
    animation: igFloat 10s ease-in-out infinite alternate-reverse;
  }
  @keyframes igFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, -40px); }
  }

  .ig-section-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .ig-content {
    text-align: left;
  }
  .ig-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    margin-bottom: 22px;
    background: rgba(0,0,0,0.3);
  }
  .ig-eyebrow svg { width: 16px; height: 16px; color: var(--gold-300); }
  .ig-eyebrow span {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-200);
  }
  .ig-title {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.85rem, 4.5vw, 2.85rem);
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    color: var(--ink);
  }
  .ig-title .accent {
    background: linear-gradient(135deg, #f8e6a8 0%, #f58529 25%, #dd2a7b 50%, #8134af 75%, #515bd4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 600;
    animation: igShimmer 5s linear infinite;
  }
  @keyframes igShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  .ig-sub {
    font-family: var(--serif);
    font-size: clamp(1.18rem, 2.2vw, 1.38rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--ink-dim);
    margin-bottom: 22px;
    max-width: 520px;
  }
  .ig-handle {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 28px;
    letter-spacing: 0.04em;
  }
  .btn-ig {
    background: linear-gradient(135deg, #f8e6a8 0%, #f58529 30%, #dd2a7b 60%, #8134af 100%);
    box-shadow: 0 10px 40px -10px rgba(221, 42, 123, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
    color: #fff;
  }
  .btn-ig::after {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  }
  .btn-ig:hover {
    box-shadow: 0 14px 50px -8px rgba(221, 42, 123, 0.7), inset 0 1px 0 rgba(255,255,255,0.5);
  }
  .btn-ig svg { color: #fff; }

  /* IG MOCKUP — phone */
  .ig-mockup {
    display: flex;
    justify-content: center;
    perspective: 1200px;
  }
  .ig-phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
    border-radius: 36px;
    padding: 12px;
    position: relative;
    box-shadow:
      0 30px 80px rgba(0,0,0,0.7),
      0 0 60px rgba(221, 42, 123, 0.2),
      0 0 0 2px rgba(212, 175, 55, 0.2),
      inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-12deg) rotateX(4deg);
    animation: phoneFloat 6s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes phoneFloat {
    0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-10deg) rotateX(2deg) translateY(-10px); }
  }
  .ig-phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #000;
    border-radius: 12px;
    z-index: 3;
  }
  .ig-phone-screen {
    width: 100%; height: 100%;
    background: #000;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    display: flex; flex-direction: column;
  }
  .ig-phone-header {
    display: flex; align-items: center;
    gap: 10px;
    padding: 38px 14px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .ig-phone-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background:
      linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    padding: 2px;
    position: relative;
  }
  .ig-phone-avatar::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background:
      url('assets/images/logo-essencia-nobre.jpg') center/cover,
      #000;
    border: 2px solid #000;
  }
  .ig-phone-handle {
    flex: 1;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }
  .ig-phone-dots {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .ig-phone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 2px;
  }
  .ig-tile {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--black-elev);
    transition: transform 0.4s var(--ease-luxe);
  }
  .ig-tile:hover {
    transform: scale(0.95);
    z-index: 2;
  }

  /* ===================== GUIDE / DECANTS ===================== */
  .guide {
    background:
      radial-gradient(ellipse at 20% 10%, rgba(212,175,55,0.1), transparent 50%),
      radial-gradient(ellipse at 80% 90%, rgba(212,175,55,0.08), transparent 50%),
      linear-gradient(180deg, var(--black-rich), var(--black-pure));
    border-block: 1px solid rgba(212, 175, 55, 0.14);
    overflow: hidden;
  }
  .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 40px;
  }
  .step {
    position: relative;
    padding: 32px 24px 26px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 4px;
    background:
      linear-gradient(160deg, rgba(212,175,55,0.06) 0%, transparent 50%),
      var(--black-soft);
    transition: border-color 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe);
    will-change: transform;
    transform-style: preserve-3d;
  }
  .step:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-gold), inset 0 0 30px rgba(212, 175, 55, 0.05);
  }
  .step::before, .step::after {
    content: ''; position: absolute; width: 18px; height: 18px;
    border: 1px solid var(--gold-300);
    opacity: 0.6;
  }
  .step::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
  .step::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
  .step-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    background: var(--grad-gold);
    color: var(--black-pure);
    margin-bottom: 20px;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
    position: relative;
  }
  .step-num::after {
    content: ''; position: absolute; inset: -6px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
  }
  .step-icon-wrap {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .step-icon-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
  }
  @keyframes glow {
    0%,100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
  }
  .step-icon-wrap svg {
    width: 56px; height: 56px;
    position: relative; z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
  }
  .step h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.55rem;
    letter-spacing: 0.06em;
    color: var(--gold-200);
    margin-bottom: 12px;
    text-align: center;
  }
  .step p {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink-dim);
    text-align: center;
  }

  .guide-comparison {
    margin-top: 40px;
    padding: 36px 28px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 4px;
    background:
      radial-gradient(circle at 50% 50%, rgba(212,175,55,0.04), transparent 70%),
      var(--black-soft);
    text-align: center;
    position: relative;
  }
  .guide-comparison-title {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 28px;
  }
  .guide-comparison-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .bottle-display {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .bottles-row {
    display: flex; gap: 4px; align-items: flex-end;
  }
  .bottle-label {
    font-family: var(--display);
    font-size: 1.55rem;
    color: var(--gold-200);
    letter-spacing: 0.08em;
  }
  .bottle-label small {
    display: block;
    font-family: var(--sans);
    font-size: 16px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-top: 4px;
  }
  .equals {
    font-family: var(--display);
    font-size: 36px;
    color: var(--gold-300);
    font-weight: 300;
  }
  .guide-comparison-caption {
    font-family: var(--serif);
    font-style: italic;
    color: var(--ink-dim);
    font-size: 1.55rem;
    margin-top: 10px;
  }

  .guide-pullquote {
    margin: 50px auto 0;
    max-width: 760px;
    padding: 36px 28px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
  }
  .guide-pullquote q {
    quotes: '“' '”';
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: 0.03em;
  }
  .guide-pullquote q::before, .guide-pullquote q::after {
    color: var(--gold-300);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.2em;
    margin: 0 4px;
  }

  .guide-infographic-trigger {
    display: block;
    max-width: 1000px;
    margin: 50px auto 0;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 6px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    transition: all 0.5s var(--ease-luxe);
    will-change: transform;
  }
  .guide-infographic-trigger:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
  }
  .guide-infographic-trigger img { display: block; width: 100%; height: auto; }
  .guide-infographic-trigger::after {
    content: '⤢ Toque para ampliar';
    position: absolute;
    bottom: 16px; right: 16px;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(8px);
    color: var(--gold-200);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.3);
  }

  /* Lightbox */
  .lightbox {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
    cursor: zoom-out;
    backdrop-filter: blur(8px);
  }
  .lightbox.open {
    display: flex;
    animation: fadeIn 0.4s var(--ease-luxe);
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .lightbox img {
    max-width: 100%; max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
  }
  .lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--gold-400);
    color: var(--gold-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 201;
    transition: all 0.3s var(--ease-luxe);
  }
  .lightbox-close:hover {
    background: var(--grad-gold);
    color: var(--black-pure);
  }

  /* ===================== CARROSSEL ===================== */
  .carousel {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    perspective: 1400px;
  }
  .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px 4px 32px;
    scrollbar-width: none;
    cursor: grab;
  }
  .carousel-track:active { cursor: grabbing; }
  .carousel-track::-webkit-scrollbar { display: none; }

  .carousel-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 4px;
    background: var(--black-soft);
    aspect-ratio: 4 / 5;
    transition: border-color 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe), transform 0.6s var(--ease-luxe);
    text-decoration: none;
    color: inherit;
    will-change: transform;
    transform-style: preserve-3d;
  }
  .carousel-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.94) 100%);
    z-index: 2; pointer-events: none;
  }
  .carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-luxe), filter 0.6s;
    pointer-events: none; user-select: none; -webkit-user-drag: none;
  }
  .carousel-slide:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-gold), 0 0 60px rgba(212, 175, 55, 0.2);
  }
  .carousel-slide:hover img { transform: scale(1.07); filter: brightness(1.05); }

  .slide-info {
    position: absolute; left: 0; right: 0; bottom: 0;
    z-index: 3;
    padding: 20px 18px 18px;
    text-align: center;
  }
  .slide-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    letter-spacing: 0.18em;
    color: var(--gold-200);
    margin-bottom: 4px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.8);
  }
  .slide-tag {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-dim);
  }
  .slide-cta {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-300);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease-luxe), transform 0.5s var(--ease-luxe);
  }
  .carousel-slide:hover .slide-cta { opacity: 1; transform: translateY(0); }

  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    color: var(--gold-200);
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    transition: all 0.3s var(--ease-luxe);
    cursor: pointer;
  }
  .carousel-arrow:hover {
    background: var(--grad-gold);
    color: var(--black-pure);
    box-shadow: var(--shadow-gold);
    transform: translateY(-50%) scale(1.08);
  }
  .carousel-arrow svg { width: 18px; height: 18px; }
  .carousel-prev { left: -24px; }
  .carousel-next { right: -24px; }
  .carousel-arrow[disabled] { opacity: 0.25; cursor: default; pointer-events: none; }

  .carousel-dots {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 22px;
  }
  .carousel-dot {
    width: 26px; height: 3px;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxe);
    border: 0; padding: 0;
  }
  .carousel-dot.active {
    background: var(--grad-gold);
    width: 42px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  }

  /* ===================== FEATURES ===================== */
  .features {
    background: var(--black-soft);
    border-block: 1px solid rgba(212, 175, 55, 0.12);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 40px;
  }
  .feature {
    text-align: center;
    padding: 32px 22px;
    will-change: transform;
    transform-style: preserve-3d;
  }
  .feature-icon-wrap {
    width: 84px; height: 84px;
    margin: 0 auto 22px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .feature-icon-wrap::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
    animation: glow 3.5s ease-in-out infinite;
  }
  .feature-icon-wrap::after {
    content: ''; position: absolute; inset: 8px;
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    opacity: 0.5;
  }
  .feature-icon-wrap svg {
    width: 50px; height: 50px;
    position: relative; z-index: 2;
    filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.55));
  }
  .feature h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .feature p {
    font-family: var(--serif);
    font-size: 1.26rem;
    font-style: italic;
    color: var(--ink-dim);
    line-height: 1.55;
  }

  /* ===================== TESTIMONIALS ===================== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .testimonial {
    padding: 30px 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    background:
      linear-gradient(135deg, rgba(212,175,55,0.05), transparent 60%),
      var(--black-soft);
    position: relative;
    transition: border-color 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe);
    will-change: transform;
  }
  .testimonial:hover {
    border-color: var(--gold-300);
    transform: translateY(-6px);
  }
  .testimonial-stars {
    color: var(--gold-300);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    font-size: 16px;
  }
  .testimonial-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 600;
    color: var(--black-pure);
    font-size: 16px;
    box-shadow: 0 0 16px rgba(212,175,55,0.4);
  }
  .testimonial-name {
    font-family: var(--display);
    font-size: 1.26rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold-200);
  }

  /* ===================== FAQ ===================== */
  .faq {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black-rich) 100%);
  }
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }
  .faq-item:first-child { border-top: 1px solid rgba(212, 175, 55, 0.15); }
  .faq-q {
    width: 100%;
    padding: 24px 4px;
    display: flex; justify-content: space-between; align-items: center;
    text-align: left;
    font-family: var(--display);
    font-size: clamp(1.25rem, 2.8vw, 1.5rem);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.03em;
    transition: color 0.3s;
  }
  .faq-q:hover { color: var(--gold-200); }
  .faq-q-icon {
    width: 26px; height: 26px;
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; margin-left: 16px;
    color: var(--gold-300);
    transition: all 0.4s var(--ease-luxe);
  }
  .faq-item.open .faq-q-icon {
    transform: rotate(45deg);
    background: var(--grad-gold);
    color: var(--black-pure);
    border-color: var(--gold-200);
  }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease-luxe);
  }
  .faq-a-inner {
    padding: 0 4px 24px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--ink-dim);
  }
  .faq-item.open .faq-a { max-height: 320px; }

  /* ===================== URGENCY BAR (CONVERSION) ===================== */
  .urgency-bar {
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-300), var(--gold-deep));
    background-size: 200% auto;
    animation: shimmer 8s linear infinite;
    color: var(--black-pure);
    padding: 11px 5vw;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 50;
  }
  .urgency-bar svg {
    width: 14px; height: 14px;
    vertical-align: -2px;
    margin-right: 8px;
  }

  /* ===================== CTA FINAL ===================== */
  .cta-final {
    background:
      radial-gradient(ellipse at center, rgba(212,175,55,0.15), transparent 60%),
      var(--black-rich);
    text-align: center;
    padding: 100px 6vw;
    border-block: 1px solid rgba(212, 175, 55, 0.22);
    position: relative;
    overflow: hidden;
  }
  .cta-final::before, .cta-final::after {
    content: '✦';
    position: absolute;
    color: var(--gold-300);
    opacity: 0.3;
    font-size: 32px;
  }
  .cta-final::before { top: 22%; left: 12%; animation: twinkle 3s infinite; }
  .cta-final::after { bottom: 22%; right: 12%; animation: twinkle 4s infinite; }
  .cta-final h2 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(1.85rem, 5.2vw, 3rem);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    max-width: 760px; margin-inline: auto;
  }
  .cta-final h2 .accent {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    animation: shimmer 4s linear infinite;
  }
  .cta-final p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.6vw, 1.55rem);
    color: var(--ink-dim);
    max-width: 560px;
    margin: 0 auto 36px;
  }

  /* ===================== FOOTER ===================== */
  .footer {
    background: var(--black-pure);
    padding: 60px 6vw 32px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    position: relative; z-index: 5;
  }
  .footer-logo {
    width: 100px; margin: 0 auto 20px;
    filter: drop-shadow(0 0 18px rgba(212,175,55,0.45));
  }
  .footer-tag {
    font-family: var(--display);
    letter-spacing: 0.3em;
    font-size: 15px;
    color: var(--gold-300);
    margin-bottom: 28px;
  }
  .footer-social {
    display: flex; justify-content: center; gap: 16px;
    margin-bottom: 32px;
  }
  .social-btn {
    width: 46px; height: 46px;
    border: 1px solid var(--gold-400);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-200);
    transition: all 0.3s var(--ease-luxe);
  }
  .social-btn:hover {
    background: var(--grad-gold);
    color: var(--black-pure);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
  }
  .social-btn svg { width: 18px; height: 18px; }
  .footer-info {
    font-family: var(--sans);
    font-size: 16px;
    letter-spacing: 0.15em;
    color: var(--ink-mute);
    line-height: 1.8;
  }
  .footer-info strong {
    color: var(--ink-dim);
    font-weight: 500;
  }
  .footer-divider {
    width: 60px; height: 1px;
    background: var(--gold-400);
    margin: 22px auto;
    opacity: 0.4;
  }
  .footer-copyright {
    font-size: 15px;
    color: var(--ink-mute);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  /* ===================== WHATSAPP STICKY ===================== */
  .whats-float {
    position: fixed; bottom: 22px; right: 22px;
    z-index: 99;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: all 0.3s var(--ease-luxe);
    animation: pulseWhats 2.5s infinite;
  }
  .whats-float:hover { transform: scale(1.1); }
  .whats-float svg { width: 32px; height: 32px; color: white; }
  @keyframes pulseWhats {
    0%,100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  }
  .whats-tooltip {
    position: absolute;
    right: calc(100% + 12px); top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    border: 1px solid var(--gold-400);
    color: var(--gold-200);
    padding: 8px 14px;
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 16px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }
  .whats-float:hover .whats-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
  }

  /* ===================== REVEAL ===================== */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe);
    will-change: opacity, transform;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }
  .reveal.delay-4 { transition-delay: 0.4s; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 980px) {
    .carousel-slide { flex-basis: calc((100% - 20px) / 2); }
    .nav-cta { padding: 8px 14px; font-size: 15px; }
    .ig-section-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    .ig-content { text-align: center; }
    .ig-sub { margin-left: auto; margin-right: auto; }
    .ig-mockup { order: -1; }
    .ig-phone {
      transform: rotateY(0) rotateX(0) scale(0.85);
      animation: phoneFloatMobile 6s ease-in-out infinite;
    }
    @keyframes phoneFloatMobile {
      0%, 100% { transform: rotateY(0) rotateX(0) scale(0.85) translateY(0); }
      50% { transform: rotateY(0) rotateX(0) scale(0.85) translateY(-8px); }
    }
  }
  @media (max-width: 720px) {
    .section { padding: 60px 5vw; }
    .stats { gap: 8px; }
    .stat { padding: 16px 6px; }
    .carousel-slide { flex-basis: 80%; }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
    .carousel-arrow { width: 40px; height: 40px; }
    .features-grid { grid-template-columns: 1fr; gap: 18px; }
    .features-grid .feature { padding: 22px 14px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-card { padding: 30px 22px; }
    .cta-final { padding: 70px 5vw; }
    .whats-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
    .whats-tooltip { display: none; }
    .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-badge { padding: 18px 10px; }
    .ig-phone { width: 240px; height: 480px; }
    .ig-section { padding-block: 20px; }

    /* === MOBILE TEXT BOOST === */
    body { font-size: 17px; }
    .nav-brand { font-size: 15px; }
    .nav-cta span { font-size: 13px; }
    .urgency-bar { font-size: 14px; letter-spacing: 0.1em; padding: 10px 4vw; }
    .hero-eyebrow { font-size: 13px; }
    .hero-sub { font-size: 1.2rem; }
    .btn-luxe { font-size: 15px; padding: 18px 32px; }
    .hero-scroll { font-size: 12px; }
    .section-eyebrow { font-size: 13px; }
    .section-lede { font-size: 1.2rem; }
    .about-card p { font-size: 1.25rem; line-height: 1.75; }
    .stat-label { font-size: 12px; }
    .trust-badge span { font-size: 12px; }
    .step h3 { font-size: 1.3rem; }
    .step p { font-size: 1.18rem; line-height: 1.7; }
    .step-num { font-size: 16px; }
    .guide-comparison-title { font-size: 14px; }
    .guide-comparison-caption { font-size: 1.15rem; }
    .bottle-label { font-size: 1.1rem; }
    .bottle-label small { font-size: 12px; }
    .guide-pullquote q { font-size: 1.35rem; }
    .guide-infographic-trigger::after { font-size: 12px; }
    .slide-name { font-size: 1.15rem; }
    .slide-tag { font-size: 12px; }
    .slide-cta { font-size: 13px; }
    .feature h3 { font-size: 1.25rem; }
    .feature p { font-size: 1.15rem; line-height: 1.65; }
    .testimonial-stars { font-size: 18px; }
    .testimonial-text { font-size: 1.18rem; line-height: 1.7; }
    .testimonial-name { font-size: 1.1rem; }
    .faq-q { font-size: 1.2rem; }
    .faq-a-inner { font-size: 1.18rem; line-height: 1.75; }
    .ig-eyebrow span { font-size: 12px; }
    .ig-sub { font-size: 1.15rem; }
    .ig-handle { font-size: 1.4rem; }
    .footer-tag { font-size: 14px; }
    .footer-info { font-size: 14px; }
    .footer-copyright { font-size: 12px; }
    .carousel-dot { width: 30px; height: 4px; }
    .carousel-dot.active { width: 48px; }
  }
  @media (max-width: 380px) {
    .hero-eyebrow { font-size: 12px; letter-spacing: 0.3em; }
    .stat-label { font-size: 11px; }
    .nav-brand { font-size: 13px; letter-spacing: 0.14em; }
    .btn-luxe { font-size: 14px; padding: 16px 26px; }
    .section-eyebrow { font-size: 12px; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .atm-3d { display: none; }
  }