    :root {
      --purple:      #5C2D8C;
      --purple-dk:   #3A1A60;
      --purple-md:   #7B3FB5;
      --purple-lt:   #A87DD4;
      --purple-pale: #1A0D2E;
      --purple-xlt:  #110A1F;
      --white:       #000000;
      --off-white:   #0D0D0D;
      --ink:         #FFFFFF;
      --muted:       #A89BB8;
      --border:      rgba(168,125,212,.25);
      --ff-display:  'Playfair Display', Georgia, serif;
      --ff-body:     'Outfit', sans-serif;
      --shadow-sm:   0 2px 12px rgba(92,45,140,.10);
      --shadow-md:   0 8px 32px rgba(92,45,140,.15);
      --shadow-lg:   0 20px 60px rgba(92,45,140,.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--ff-body);
      font-size: 1rem;
      line-height: 1.75;
      overflow-x: hidden;
    }
    h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.15; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ─── NAVBAR ─────────────────────────────────────────── */
    .lm-nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      background: rgba(0,0,0,.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    .lm-nav.scrolled { box-shadow: var(--shadow-md); }
    .lm-nav .navbar-logo { height: 65px; width: auto; }
    .lm-nav .nav-link {
      font-family: var(--ff-body);
      font-size: .82rem;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .45rem 1rem !important;
      transition: color .2s;
      position: relative;
    }
    .lm-nav .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 1rem; right: 1rem;
      height: 2px; background: var(--purple);
      transform: scaleX(0); transition: transform .25s;
    }
    .lm-nav .nav-link:hover { color: var(--purple); }
    .lm-nav .nav-link:hover::after { transform: scaleX(1); }
    .btn-cta {
      background: var(--purple);
      color: var(--white) !important;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .6rem 1.5rem;
      border-radius: 3px;
      transition: background .25s, transform .2s, box-shadow .2s;
      display: inline-block;
    }
    .btn-cta:hover { background: var(--purple-dk); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
    .navbar-toggler { border: none; box-shadow: none; }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235C2D8C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 110px 0 80px;
      position: relative;
      overflow: hidden;
      background: var(--white);
    }
    .hero::before {
      content: '';
      position: absolute; top: -80px; right: -120px;
      width: min(700px, 100vw); height: min(700px, 100vw);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(168,125,212,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -60px; left: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(92,45,140,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--purple);
      display: flex; align-items: center; gap: .7rem;
      margin-bottom: 1.2rem;
    }
    .hero-eyebrow::before {
      content: ''; width: 32px; height: 2px; background: var(--purple); border-radius: 2px;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 1.4rem;
      letter-spacing: -.02em;
    }
    .hero h1 em { font-style: italic; color: var(--purple); font-weight: 700; }
    .hero-desc {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 500px;
      margin-bottom: 2.4rem;
      line-height: 1.8;
    }
    .hero-desc strong { color: var(--ink); font-weight: 600; }
    .btn-primary-lm {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--purple);
      color: var(--white);
      font-size: .84rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .9rem 2rem;
      border-radius: 3px;
      transition: background .25s, transform .2s, box-shadow .2s;
    }
    .btn-primary-lm:hover { background: var(--purple-dk); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-outline-lm {
      display: inline-flex; align-items: center; gap: .5rem;
      background: transparent;
      color: var(--purple);
      font-size: .84rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .88rem 2rem;
      border: 2px solid var(--purple);
      border-radius: 3px;
      transition: background .25s, color .25s;
    }
    .btn-outline-lm:hover { background: var(--purple); color: var(--white); }

    /* hero visual */
    .hero-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      height: 500px;
    }
    .hero-orb {
      width: min(400px, 85vw); height: min(400px, 85vw);
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple-pale) 0%, var(--purple-lt) 50%, var(--purple) 100%);
      position: relative;
      animation: float 6s ease-in-out infinite;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-orb-inner {
      width: min(300px, 64vw); height: min(300px, 64vw);
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(4px);
      display: flex; align-items: center; justify-content: center;
    }
    .hero-orb-simbol {
        width: 150px;
    }
    .hero-badge {
      position: absolute; bottom: 50px; right: 10px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.1rem 1.5rem;
      text-align: center;
      box-shadow: var(--shadow-lg);
      min-width: 120px; max-width: 160px;
    }
    .hero-badge .num {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 2.2rem;
      color: var(--purple);
      line-height: 1;
    }
    .hero-badge .label {
      font-size: .7rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--muted); margin-top: .2rem;
    }
    .hero-badge2 {
      position: absolute; top: 60px; left: 0;
      background: var(--purple);
      border-radius: 8px;
      padding: 1rem 1.4rem;
      text-align: center;
      box-shadow: var(--shadow-lg);
      min-width: 110px; max-width: 150px;
    }
    .hero-badge2 .num {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 1.8rem;
      color: var(--white);
      line-height: 1;
    }
    .hero-badge2 .label {
      font-size: .68rem; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: .2rem;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-18px); }
    }

    /* ─── SECTION COMMONS ────────────────────────────────── */
    section { padding: 100px 0; }
    .section-label {
      font-size: .72rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--purple); margin-bottom: .8rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; letter-spacing: -.02em;
    }
    .section-title em { font-style: italic; color: var(--purple); }
    .divider {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--purple-lt));
      border-radius: 2px; margin: 1.4rem 0;
    }

    /* ─── STATS ──────────────────────────────────────────── */
    .stats-section {
      background: var(--purple);
      padding: 64px 0;
      overflow: hidden;
    }
    .stat-item { text-align: center; padding: 1rem; }
    .stat-num {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(2.4rem,4vw,3.8rem);
      color: var(--white);
      letter-spacing: -.04em;
      line-height: 1; margin-bottom: .3rem;
    }
    .stat-label {
      font-size: .78rem; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,.65);
    }
    .stat-divider {
      width: 1px; background: rgba(255,255,255,.2);
      height: 60px; margin: auto;
    }

    /* ─── ABOUT ──────────────────────────────────────────── */
    .about-section { background: var(--off-white); }
    .about-img-wrap {
      position: relative; border-radius: 8px; overflow: hidden;
    }
    .about-img-box {
      width: 100%; height: 460px;
      background: linear-gradient(135deg, var(--purple-dk) 0%, var(--purple-md) 60%, var(--purple-lt) 100%);
      display: flex; align-items: center; justify-content: center;
      border-radius: 8px; position: relative; overflow: hidden;
    }
    .about-img-box::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* Variante com vagalume */
    .about-img-box--vagalume {
      background: radial-gradient(ellipse at 50% 50%, #1a0a2e 0%, #0a0412 60%, #000 100%);
    }
    .about-img-box--vagalume::before { display: none; }

    /* Canvas de partículas */
    .vagalume-particles {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 1;
    }

    /* Orb de luz pulsante atrás do vagalume */
    .vagalume-glow-orb {
      position: absolute;
      width: min(340px, 80%);
      height: min(340px, 80%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(168,125,212,.55) 0%, rgba(92,45,140,.2) 45%, transparent 70%);
      transform: translate(-50%, -50%);
      left: 50%; top: 50%;
      z-index: 2;
      pointer-events: none;
      transition: none;
    }

    /* Imagem do vagalume */
    .vagalume-img {
      position: relative; z-index: 3;
      width: clamp(200px, 52%, 280px);
      height: auto;
      filter: drop-shadow(0 0 28px rgba(168,125,212,1))
              drop-shadow(0 0 60px rgba(92,45,140,.75))
              drop-shadow(0 0 100px rgba(168,125,212,.35));
      will-change: transform;
    }

    .about-img-box .big-letter {
      font-family: var(--ff-display); font-weight: 900;
      font-size: 10rem; color: rgba(255,255,255,.12);
      letter-spacing: -.05em; position: relative; z-index: 1;
    }
    .about-tag {
      position: absolute; bottom: 20px; left: 20px;
      background: var(--white);
      color: var(--purple);
      font-size: .75rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      padding: .55rem 1.1rem;
      border-radius: 4px;
      box-shadow: var(--shadow-md);
    }
    .about-accent {
      position: absolute; top: -1px; right: -1px;
      width: 80px; height: 80px;
      background: var(--purple-pale);
      border-radius: 0 8px 0 80px;
    }

    /* ─── MVV ────────────────────────────────────────────── */
    .mvv-section { background: var(--ink); }
    .mvv-section .section-label { color: var(--purple-lt); }
    .mvv-section .section-title { color: var(--white); }
    .mvv-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(168,125,212,.2);
      border-radius: 8px; padding: 2.2rem;
      height: 100%;
      transition: background .3s, transform .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .mvv-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--purple-lt));
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s;
    }
    .mvv-card:hover { background: rgba(92,45,140,.2); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
    .mvv-card:hover::before { transform: scaleX(1); }
    .mvv-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--purple), var(--purple-md));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.4rem;
      font-size: 1.5rem; color: var(--white);
      box-shadow: 0 8px 20px rgba(92,45,140,.4);
    }
    .mvv-card h3 {
      font-size: 1.5rem; font-weight: 700;
      color: var(--white); margin-bottom: .8rem;
    }
    .mvv-card p { color: rgba(0,0,0,.5); font-size: .95rem; }
    .values-list {
      list-style: none;
      display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem;
    }
    .values-list li {
      background: rgba(168,125,212,.2);
      color: var(--purple-lt);
      border: 1px solid rgba(168,125,212,.3);
      font-size: .75rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      padding: .35rem .85rem; border-radius: 20px;
    }

    /* ─── TEAM ───────────────────────────────────────────── */
    .team-section { background: var(--white); }
    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px; overflow: hidden;
      transition: box-shadow .3s, transform .3s;
    }
    .team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
    .team-photo-box {
      width: 100%; height: 400px;
      position: relative;
      overflow: hidden;
      background: #e8e4ee;
    }
    .team-photo-box img {
      width: 100%;
      height: auto;
      position: absolute;
      left: 50%;
      display: block;
    }
    .team-photo-rebeca {
      top: 6%;
      transform: translateX(-50%) translateY(-12.9%);
    }
    .team-photo-carol {
      top: 6%;
      transform: translateX(-50%) translateY(-20.8%);
    }
    .team-card-body { padding: 1.6rem; }
    .team-card-body h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: .1rem; }
    .team-role {
      font-size: .75rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--purple); margin-bottom: .9rem;
    }
    .team-card-body p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

    /* ─── PARTNERS ───────────────────────────────────────── */
    .partners-section {
      background: linear-gradient(180deg, #f8f4fd 0%, #ede3fb 52%, #e7d8fa 100%);
      padding: 88px 0;
      position: relative;
      overflow: hidden;
    }
    .partners-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 14% 18%, rgba(168,125,212,.18) 0%, rgba(168,125,212,0) 42%),
        radial-gradient(circle at 86% 76%, rgba(92,45,140,.14) 0%, rgba(92,45,140,0) 44%);
    }
    .partners-section .section-label { color: var(--purple); }
    .partners-wrap {
      overflow: hidden;
      max-width: 100%;
      margin-top: 2.8rem;
      padding: 1.1rem 0;
      border-radius: 16px;
      border: 1px solid rgba(120, 72, 178, 0.28);
      background: linear-gradient(180deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.12) 100%);
      box-shadow: 0 18px 40px rgba(71, 35, 115, 0.12);
      backdrop-filter: blur(1.5px);
      position: relative;
      z-index: 1;
    }
    .partners-track {
      display: flex;
      gap: clamp(1rem, 3vw, 2rem);
      align-items: center;
      animation: scroll-partners 22s linear infinite;
      width: max-content;
      padding: 0 .8rem;
    }
    .partner-pill {
      --pill-w: clamp(7.25rem, 22vw, 11.25rem);
      --pill-h: clamp(3rem, 7.5vh, 4.625rem);
      background: linear-gradient(145deg, #a88fe0 0%, #9578d4 55%, #8a6ccd 100%);
      border: 1.5px solid rgba(255, 250, 255, 0.65);
      border-radius: 10px;
      padding: 1px;
      width: var(--pill-w);
      height: var(--pill-h);
      white-space: nowrap;
      font-family: var(--ff-body);
      font-weight: 700; font-size: 1rem;
      color: var(--ink);
      flex-shrink: 0;
      box-shadow: 0 10px 22px rgba(92, 58, 150, 0.22);
      transition: border-color .2s, box-shadow .2s, transform .2s, filter .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    /* Pill em vw/vh; imagem respeita img { max-width: 100% }. Escala extra do antigo % vira --logo-scale (= valor/100), via transform. */
    .partner-pill img {
      display: block;
      max-width: 100%;
      width: min(100%, 28vw);
      height: min(100%, 12vh);
      max-height: min(100%, 12vh);
      object-fit: contain;
      object-position: center;
      filter: saturate(1.02);
      --logo-scale: 1;
      transform: scale(var(--logo-scale));
      transform-origin: center center;
    }
    /* Escala ~ proporcional ao sistema antigo (--logo-size em % ÷ 100). Ajuste fino por marca. */
    .partner-pill img[src*="AL-GASTRO-PRETO"] { --logo-scale: 2; }
    .partner-pill img[src*="BG-DOURADA"] { --logo-scale: 1.1; }
    .partner-pill img[src*="BOX"] { --logo-scale: 1.3; }
    .partner-pill img[src*="BRASA-colorido"] { --logo-scale: 2.8; }
    .partner-pill img[src*="BURGUER-PRETO"] { --logo-scale: 1.4; }
    .partner-pill img[src*="CHICAGO-2"] { --logo-scale: 1.6; }
    .partner-pill img[src*="CLEAN-DENTE"] { --logo-scale: 1.3; }
    .partner-pill img[src*="DOCES-DA-MEL"] { --logo-scale: 2; }
    .partner-pill img[src*="DUOZ-BRANCO"] { --logo-scale: 2.5; }
    .partner-pill img[src*="Estacao"] { --logo-scale: 1.8; }
    .partner-pill img[src*="EXTRA-BRANCA"] { --logo-scale: 1.9; }
    .partner-pill img[src*="GABI"] { --logo-scale: 1.3; }
    .partner-pill img[src*="LOGO"] { --logo-scale: 1; }
    .partner-pill img[src*="MAATRIZZ"] { --logo-scale: 1.6; }
    .partner-pill img[src*="MEDIDA"] { --logo-scale: 1.5; }
    .partner-pill img[src*="NONATO"] { --logo-scale: 1.2; }
    .partner-pill:hover {
      border-color: rgba(255,255,255,.9);
      box-shadow: 0 14px 28px rgba(92, 58, 150, 0.28);
      transform: translateY(-2px);
      filter: brightness(1.02);
    }
    @keyframes scroll-partners {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── CONTACT ────────────────────────────────────────── */
    .contact-section { background: var(--off-white); }
    .contact-form-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 2.5rem;
      box-shadow: var(--shadow-sm);
    }
    .form-label {
      font-size: .75rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--muted); margin-bottom: .4rem;
    }
    .form-control, .form-select {
      border: 1.5px solid rgba(168,125,212,.3);
      border-radius: 4px;
      padding: .72rem .9rem;
      font-size: .92rem; font-family: var(--ff-body);
      background: var(--white); color: var(--ink);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(92,45,140,.12);
      background: var(--white);
    }
    .btn-submit {
      background: var(--purple); color: var(--white);
      border: none; font-size: .84rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: .95rem 2.4rem; border-radius: 4px;
      cursor: pointer; width: 100%;
      transition: background .25s, transform .2s, box-shadow .2s;
    }
    .btn-submit:hover { background: var(--purple-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .contact-info-item {
      padding: 1.2rem 0; border-bottom: 1px solid var(--border);
    }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-info-item h3 { font-size: 1rem; font-weight: 700; font-family: var(--ff-body); margin-bottom: .2rem; }
    .contact-info-item p { font-size: .88rem; color: var(--muted); margin: 0; }
    .ci-icon {
      width: 40px; height: 40px;
      background: var(--purple-pale);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--purple); font-size: 1.1rem;
      flex-shrink: 0;
    }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer { background: #0A0A0A; color: #FFFFFF; padding: 64px 0 32px; }
    .footer-logo { height: 110px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
    footer p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; }
    .footer-link {
      font-size: .82rem; color: rgba(255,255,255,.5);
      display: block; margin-bottom: .5rem;
      transition: color .2s; text-transform: uppercase; letter-spacing: .07em;
    }
    .footer-link:hover { color: var(--purple-lt); }
    .footer-heading {
      font-size: .72rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--purple-lt); margin-bottom: 1rem;
    }
    .social-icon {
      width: 38px; height: 38px;
      border: 1px solid rgba(168,125,212,.3);
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: 1rem;
      margin-right: .4rem;
      transition: background .2s, color .2s, border-color .2s, transform .2s;
    }
    .social-icon:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
    .social-icon--lg {
      width: 52px; height: 52px;
      font-size: 1.35rem;
      border-radius: 12px;
      border: 1.5px solid rgba(168,125,212,.45);
      margin-right: .6rem;
    }
    .social-icon--lg:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(92,45,140,.35); }
    .footer-bottom {
      border-top: 1px solid rgba(168,125,212,.15);
      margin-top: 48px; padding-top: 24px;
      font-size: .78rem; color: rgba(255,255,255,.3);
    }
    .footer-work-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: .72rem 1.05rem;
      border-radius: 8px;
      border: 1px solid rgba(168,125,212,.45);
      background: rgba(168,125,212,.14);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, border-color .2s, transform .2s;
      white-space: nowrap;
    }
    .footer-work-btn:hover {
      background: var(--purple);
      border-color: var(--purple);
      color: #fff;
      transform: translateY(-1px);
    }

    /* ─── REVEAL ─────────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── MOBILE ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      section { padding: 70px 0; }
      .hero { padding: 100px 0 60px; }
      .hero-visual { height: 320px; }
      .hero-orb { width: 260px; height: 260px; }
      .hero-orb-inner { width: 200px; height: 200px; }
      .hero-orb-simbol { width: 100px; }
      .hero-badge { bottom: 20px; right: 0; min-width: 110px; }
      .hero-badge2 { top: 10px; left: 0; min-width: 100px; }
      .about-img-box { height: 340px; }
      .about-img-box .big-letter { font-size: 6rem; }
      /* vagalume responsivo — tablet */
      .vagalume-img { width: clamp(170px, 44%, 240px); }
      .vagalume-glow-orb { width: 260px; height: 260px; }
    }
    @media (max-width: 575px) {
      .hero-visual { height: 260px; }
      .hero-orb { width: 200px; height: 200px; }
      .hero-orb-inner { width: 150px; height: 150px; }
      .hero-orb-simbol { width: 75px; }
      .hero-badge { display: none; }
      .hero-badge2 { display: none; }
      .stat-divider { display: none; }
      /* vagalume responsivo — mobile */
      .about-img-box { height: 300px; }
      .vagalume-img { width: clamp(140px, 40vw, 190px); }
      .vagalume-glow-orb { width: 200px; height: 200px; }
    }
