    /* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --cream:       #F5F4F0;
      --off-white:   #EFEDE8;
      --sand:        #E4DDD2;
      --warm-gray:   #C4BEB4;
      --stone:       #8A8680;
      --charcoal:    #333333;
      --soft-black:  #1A1916;

      --green:       #4CAF50;
      --green-dark:  #2E7D32;
      --green-deep:  #1B5E20;
      --green-light: #81C784;
      --green-pale:  #E8F5E9;
      --green-muted: rgba(76,175,80,0.12);
      --green-line:  rgba(76,175,80,0.25);

      --yellow:      #E6C65B;
      --yellow-pale: rgba(230,198,91,0.15);

      --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
      --shadow-md:   0 8px 32px rgba(46,125,50,0.12);
      --shadow-lg:   0 24px 64px rgba(46,125,50,0.16);

      --ease:        cubic-bezier(0.4, 0, 0.2, 1);
      --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--cream);
      color: var(--charcoal);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      cursor: none;
      -webkit-font-smoothing: antialiased;
    }

    /* ============================================================
       CUSTOM CURSOR
    ============================================================ */
    .cursor {
      width: 8px; height: 8px;
      background: var(--green-dark);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transition: transform 0.1s ease, background 0.3s;
    }
    .cursor-ring {
      width: 32px; height: 32px;
      border: 1px solid var(--green);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transition: opacity 0.3s;
    }
    .cursor.hover { transform: scale(2.5); background: var(--green); }
    .cursor-ring.hover { opacity: 0.4; }

    /* ============================================================
       NAV
    ============================================================ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 24px 60px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(245,244,240,0.94);
      backdrop-filter: blur(16px);
      padding: 16px 60px;
      box-shadow: 0 1px 0 var(--sand);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 300;
      letter-spacing: 0.32em;
      color: var(--soft-black);
      text-decoration: none;
    }
    .nav-logo span { color: var(--green); }
    .nav-links {
      display: flex; gap: 40px; list-style: none; align-items: center;
    }
    .nav-links a {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      transition: color 0.3s;
      cursor: none;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-cta {
      font-size: 0.65rem !important;
      letter-spacing: 0.22em !important;
      text-transform: uppercase;
      background: var(--green);
      color: white !important;
      padding: 10px 22px;
      border-radius: 4px;
      transition: background 0.3s, transform 0.2s !important;
      cursor: none;
    }
    .nav-cta:hover { background: var(--green-dark) !important; color: white !important; transform: translateY(-1px); }

    /* Mobile hamburger */
    .hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      background: none; border: none; cursor: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--charcoal); border-radius: 2px; transition: all 0.3s;
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative; overflow: hidden;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 0 60px 80px;
      position: relative; z-index: 2;
    }
    .hero-eyebrow {
      font-size: 0.62rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 28px;
      display: flex; align-items: center; gap: 16px;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-eyebrow::before {
      content: ''; width: 28px; height: 1px; background: var(--green);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 5.8rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--soft-black);
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 1s 0.5s forwards;
    }
    .hero-title em { font-style: italic; color: var(--green-dark); }
    .hero-sub {
      font-size: 0.85rem;
      line-height: 1.9;
      color: var(--stone);
      max-width: 340px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 1s 0.7s forwards;
    }
    .hero-actions {
      display: flex; gap: 20px; align-items: center;
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--soft-black);
      text-decoration: none;
      border-bottom: 1px solid var(--green);
      padding-bottom: 6px;
      transition: gap 0.3s, color 0.3s;
      cursor: none;
    }
    .btn-ghost:hover { gap: 20px; color: var(--green); }
    .btn-ghost::after { content: '→'; font-size: 1rem; }
    .btn-green {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: white;
      background: var(--green);
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 4px;
      box-shadow: 0 4px 18px rgba(76,175,80,0.3);
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
      cursor: none;
    }
    .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,125,50,0.35); }

    .hero-right { position: relative; overflow: hidden; }
    .hero-img-wrap {
      position: absolute; inset: 0;
      opacity: 0;
      animation: fadeIn 1.6s 0.2s forwards;
    }
    .hero-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      transform: scale(1.06);
      animation: zoomOut 10s 0.2s forwards ease-out;
    }
    .hero-right::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 35%);
    }

    /* Lançamento badge */
    .hero-badge {
      position: absolute; bottom: 80px; right: 0;
      background: var(--green-pale);
      border-left: 3px solid var(--yellow);
      padding: 18px 24px;
      z-index: 3;
      opacity: 0;
      animation: fadeUp 1s 1.2s forwards;
      pointer-events: none;
    }
    .hero-badge-label {
      font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--green-dark); font-weight: 500; margin-bottom: 4px;
    }
    .hero-badge-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 600; color: var(--green-deep);
    }

    .hero-scroll {
      position: absolute; bottom: 40px; right: 60px;
      font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--stone); writing-mode: vertical-rl;
      display: flex; align-items: center; gap: 12px;
      opacity: 0; animation: fadeIn 1s 1.6s forwards; z-index: 3;
    }
    .hero-scroll::before {
      content: ''; width: 1px; height: 40px; background: var(--green);
      animation: scrollLine 2.5s 2.5s infinite;
    }

    /* Trust strip */
    .trust-strip {
      background: var(--off-white);
      border-top: 1px solid var(--sand);
      border-bottom: 1px solid var(--sand);
      padding: 20px 60px;
      display: flex; align-items: center; justify-content: center; gap: 48px;
    }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.72rem; letter-spacing: 0.1em; color: var(--stone);
    }
    .trust-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0;
    }

    /* ============================================================
       DIVIDER
    ============================================================ */
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--sand), transparent);
      margin: 0 60px;
    }

    /* ============================================================
       SECTION BASE
    ============================================================ */
    section { padding: 120px 60px; }
    .section-label {
      font-size: 0.58rem;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 48px;
      display: flex; align-items: center; gap: 18px;
    }
    .section-label::before {
      content: ''; width: 28px; height: 1px; background: var(--green);
    }
    .section-title-serif {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      color: var(--soft-black);
      line-height: 1.1;
    }
    .section-title-serif em { font-style: italic; color: var(--green-dark); }

    /* ============================================================
       MANIFESTO / SOBRE
    ============================================================ */
    .sobre {
      background: var(--off-white);
      display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
      align-items: center;
    }
    .sobre-heading {
      font-size: clamp(2.2rem, 3.5vw, 4rem);
      margin-bottom: 40px;
    }
    .sobre-body {
      font-size: 0.88rem; line-height: 2.1;
      color: var(--stone); margin-bottom: 20px;
    }
    .sobre-visual { position: relative; }
    .sobre-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 2.4vw, 2.8rem);
      font-style: italic; font-weight: 300;
      color: var(--charcoal); line-height: 1.35;
      padding: 56px;
      border: 1px solid var(--sand);
      position: relative;
    }
    .sobre-quote::before {
      content: '"';
      position: absolute; top: -16px; left: 36px;
      font-size: 8rem; color: var(--green-muted);
      font-family: 'Cormorant Garamond', serif; line-height: 1;
    }
    .phi-badge {
      position: absolute; bottom: -20px; right: 36px;
      width: 72px; height: 72px;
      border: 1px solid var(--green-line);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--green);
      background: var(--off-white);
    }

    /* ============================================================
       PRODUTO — DETALHE
    ============================================================ */
    .produto {
      background: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center;
    }
    .produto-img {
      position: relative; border-radius: 2px; overflow: hidden;
    }
    .produto-img img { width: 100%; display: block; border-radius: 2px; }
    .produto-img-glow {
      position: absolute; inset: -40px;
      background: radial-gradient(ellipse at center, rgba(76,175,80,0.1) 0%, transparent 65%);
      pointer-events: none;
    }
    .produto-heading {
      font-size: clamp(2rem, 3.2vw, 3.6rem);
      margin-bottom: 32px;
    }
    .produto-body {
      font-size: 0.88rem; line-height: 2.1; color: var(--stone); margin-bottom: 20px;
    }
    .promo-box {
      margin: 36px 0;
      background: linear-gradient(135deg, var(--green-pale), rgba(129,199,132,0.12));
      border: 1px solid var(--green-line);
      border-left: 3px solid var(--yellow);
      padding: 28px 32px;
      border-radius: 2px;
    }
    .promo-box-icon { font-size: 1.2rem; margin-bottom: 8px; }
    .promo-box h4 {
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem; font-weight: 500;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--green-dark); margin-bottom: 8px;
    }
    .promo-box p { font-size: 0.84rem; line-height: 1.85; color: var(--stone); }
    .promo-note {
      font-size: 0.75rem; font-style: italic; color: var(--warm-gray); margin-top: 12px;
    }

    /* ============================================================
       COLEÇÃO
    ============================================================ */
    .colecao-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 64px;
    }
    .colecao-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 5rem);
      font-weight: 300; line-height: 1;
      color: var(--soft-black);
    }
    .colecao-heading em { font-style: italic; color: var(--green-dark); }
    .colecao-sub {
      font-size: 0.78rem; line-height: 1.9;
      color: var(--stone); max-width: 260px; text-align: right;
    }
    .products-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }
    .product-card {
      background: var(--off-white);
      overflow: hidden; position: relative; cursor: none;
    }
    .product-card:first-child { grid-row: span 2; }
    .product-img {
      width: 100%; height: 340px;
      object-fit: cover;
      transition: transform 0.8s ease;
      display: block;
      filter: brightness(0.95);
    }
    .product-card:first-child .product-img { height: 682px; }
    .product-card:hover .product-img { transform: scale(1.04); }
    .product-info { padding: 28px 32px; }
    .product-line {
      font-size: 0.58rem; letter-spacing: 0.32em;
      text-transform: uppercase; color: var(--green);
      margin-bottom: 8px;
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300;
      color: var(--soft-black); margin-bottom: 10px;
    }
    .product-desc {
      font-size: 0.78rem; line-height: 1.85;
      color: var(--stone); margin-bottom: 20px;
    }
    .product-tags { display: flex; gap: 10px; flex-wrap: wrap; }
    .tag {
      font-size: 0.58rem; letter-spacing: 0.2em;
      text-transform: uppercase; padding: 5px 12px;
      border: 1px solid var(--sand); color: var(--stone);
    }
    .tag.led {
      border-color: var(--green-line);
      color: var(--green);
      background: var(--green-muted);
    }
    .product-cta {
      margin-top: 18px;
    }
    .product-cta a {
      font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--green); text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      border-bottom: 1px solid var(--green-line);
      padding-bottom: 4px;
      transition: gap 0.3s, color 0.3s;
      cursor: none;
    }
    .product-cta a:hover { gap: 14px; color: var(--green-dark); }
    .product-cta a::after { content: '→'; }

    /* ============================================================
       LED SECTION
    ============================================================ */
    .led-section {
      background: var(--soft-black);
      color: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding: 0; overflow: hidden;
    }
    .led-visual { position: relative; overflow: hidden; min-height: 640px; }
    .led-visual img {
      width: 100%; height: 100%;
      object-fit: cover; opacity: 0.65;
      filter: saturate(0.5);
    }
    .led-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 80%, rgba(76,175,80,0.2) 0%, transparent 60%);
      animation: glow 3s ease-in-out infinite alternate;
    }
    .led-content {
      padding: 100px 80px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .led-eyebrow {
      font-size: 0.58rem; letter-spacing: 0.42em; text-transform: uppercase;
      color: var(--green-light); margin-bottom: 40px;
      display: flex; align-items: center; gap: 16px;
    }
    .led-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--green-light); }
    .led-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 3.5vw, 4.5rem);
      font-weight: 300; line-height: 1.1;
      color: var(--cream); margin-bottom: 40px;
    }
    .led-heading em { font-style: italic; color: var(--green-light); }
    .led-body {
      font-size: 0.85rem; line-height: 2.1;
      color: var(--warm-gray); margin-bottom: 16px;
    }
    .led-specs {
      margin-top: 56px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    }
    .led-spec-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem; font-weight: 300;
      color: var(--green-light); line-height: 1; margin-bottom: 6px;
    }
    .led-spec-label {
      font-size: 0.62rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--stone);
    }

    /* ============================================================
       COMO FUNCIONA
    ============================================================ */
    .como { background: var(--off-white); text-align: center; }
    .como-label { justify-content: center; }
    .como-heading { font-size: clamp(2rem, 3.5vw, 3.8rem); max-width: 600px; margin: 0 auto 72px; }
    .steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative; max-width: 1000px; margin: 0 auto;
    }
    .steps::before {
      content: '';
      position: absolute; top: 30px; left: calc(12.5% + 30px);
      right: calc(12.5% + 30px); height: 1px;
      background: linear-gradient(90deg, var(--green-line) 0%, var(--green) 50%, var(--green-line) 100%);
    }
    .step { padding: 0 20px; }
    .step-num {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--green); color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; position: relative; z-index: 1;
      box-shadow: 0 4px 18px rgba(76,175,80,0.3);
    }
    .step h4 {
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--charcoal); margin-bottom: 10px;
    }
    .step p { font-size: 0.82rem; line-height: 1.8; color: var(--stone); }

    /* ============================================================
       INFORMAÇÕES / CARDS
    ============================================================ */
    .info-cards { background: var(--cream); }
    .info-label { justify-content: center; }
    .info-heading { font-size: clamp(2rem, 3vw, 3.2rem); text-align: center; max-width: 560px; margin: 0 auto 64px; }
    .cards-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    }
    .card {
      background: var(--off-white);
      padding: 48px 40px;
      transition: background 0.35s;
    }
    .card:hover { background: var(--sand); }
    .card-icon {
      width: 48px; height: 48px;
      border: 1px solid var(--green-line);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; margin-bottom: 28px;
    }
    .card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 300;
      color: var(--soft-black); margin-bottom: 14px;
    }
    .card p { font-size: 0.82rem; line-height: 1.9; color: var(--stone); }
    .card-tag {
      display: inline-block; margin-top: 20px;
      font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--green); border-bottom: 1px solid var(--green-line);
      padding-bottom: 2px;
    }

    /* ============================================================
       CONCEITO ÁUREO
    ============================================================ */
    .aureo {
      background: var(--cream);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .aureo::before {
      content: 'φ';
      position: absolute;
      font-family: 'Cormorant Garamond', serif;
      font-size: 40vw;
      color: rgba(76,175,80,0.04);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none; line-height: 1;
    }
    .aureo-label {
      justify-content: center;
    }
    .aureo-label::after { content: ''; width: 28px; height: 1px; background: var(--green); }
    .aureo-heading { font-size: clamp(2.5rem, 4vw, 5rem); max-width: 800px; margin: 0 auto 48px; }
    .aureo-desc {
      font-size: 0.85rem; line-height: 2; color: var(--stone);
      max-width: 520px; margin: 0 auto;
    }
    .aureo-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 60px; max-width: 900px; margin: 80px auto 0;
    }
    .aureo-icon {
      width: 52px; height: 52px;
      border: 1px solid var(--green-line);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--green);
    }
    .aureo-item-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 300;
      color: var(--soft-black); margin-bottom: 12px;
    }
    .aureo-item-text { font-size: 0.78rem; line-height: 1.9; color: var(--stone); }

    /* ============================================================
       CTA FINAL
    ============================================================ */
    .cta-final {
      background: var(--green-deep);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute; top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(129,199,132,0.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-eyebrow {
      font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
      color: var(--green-light); margin-bottom: 32px;
      display: flex; align-items: center; justify-content: center; gap: 18px;
    }
    .cta-eyebrow::before, .cta-eyebrow::after {
      content: ''; width: 28px; height: 1px; background: var(--green-light);
    }
    .cta-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 5.5rem);
      font-weight: 300; line-height: 1.05;
      color: white; margin-bottom: 24px;
    }
    .cta-heading em { font-style: italic; color: var(--green-light); }
    .cta-sub {
      font-size: 0.85rem; line-height: 1.9;
      color: rgba(255,255,255,0.6);
      max-width: 420px; margin: 0 auto 52px;
    }
    .cta-buttons { display: flex; justify-content: center; align-items: center; gap: 20px; }
    .btn-white-green {
      display: inline-flex; align-items: center; gap: 12px;
      background: white; color: var(--green-deep);
      text-decoration: none; padding: 16px 40px;
      font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
      font-weight: 500;
      border-radius: 4px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: background 0.3s, transform 0.2s; cursor: none;
    }
    .btn-white-green:hover { background: var(--green-pale); transform: translateY(-2px); }
    .cta-note {
      margin-top: 28px;
      font-size: 0.7rem; color: rgba(255,255,255,0.35);
      letter-spacing: 0.1em;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--soft-black);
      color: var(--warm-gray);
      padding: 80px 60px 40px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      margin-bottom: 40px;
    }
    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem; font-weight: 300;
      letter-spacing: 0.22em; color: var(--cream); margin-bottom: 12px;
    }
    .footer-brand-name span { color: var(--green-light); }
    .footer-brand-sub {
      font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--green-light); margin-bottom: 24px;
    }
    .footer-brand-text { font-size: 0.78rem; line-height: 1.9; color: var(--stone); }
    .footer-col-title {
      font-size: 0.6rem; letter-spacing: 0.32em;
      text-transform: uppercase; color: var(--green-light); margin-bottom: 24px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 0.78rem; color: var(--stone);
      text-decoration: none; transition: color 0.3s; cursor: none;
    }
    .footer-col ul li a:hover { color: var(--cream); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-copy { font-size: 0.62rem; color: var(--stone); letter-spacing: 0.1em; }
    .footer-phi {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--green-light); opacity: 0.4;
    }

    /* ============================================================
       WHATSAPP FLOAT
    ============================================================ */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px;
      z-index: 999;
      width: 58px; height: 58px;
      background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      text-decoration: none;
      animation: waPulse 3s infinite;
      cursor: none;
    }
    .wa-float:hover { transform: scale(1.1); }
    .wa-float svg { fill: white; }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes zoomOut {
      from { transform: scale(1.06); }
      to   { transform: scale(1); }
    }
    @keyframes scrollLine {
      0%  { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100%{ transform: scaleY(0); transform-origin: bottom; }
    }
    @keyframes glow {
      from { opacity: 0.6; }
      to   { opacity: 1; }
    }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
    }

    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }

    /* ============================================================
       MOBILE
    ============================================================ */
    @media (max-width: 900px) {
      nav { padding: 18px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(245,244,240,0.97);
        backdrop-filter: blur(16px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--sand);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .nav-links.open li { width: 100%; }
      .nav-links.open .nav-cta { display: block; text-align: center; padding: 12px 20px; }
      .hamburger { display: flex; }

      section { padding: 80px 24px; }
      .trust-strip { padding: 18px 24px; gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
      .divider { margin: 0 24px; }

      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .hero-left { padding: 0 24px 80px; }
      .hero-badge { display: none; }

      .sobre { grid-template-columns: 1fr; gap: 48px; }
      .produto { grid-template-columns: 1fr; gap: 48px; }
      .produto-img { order: -1; }

      .colecao-header { flex-direction: column; gap: 20px; }
      .colecao-sub { text-align: left; }
      .products-grid { grid-template-columns: 1fr; }
      .product-card:first-child { grid-row: auto; }
      .product-card:first-child .product-img { height: 360px; }

      .led-section { grid-template-columns: 1fr; }
      .led-visual { min-height: 300px; }
      .led-content { padding: 60px 24px; }

      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .cards-grid { grid-template-columns: 1fr; gap: 2px; }
      .aureo-grid { grid-template-columns: 1fr; gap: 40px; }
      .cta-buttons { flex-direction: column; }

      .footer-top { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      .steps { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; gap: 14px; }
    }
  