/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM — Formspree Integration
   ═══════════════════════════════════════════════════════════════ */

/* Remove padding/border anterior e reorganiza em wrapper */
.contact-form-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--white);
  /* zera padding anterior caso exista */
  padding: 0 !important;
}

/* Cabeçalho roxo */
.contact-form-header {
  background: linear-gradient(135deg, var(--purple-dk), var(--purple));
  padding: 1.8rem 2.4rem;
}
.contact-form-header h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 .3rem;
}
.contact-form-header p {
  font-size: .85rem;
  color: rgba(255,255,255,.70);
  margin: 0;
}

/* Corpo do formulário */
.contact-form-body {
  padding: 2rem 2.4rem 2.4rem;
}

/* Aviso de configuração */
.formspree-notice {
  background: var(--purple-pale);
  border: 1.5px dashed var(--purple-lt);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.formspree-notice .fsn-icon {
  font-size: 1.3rem;
  color: var(--purple);
  flex-shrink: 0;
  margin-top: .1rem;
}
.formspree-notice p {
  font-size: .82rem;
  color: var(--purple-dk);
  margin: 0;
  line-height: 1.55;
}
.formspree-notice strong { font-weight: 700; }
.formspree-notice code {
  background: rgba(92,45,140,.12);
  color: var(--purple-dk);
  font-size: .78rem;
  padding: .1rem .4rem;
  border-radius: 3px;
  font-family: monospace;
  word-break: break-all;
}

/* Botão submit — spinner embutido */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
}
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lm-spin .7s linear infinite;
  flex-shrink: 0;
}
.btn-submit.loading .btn-label { display: none; }
.btn-submit.loading .btn-spinner { display: block; }

@keyframes lm-spin { to { transform: rotate(360deg); } }

/* Mensagem de sucesso */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: var(--purple);
}
.form-success h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.form-success p {
  color: var(--muted);
  font-size: .95rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-form-header { padding: 1.4rem 1.4rem; }
  .contact-form-body   { padding: 1.4rem 1.4rem 1.8rem; }
}

/* Destaque influencer */
.influencer-link {
  color: var(--purple-lt) !important;
  font-weight: 700;
  position: relative;
}
.influencer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--purple-lt);
  transform: scaleX(1);
}
.influencer-link:hover {
  color: #caa6ff !important;
}

/* ─── PÁGINA INFLUENCER (alinhada à index) ───────────────── */
.page-influencer .influencer-hero {
  min-height: auto;
  padding: 120px 0 90px;
}
.page-influencer .influencer-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
}
.page-influencer .influencer-hero .hero-desc {
  max-width: 32rem;
}
.page-influencer .influencer-hero-visual {
  height: auto;
  min-height: 360px;
  overflow: visible;
  padding: 1rem 0;
}
.page-influencer .influencer-hero-visual .hero-orb {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
}
.page-influencer .influencer-hero-visual .hero-orb-inner {
  width: 72%;
  height: 72%;
}
.page-influencer .influencer-form-section {
  padding-top: 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 12%);
}
.page-influencer .influencer-form-card {
  box-shadow: var(--shadow-md);
  border-color: rgba(168, 125, 212, 0.35);
}
.page-influencer .influencer-form-card .contact-form-header {
  position: relative;
  overflow: hidden;
}
.page-influencer .influencer-form-card .contact-form-header::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
@media (max-width: 991px) {
  .page-influencer .influencer-hero-visual {
    min-height: 0;
    padding: 0.5rem 0;
  }
  .page-influencer .influencer-hero-visual .hero-orb {
    width: min(300px, 72vw);
    height: min(300px, 72vw);
  }
}

/* Navbar mobile + offcanvas (página influencer) */
@media (max-width: 991.98px) {
  .page-influencer .lm-nav .navbar-toggler {
    border: 1px solid rgba(168, 125, 212, 0.45) !important;
    border-radius: 8px;
  }
}
.lm-offcanvas {
  --bs-offcanvas-width: min(100%, 320px);
  background: #08050e !important;
  border-left: 1px solid var(--border) !important;
  z-index: 1045;
}
.lm-offcanvas .offcanvas-body .nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink) !important;
}
.lm-offcanvas .offcanvas-body .nav-link:hover {
  color: var(--purple-lt) !important;
}
.lm-offcanvas .offcanvas-body .influencer-link {
  color: var(--purple-lt) !important;
}

/* Faixa de destaque (stats) — influencer */
.influencer-stats-bar {
  padding: 56px 0;
}
.influencer-stat-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}
.influencer-stat-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  flex-shrink: 0;
}
.influencer-stat-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
}
.influencer-stat-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}

/* Cards de features */
.influencer-about {
  padding-top: 90px;
  padding-bottom: 100px;
}
.influencer-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.influencer-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.influencer-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(168, 125, 212, 0.45);
}
.influencer-feature-card:hover::before {
  transform: scaleX(1);
}
.influencer-feature-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--purple), var(--purple-md));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(92, 45, 140, 0.35);
}
.influencer-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.influencer-feature-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Passos — fundo escuro */
.influencer-steps-section {
  background: var(--purple-xlt);
  padding: 100px 0;
}
.influencer-steps-section .section-label {
  color: var(--purple);
}
.influencer-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 125, 212, 0.22);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: background 0.3s, transform 0.3s;
}
.influencer-step-card:hover {
  background: rgba(92, 45, 140, 0.25);
  transform: translateY(-4px);
}
.influencer-step-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--purple-lt);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.influencer-step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.influencer-step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Destaque + citação */
.influencer-highlight {
  background: var(--off-white);
  padding: 100px 0;
}
.influencer-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.influencer-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.influencer-checklist li i {
  color: var(--purple);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.influencer-quote-box {
  background: linear-gradient(145deg, var(--purple-dk), var(--purple-md));
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.influencer-quote-mark {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
  display: block;
  margin-bottom: 0.5rem;
}
.influencer-quote-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.influencer-quote-src {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

@media (max-width: 767px) {
  .influencer-stat-inline {
    flex-direction: column;
    text-align: center;
  }
  .influencer-stats-bar .influencer-stat-sub {
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
  }
}
