/* =====================================================
   X-Energia — Home v3 (dark editorial)
   Direção distintiva inspirada no cookbook Frontend Aesthetics:
   tema escuro dominante + acento marcante, tipografia em escala
   com rótulos monoespaçados, numeração editorial, fundos atmosféricos.
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

.hv2 {
  --display: 'Sora', sans-serif;
  --body: 'Sora', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --bg: #0B0A14;          /* verde-floresta profundo (dominante) */
  --bg-2: #100D1C;        /* tom alternado */
  --panel: #16132A;       /* cards / painéis */
  --panel-2: #1C1736;
  --ink: #ECF4ED;         /* texto claro */
  --soft: #A7BDAE;        /* texto secundário */
  --muted: #6F8576;
  --line: rgba(236,244,237,.10);
  --line-2: rgba(236,244,237,.16);

  --green: #2DD976;       /* verde vibrante */
  --green-deep: #1FA463;
  --violet: #9B7BFF;      /* acento marcante (sharp accent) */
  --violet-deep: #6334F0;
  --grad: linear-gradient(120deg, #2DD976 0%, #4F9FD6 52%, #6334F0 108%);

  --radius: 18px;
  --shadow: 0 30px 70px rgba(0,0,0,.45);

  font-family: var(--body);
  color: var(--soft);
  font-size: 17px;
  line-height: 1.65;
  background: var(--bg);
  background-image:
    radial-gradient(1100px 720px at 92% -6%, rgba(99,52,240,.22), transparent 60%),
    radial-gradient(1000px 640px at -8% 14%, rgba(45,217,118,.18), transparent 58%),
    radial-gradient(900px 600px at 55% 112%, rgba(99,52,240,.13), transparent 60%);
  overflow-x: hidden;
}
.hv2 *, .hv2 *::before, .hv2 *::after { box-sizing: border-box; }
.hv2 h1, .hv2 h2, .hv2 h3, .hv2 h4 { font-family: var(--display); color: var(--ink); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; }
.hv2 p { margin: 0 0 1rem; }
.hv2 a { text-decoration: none; color: inherit; }
.hv2 img { max-width: 100%; display: block; }

.hv2 .wrap { width: 100%; max-width: 1500px; margin: 0 auto; padding: 0 44px; }
@media (max-width: 600px) { .hv2 .wrap { padding: 0 20px; } }
.hv2 .section { padding: 120px 0; position: relative; }
.hv2 .section--soft, .hv2 .section--mint { background: var(--bg-2); }
.hv2 .center { text-align: center; }

/* subtle grid texture on dark */
.hv2 .section::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%); }
.hv2 .section > .wrap { position: relative; z-index: 1; }

/* kicker / eyebrow — monoespaçada técnica */
.hv2 .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--green); background: rgba(45,217,118,.08); border: 1px solid rgba(45,217,118,.2); padding: 7px 14px; border-radius: 8px; margin-bottom: 24px; }
.hv2 .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 8px var(--violet); }

.hv2 .lead { font-size: 19px; color: var(--soft); max-width: 640px; }
.hv2 .center .lead { margin-left: auto; margin-right: auto; }
.hv2 .section-head { max-width: 820px; margin: 0 auto 64px; }
.hv2 .section-head h2 { font-size: clamp(34px, 5.2vw, 68px); font-weight: 700; color: var(--ink); }

/* termo destacado */
.hv2 .u { position: relative; display: inline-block; color: var(--green); white-space: nowrap; }
.hv2 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .8s cubic-bezier(.2,.7,.2,1) .2s; }
.hv2 [data-reveal].is-in .u::after, .hv2 .section-head.is-in .u::after, .hv2 .hero h1 .u::after { transform: scaleX(1); }
.hv2 .u-thin { color: var(--violet); }

/* botões */
.hv2 .btn-x { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-weight: 600; font-size: 16px; padding: 16px 30px; border-radius: 100px; border: 0; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.hv2 .btn-primary-x { background: var(--green); color: #09070F; box-shadow: 0 14px 34px rgba(45,217,118,.3); position: relative; overflow: hidden; }
.hv2 .btn-primary-x:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(45,217,118,.45); }
.hv2 .btn-primary-x::after { content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-18deg); transition: left .6s ease; }
.hv2 .btn-primary-x:hover::after { left: 150%; }
.hv2 .btn-ghost-x { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.hv2 .btn-ghost-x:hover { transform: translateY(-3px); border-color: var(--green); color: var(--green); }
.hv2 .btn-x .arrow { transition: transform .25s ease; }
.hv2 .btn-x:hover .arrow { transform: translateX(4px); }

/* =========== HERO — editorial, tipografia gigante =========== */
.hv2 .hero { position: relative; min-height: 96vh; display: flex; align-items: center; overflow: hidden; }
.hv2 .hero::before { display: none; }
.hv2 .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hv2 .hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(9,7,15,.94) 0%, rgba(9,7,15,.7) 44%, rgba(28,18,56,.4) 100%); }
.hv2 .hero__canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .8; }
.hv2 .hero .wrap { position: relative; z-index: 2; }
.hv2 .hero__inner { max-width: 1000px; color: var(--ink); padding: 130px 0; }
.hv2 .hero .eyebrow { background: rgba(236,244,237,.08); border-color: rgba(236,244,237,.2); color: var(--green); }
.hv2 .hero h1 { color: var(--ink); font-weight: 800; font-size: clamp(42px, 5.4vw, 74px); line-height: 1.02; letter-spacing: -.03em; margin-bottom: 28px; }
.hv2 .hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hv2 .hero__sub { font-size: 21px; color: rgba(236,244,237,.78); max-width: 560px; margin-bottom: 38px; }
.hv2 .hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hv2 .hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 44px; color: rgba(236,244,237,.7); font-size: 14px; font-family: var(--mono); }
.hv2 .hero__stars { color: var(--green); letter-spacing: 2px; }
.hv2 .hero__inner > * { opacity: 0; transform: translateY(28px); animation: hv3-rise 1s cubic-bezier(.2,.7,.2,1) forwards; }
.hv2 .hero__inner > *:nth-child(1){animation-delay:.1s} .hv2 .hero__inner > *:nth-child(2){animation-delay:.26s}
.hv2 .hero__inner > *:nth-child(3){animation-delay:.42s} .hv2 .hero__inner > *:nth-child(4){animation-delay:.58s}
.hv2 .hero__inner > *:nth-child(5){animation-delay:.74s}
@keyframes hv3-rise { to { opacity: 1; transform: none; } }

/* =========== TICKER =========== */
.hv2 .ticker { background: #09070F; color: var(--ink); padding: 20px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hv2 .ticker__track { display: flex; gap: 48px; width: max-content; animation: hv3-marquee 32s linear infinite; }
.hv2 .ticker:hover .ticker__track { animation-play-state: paused; }
.hv2 .ticker span { font-family: var(--mono); font-weight: 500; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--soft); display: inline-flex; align-items: center; gap: 14px; white-space: nowrap; }
.hv2 .ticker span::before { content: "◇"; color: var(--green); font-size: 10px; }
@keyframes hv3-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========== SOBRE — split editorial, imagem full-bleed =========== */
.hv2 .about-section { padding: 0; background: var(--bg); }
.hv2 .about-section::before { display: none; }
.hv2 .about-fold { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 660px; }
.hv2 .about-media { position: relative; min-height: 660px; overflow: hidden; }
.hv2 .about-media img.shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hv2 .about-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--bg) 100%), linear-gradient(0deg, rgba(9,7,15,.5), transparent 40%); }
.hv2 .about-text { display: flex; flex-direction: column; justify-content: center; padding: 100px 24px 100px 80px; max-width: 720px; }
.hv2 .about-text h2 { font-size: clamp(32px, 3.8vw, 52px); }
.hv2 .about-text .lead { color: var(--soft); }
.hv2 .about-text .btn-x { margin-top: 16px; align-self: flex-start; }
.hv2 .about-text strong { color: var(--ink); }
.hv2 .about-float { position: absolute; right: 28px; bottom: 32px; background: var(--panel); border-radius: 14px; box-shadow: var(--shadow); padding: 16px 20px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line-2); z-index: 2; }
.hv2 .about-float .badge-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(45,217,118,.12); display: grid; place-items: center; color: var(--green); }
.hv2 .about-float b { font-family: var(--display); font-size: 16px; color: var(--ink); display: block; line-height: 1.1; }
.hv2 .about-float span { font-size: 12px; color: var(--muted); font-family: var(--mono); }
@media (max-width: 980px) { .hv2 .about-fold { grid-template-columns: 1fr; min-height: 0; } .hv2 .about-media { min-height: 320px; height: 320px; } .hv2 .about-text { padding: 56px 24px; max-width: none; } }

/* =========== SOLUÇÕES — cards numerados (editorial) =========== */
.hv2 .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: sol; perspective: 1400px; }
.hv2 .card-x { counter-increment: sol; position: relative; overflow: hidden; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease; transform-style: preserve-3d; }
.hv2 .card-x::before { content: "0" counter(sol); position: absolute; top: 26px; right: 30px; font-family: var(--mono); font-size: 15px; letter-spacing: .1em; color: var(--violet); opacity: .8; }
.hv2 .card-x::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); opacity: 0; background: radial-gradient(280px circle at var(--mx,50%) var(--my,0%), rgba(155,123,255,.16), transparent 60%); transition: opacity .3s ease; pointer-events: none; }
.hv2 .card-x:hover { transform: translateY(-8px); border-color: var(--line-2); background: var(--panel-2); box-shadow: var(--shadow); }
.hv2 .card-x:hover::after { opacity: 1; }
.hv2 .card-x > * { position: relative; z-index: 1; }
.hv2 .card-x .ic { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: rgba(45,217,118,.1); color: var(--green); margin-bottom: 26px; transition: transform .35s ease, background .35s ease, color .35s ease; }
.hv2 .card-x:hover .ic { transform: translateZ(30px); background: var(--green); color: #09070F; }
.hv2 .card-x .ic svg { width: 30px; height: 30px; }
.hv2 .card-x h3 { font-size: 25px; color: var(--ink); }
.hv2 .card-x p { font-size: 15.5px; color: var(--soft); margin-bottom: 20px; }
.hv2 .card-x .tag { display: inline-block; font-size: 12px; font-weight: 500; color: var(--violet); font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; }

/* =========== GRUPO =========== */
.hv2 .group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hv2 .group-card { display: flex; gap: 22px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.hv2 .group-card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--panel-2); }
.hv2 .group-logo { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 16px; overflow: hidden; display: grid; place-items: center; background: rgba(155,123,255,.1); border: 1px solid var(--line); font-family: var(--display); font-weight: 800; color: var(--violet); font-size: 13px; text-align: center; padding: 8px; }
.hv2 .group-logo img { width: 100%; height: 100%; object-fit: contain; }
.hv2 .group-card h3 { font-size: 23px; margin-bottom: 6px; color: var(--ink); }
.hv2 .group-card .role { font-size: 11px; font-weight: 500; color: var(--green); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; display: block; font-family: var(--mono); }
.hv2 .group-card p { font-size: 15px; margin-bottom: 0; color: var(--soft); }

/* =========== MAPA full-bleed =========== */
.hv2 .tech { position: relative; color: var(--ink); }
.hv2 .tech--map { padding: 0; background: #09070F; }
.hv2 .tech--map::before { display: none; }
.hv2 .map-stage { position: relative; width: 100%; height: 84vh; min-height: 580px; background: #09070F; overflow: hidden; }
.hv2 .map-stage #hv2-map { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #09070F; z-index: 1; }
.hv2 .map-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hv2 .map-overlay::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,7,15,.95) 0%, rgba(9,7,15,.5) 32%, rgba(9,7,15,0) 58%), linear-gradient(0deg, rgba(9,7,15,.9) 0%, rgba(9,7,15,0) 34%); }
.hv2 .map-head { position: absolute; top: 11%; left: max(44px, (100vw - 1500px)/2 + 44px); max-width: 480px; }
.hv2 .map-head .eyebrow { background: rgba(155,123,255,.12); border-color: rgba(155,123,255,.28); color: var(--violet); }
.hv2 .map-head h2 { color: var(--ink); font-size: clamp(34px, 4vw, 56px); margin-bottom: 14px; }
.hv2 .map-head p { color: rgba(236,244,237,.78); font-size: 17px; margin: 0; }
.hv2 .map-stats { position: absolute; left: max(44px, (100vw - 1500px)/2 + 44px); bottom: 50px; display: flex; gap: 14px; flex-wrap: wrap; max-width: 92vw; }
.hv2 .map-stat { pointer-events: auto; background: rgba(22,18,38,.6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--line-2); border-radius: 14px; padding: 16px 22px; min-width: 116px; transition: transform .3s ease, border-color .3s ease; }
.hv2 .map-stat:hover { transform: translateY(-4px); border-color: rgba(45,217,118,.5); }
.hv2 .map-stat b { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 2.6vw, 38px); line-height: 1; display: block; color: var(--green); }
.hv2 .map-stat span { display: block; margin-top: 6px; color: rgba(236,244,237,.66); font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.hv2 .map-legend2 { position: absolute; right: max(44px, (100vw - 1500px)/2 + 44px); top: 11%; display: flex; flex-direction: column; gap: 10px; pointer-events: auto; background: rgba(22,18,38,.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 16px; }
.hv2 .map-legend2 span { display: flex; align-items: center; gap: 8px; color: rgba(236,244,237,.85); font-size: 12px; font-family: var(--mono); }
.hv2 .lg-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.hv2 .lg-usina { background: var(--green); box-shadow: 0 0 0 4px rgba(45,217,118,.22); }
.hv2 .lg-cliente { background: var(--violet); box-shadow: 0 0 0 4px rgba(155,123,255,.22); }
.hv2 .tech--map .map-note { color: rgba(236,244,237,.4); text-align: center; padding: 16px 24px; margin: 0; font-size: 12px; font-family: var(--mono); }
.hv2 .map-stage .leaflet-control-zoom a { background: rgba(22,18,38,.85); color: var(--ink); border-color: var(--line-2); }
.hv2 .map-stage .leaflet-control-zoom a:hover { background: var(--green-deep); }
.hv2 .map-stage .leaflet-control-attribution { background: rgba(9,7,15,.6); color: rgba(236,244,237,.45); }
.hv2 .map-stage .leaflet-control-attribution a { color: rgba(236,244,237,.7); }
.hv2 .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(45,217,118,.7); animation: hv3-pulse 1.6s infinite; }
@keyframes hv3-pulse { 0% { box-shadow: 0 0 0 0 rgba(45,217,118,.7); } 70% { box-shadow: 0 0 0 9px rgba(45,217,118,0); } 100% { box-shadow: 0 0 0 0 rgba(45,217,118,0); } }
.hv2 .hv2-pin { position: relative; width: 16px; height: 16px; }
.hv2 .hv2-pin .core { display: block; width: 16px; height: 16px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.4); position: relative; z-index: 2; }
.hv2 .hv2-pin .ring { display: block; position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%,-50%); z-index: 1; animation: hv3-ring 2.4s ease-out infinite; }
@keyframes hv3-ring { 0% { box-shadow: 0 0 0 0 currentColor; opacity: .7; } 100% { box-shadow: 0 0 0 18px currentColor; opacity: 0; } }
.hv2 .leaflet-popup-content-wrapper { border-radius: 12px; background: var(--panel); color: var(--ink); }
.hv2 .leaflet-popup-content { font-family: var(--body); font-size: 14px; }
.hv2 .leaflet-popup-content b { font-family: var(--display); color: var(--ink); }
.hv2 .leaflet-popup-tip { background: var(--panel); }
@media (max-width: 760px) { .hv2 .map-stage { height: 80vh; min-height: 520px; } .hv2 .map-head { top: 6%; left: 20px; right: 20px; max-width: none; } .hv2 .map-head h2 { font-size: 28px; } .hv2 .map-legend2 { display: none; } .hv2 .map-stats { left: 14px; right: 14px; bottom: 14px; gap: 10px; max-width: none; } .hv2 .map-stat { flex: 1 1 40%; min-width: 0; padding: 12px 14px; } }

/* =========== AVALIAÇÕES =========== */
.hv2 .reviews .rv-summary { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 0 auto 48px; }
.hv2 .rv-score { font-family: var(--display); font-weight: 800; font-size: 64px; line-height: 1; color: var(--ink); }
.hv2 .rv-sumtext { text-align: left; }
.hv2 .rv-stars { color: var(--green); letter-spacing: 3px; font-size: 20px; }
.hv2 .rv-sub { color: var(--muted); font-size: 13px; margin-top: 4px; font-family: var(--mono); }
.hv2 .rv-google { display: inline-flex; align-items: center; gap: 8px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 100px; padding: 10px 18px; font-weight: 600; font-size: 14px; color: var(--ink); transition: transform .25s ease, border-color .25s ease; }
.hv2 .rv-google:hover { transform: translateY(-2px); border-color: var(--green); }
.hv2 .rv-gicon { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--green); }
.hv2 .rv-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 4px 20px; }
.hv2 .rv-track::-webkit-scrollbar { height: 6px; }
.hv2 .rv-track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 100px; }
.hv2 .rv-card { scroll-snap-align: start; flex: 1 0 340px; max-width: 540px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.hv2 .rv-card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--panel-2); }
.hv2 .rv-card .rv-cstars { color: var(--green); letter-spacing: 2px; font-size: 16px; margin-bottom: 18px; }
.hv2 .rv-card .rv-quote { color: var(--soft); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.hv2 .rv-who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.hv2 .rv-avatar { width: 46px; height: 46px; border-radius: 50%; flex: 0 0 46px; display: grid; place-items: center; color: #09070F; font-family: var(--display); font-weight: 700; background: var(--green); }
.hv2 .rv-name { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 16px; line-height: 1.1; }
.hv2 .rv-role { color: var(--muted); font-size: 12px; margin-top: 3px; font-family: var(--mono); }
.hv2 .rv-nav { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.hv2 .rv-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--panel); cursor: pointer; color: var(--ink); font-size: 19px; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.hv2 .rv-nav button:hover { transform: translateY(-2px); background: var(--green); color: #09070F; border-color: var(--green); }

/* =========== LINKEDIN =========== */
.hv2 .li-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hv2 #linkedin .li-grid { align-items: start; column-gap: 30px; row-gap: 30px; }
.hv2 #linkedin .li-grid .li-card:nth-child(3n+2) { margin-top: 0; }
@media (max-width: 980px) { .hv2 .li-grid { grid-template-columns: 1fr 1fr; } .hv2 #linkedin .li-grid .li-card:nth-child(3n+2) { margin-top: 0; } .hv2 .rv-card { flex: 0 0 300px; max-width: 300px; } }
@media (max-width: 600px) { .hv2 .li-grid { grid-template-columns: 1fr; } }
.hv2 .li-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.hv2 .li-card:hover { transform: translateY(-8px); border-color: var(--line-2); background: var(--panel-2); }
.hv2 .li-accent { height: 4px; background: var(--grad); }
.hv2 .li-imgwrap { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #0E0A18; }
.hv2 .li-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.hv2 .li-card:hover .li-img { transform: scale(1.06); }
.hv2 .li-top { display: flex; align-items: center; gap: 12px; padding: 20px 22px 0; }
.hv2 .li-ava { width: 48px; height: 48px; border-radius: 12px; flex: 0 0 48px; display: grid; place-items: center; background: #09070F; color: #fff; font-family: var(--display); font-weight: 800; font-size: 20px; border: 1px solid var(--line); }
.hv2 .li-ava .x-g { color: var(--green); } .hv2 .li-ava .x-p { color: var(--violet); }
.hv2 .li-name { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 15px; line-height: 1.15; }
.hv2 .li-date { color: var(--muted); font-size: 12px; margin-top: 2px; font-family: var(--mono); }
.hv2 .li-body { padding: 16px 22px 14px; font-size: 14.5px; line-height: 1.6; color: var(--soft); }
.hv2 .li-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 22px 18px; }
.hv2 .li-tag { font-size: 11px; color: var(--green); background: rgba(45,217,118,.1); padding: 3px 10px; border-radius: 100px; font-family: var(--mono); }
.hv2 .li-foot { margin-top: auto; padding: 14px 22px; border-top: 1px solid var(--line); }
.hv2 .li-foot a { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-family: var(--display); font-weight: 600; font-size: 14px; }
.hv2 .li-foot a .ic { width: 20px; height: 20px; background: #0A66C2; color: #fff; border-radius: 4px; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.hv2 .li-foot a .arrow { transition: transform .25s ease; }
.hv2 .li-card:hover .li-foot a .arrow { transform: translateX(4px); }
.hv2 #linkedin .center { margin-top: 36px; }

/* =========== CTA =========== */
.hv2 #contato { padding-top: 40px; }
.hv2 .cta-final { position: relative; border-radius: 28px; overflow: hidden; background: var(--panel); border: 1px solid var(--line-2); color: var(--ink); padding: 84px 48px; text-align: center; }
.hv2 .cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 320px at 80% -25%, rgba(155,123,255,.35), transparent 60%), radial-gradient(520px 320px at 12% 125%, rgba(45,217,118,.3), transparent 60%); }
.hv2 .cta-final > * { position: relative; z-index: 1; }
.hv2 .cta-final h2 { color: var(--ink); font-size: clamp(34px, 4.8vw, 60px); }
.hv2 .cta-final p { color: rgba(236,244,237,.82); font-size: 19px; max-width: 580px; margin: 0 auto 32px; }
.hv2 .cta-final .btn-ghost-x { background: var(--green); color: #09070F; border-color: var(--green); }
.hv2 .cta-final .btn-ghost-x:hover { background: #fff; border-color: #fff; color: #09070F; }

/* ondas removidas neste tema (fluxo escuro contínuo) */
.hv2 .wave-band { display: none; }

/* aurora reaproveitada */
.hv2 .aurora { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; z-index: 0; pointer-events: none; }
.hv2 .aurora--g { width: 380px; height: 380px; background: radial-gradient(circle, rgba(45,217,118,.4), transparent 70%); }
.hv2 .aurora--p { width: 420px; height: 420px; background: radial-gradient(circle, rgba(155,123,255,.4), transparent 70%); }
.hv2 .aurora--t { width: 340px; height: 340px; background: radial-gradient(circle, rgba(31,178,140,.4), transparent 70%); }

/* =========== REVEAL =========== */
.hv2 [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.hv2 [data-reveal].is-in { opacity: 1; transform: none; }
.hv2 [data-reveal-stagger] > * { opacity: 0; translate: 0 34px; transition: opacity .7s cubic-bezier(.2,.7,.2,1), translate .7s cubic-bezier(.2,.7,.2,1), transform .35s ease, box-shadow .3s ease, border-color .3s ease; }
.hv2 [data-reveal-stagger].is-in > * { opacity: 1; translate: 0 0; }
.hv2 [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .1s,.1s,0s,0s,0s; }
.hv2 [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .2s,.2s,0s,0s,0s; }
.hv2 [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .3s,.3s,0s,0s,0s; }

/* =========== SEÇÕES CLARAS DE ALÍVIO (quebram o all-dark) =========== */
.hv2 .section--light { background: #F4F6F4; color: #46564B; }
/* recortes diagonais — sai do corte reto; cada uma inclina pra um lado */
.hv2 #solucoes.section--light {
  clip-path: polygon(0 4.5vw, 100% 0, 100% calc(100% - 4.5vw), 0 100%);
  padding-top: calc(120px + 4.5vw); padding-bottom: calc(120px + 4.5vw); margin-top: -3vw;
}
.hv2 #avaliacoes.section--light {
  clip-path: polygon(0 0, 100% 4.5vw, 100% 100%, 0 calc(100% - 4.5vw));
  padding-top: calc(120px + 4.5vw); padding-bottom: calc(120px + 4.5vw); margin-top: -3vw;
}
/* fina luz no fio do corte diagonal (acento verde→roxo) */
.hv2 #solucoes.section--light::after, .hv2 #avaliacoes.section--light::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 100%; z-index: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(45,217,118,.12), transparent 26%);
}
@media (max-width: 700px) {
  .hv2 #solucoes.section--light, .hv2 #avaliacoes.section--light {
    clip-path: none; padding-top: 84px; padding-bottom: 84px; margin-top: 0;
  }
}
.hv2 .section--light::before { opacity: 1;
  background-image: linear-gradient(rgba(21,33,26,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(21,33,26,.05) 1px, transparent 1px); }
.hv2 .section--light h2, .hv2 .section--light h3, .hv2 .section--light .section-head h2, .hv2 .section--light .rv-score { color: #15211A; }
.hv2 .section--light .lead, .hv2 .section--light p { color: #46564B; }
.hv2 .section--light .eyebrow { color: var(--green-deep); background: rgba(31,164,99,.08); border-color: rgba(31,164,99,.22); }
.hv2 .section--light .eyebrow .dot { background: var(--violet-deep); box-shadow: 0 0 8px rgba(99,52,240,.5); }
.hv2 .section--light .u { color: var(--green-deep); }
/* cards de soluções claros */
.hv2 .section--light .card-x { background: #fff; border-color: #E6EBE6; }
.hv2 .section--light .card-x:hover { background: #fff; border-color: transparent; box-shadow: 0 24px 60px rgba(21,33,26,.13); }
.hv2 .section--light .card-x h3 { color: #15211A; }
.hv2 .section--light .card-x p { color: #46564B; }
.hv2 .section--light .card-x .ic { background: rgba(31,164,99,.1); color: var(--green-deep); }
.hv2 .section--light .card-x:hover .ic { background: var(--green-deep); color: #fff; }
.hv2 .section--light .card-x::before { color: var(--violet-deep); opacity: .85; }
.hv2 .section--light .card-x .tag { color: var(--violet-deep); }
.hv2 .section--light .card-x::after { background: radial-gradient(280px circle at var(--mx,50%) var(--my,0%), rgba(99,52,240,.1), transparent 60%); }
/* avaliações claras */
.hv2 .section--light .rv-card { background: #fff; border-color: #E6EBE6; }
.hv2 .section--light .rv-card:hover { background: #fff; border-color: transparent; box-shadow: 0 24px 60px rgba(21,33,26,.13); }
.hv2 .section--light .rv-quote { color: #46564B; }
.hv2 .section--light .rv-name { color: #15211A; }
.hv2 .section--light .rv-google { background: #fff; border-color: #E6EBE6; color: #15211A; }
.hv2 .section--light .rv-nav button { background: #fff; border-color: #E6EBE6; color: #15211A; }
.hv2 .section--light .rv-nav button:hover { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.hv2 .section--light .rv-track::-webkit-scrollbar-thumb { background: #D8E0D8; }

@media (max-width: 980px) {
  .hv2 .cards { grid-template-columns: 1fr; }
  .hv2 .group-row { grid-template-columns: 1fr; }
  .hv2 .section { padding: 84px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hv2 *, .hv2 *::before, .hv2 *::after { animation: none !important; transition: none !important; }
  .hv2 [data-reveal], .hv2 [data-reveal-stagger] > *, .hv2 .hero__inner > * { opacity: 1 !important; transform: none !important; translate: none !important; }
}

/* logos do grupo + avatar LinkedIn (favicon) */
.hv2 .group-logo { background:#fff; padding:8px; }
.hv2 .li-ava img { width:100%; height:100%; object-fit:contain; padding:8px; }

/* =====================================================
   FAIXAS LARGAS (frentes de atuação) — full-bleed alternado
   ===================================================== */
.hv2 .faixa { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 80vh; position: relative; }
.hv2 .faixa::before { display: none; }
.hv2 .faixa-media { position: relative; min-height: 80vh; overflow: hidden; }
.hv2 .faixa-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hv2 .faixa-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--bg) 100%); }
.hv2 .faixa--rev .faixa-media::after { background: linear-gradient(270deg, transparent 55%, var(--bg) 100%); }
.hv2 .faixa-num { position: absolute; top: 30px; left: 34px; z-index: 2; font-family: var(--mono); font-weight: 600; font-size: 15px; letter-spacing: .12em; color: var(--green); background: rgba(9,7,15,.5); border: 1px solid rgba(255,255,255,.18); padding: 5px 11px; border-radius: 8px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.hv2 .faixa-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 96px clamp(40px, 6vw, 110px); }
.hv2 .faixa-text > * { max-width: 600px; }
.hv2 .faixa-text h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 18px; }
.hv2 .faixa-text p { font-size: 17px; color: var(--soft); margin-bottom: 22px; }
.hv2 .faixa-logo { height: 56px; width: auto; max-width: 180px; object-fit: contain; background: #fff; border-radius: 12px; padding: 8px 12px; margin-bottom: 20px; }
.hv2 .faixa-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 11px; }
.hv2 .faixa-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-size: 15.5px; line-height: 1.45; }
.hv2 .faixa-list li::before { content: "✓"; flex: 0 0 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(45,217,118,.14); color: var(--green); font-size: 12px; font-weight: 700; margin-top: 1px; }
/* faixa alternada com leve variação de fundo no texto */
.hv2 .faixa--rev .faixa-text { background: var(--bg-2); }
.hv2 .faixa .faixa-text { animation: none; }
@media (max-width: 980px) {
  .hv2 .faixa, .hv2 .faixa--rev { grid-template-columns: 1fr; min-height: 0; }
  .hv2 .faixa-media { min-height: 300px; height: 300px; order: 1 !important; }
  .hv2 .faixa-text { order: 2 !important; padding: 48px 24px; }
  .hv2 .faixa-media::after { background: linear-gradient(0deg, var(--bg), transparent 45%) !important; }
}

/* =====================================================
   REFINAMENTOS DAS FAIXAS (Amazon Tree-like)
   ===================================================== */
/* alternar o lado da imagem */
.hv2 .faixa--rev .faixa-media { order: 2; }
.hv2 .faixa--rev .faixa-text { order: 1; }
/* fundo do texto por faixa: escura (padrão) x clara (intercalada) */
.hv2 .faixa:not(.faixa--light) .faixa-text { background: var(--bg); }
.hv2 .faixa--light .faixa-text { background: #F4F6F4; }
.hv2 .faixa--light .faixa-text h2 { color: #15211A; }
.hv2 .faixa--light .faixa-text p { color: #46564B; }
.hv2 .faixa--light .faixa-text .u { color: var(--green-deep); }
.hv2 .faixa--light .faixa-text .eyebrow { color: var(--green-deep); background: rgba(31,164,99,.08); border-color: rgba(31,164,99,.22); }
.hv2 .faixa--light .faixa-text .faixa-list li { color: #29382f; }
/* blend do gradiente da imagem conforme lado/fundo */
.hv2 .faixa:not(.faixa--light):not(.faixa--rev) .faixa-media::after { background: linear-gradient(90deg, transparent 55%, var(--bg) 100%); }
.hv2 .faixa--rev:not(.faixa--light) .faixa-media::after { background: linear-gradient(270deg, transparent 55%, var(--bg) 100%); }
.hv2 .faixa--light:not(.faixa--rev) .faixa-media::after { background: linear-gradient(90deg, transparent 55%, #F4F6F4 100%); }
.hv2 .faixa--rev.faixa--light .faixa-media::after { background: linear-gradient(270deg, transparent 55%, #F4F6F4 100%); }
/* acento de cor intercalado: faixas escuras = violeta, claras = verde */
.hv2 .faixa:not(.faixa--light) .u { color: var(--violet); }
.hv2 .faixa:not(.faixa--light) .faixa-num { color: var(--violet); }
/* logo do grupo sem chip (transparente) */
.hv2 .faixa-logo { background: transparent; padding: 0; height: 110px; width: auto; max-width: 100%; align-self: flex-start; }
/* revelar texto em sequência (mais filhos) */
.hv2 [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .4s,.4s,0s,0s,0s; }
.hv2 [data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .5s,.5s,0s,0s,0s; }
/* parallax: imagem levemente maior p/ não revelar bordas ao mover */
.hv2 .faixa-media img { will-change: transform; transform: scale(1.14); }

/* corrige o espaço entre faixas (template aplica padding em <section>) */
.hv2 .faixa { padding: 0 !important; }
.hv2 .faixa-media img { transform: scale(1.2); }

/* rodapé/observação das faixas + stagger estendido */
.hv2 .faixa-foot { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin: -6px 0 26px; letter-spacing: .02em; }
.hv2 .faixa--light .faixa-foot { color: #6b7a70; }
.hv2 [data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: .58s,.58s,0s,0s,0s; }
.hv2 [data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: .66s,.66s,0s,0s,0s; }

/* =====================================================================
   ESCALA PARA TELAS GRANDES (monitores wide / alta resolução)
   O "ajuste automático de tela": em telas largas o container alarga e
   as fontes crescem proporcionalmente, para ler confortável sem zoom.
   Laptop, tablet e celular não são afetados.
   ===================================================================== */
@media (min-width: 1500px) {
  .hv2 .wrap { max-width: 1620px; }
  .hv2 .hero__inner { max-width: 1160px; }
  .hv2 .hero h1 { font-size: clamp(74px, 5.2vw, 88px); }
  .hv2 .hero__sub { font-size: 23px; max-width: 620px; }
  .hv2 .hero__trust { font-size: 15px; }
  .hv2 .ticker span { font-size: 16.5px; }
  .hv2 .eyebrow { font-size: 13px; }
  .hv2 .lead { font-size: 21px; }
  .hv2 .section-head h2 { font-size: clamp(60px, 5.2vw, 78px); }
  .hv2 .faixa-text h2 { font-size: clamp(52px, 4vw, 66px); }
  .hv2 .faixa-text p { font-size: 19px; }
  .hv2 .faixa-list li { font-size: 17px; }
  .hv2 .faixa-foot { font-size: 14px; }
  .hv2 .map-head h2 { font-size: clamp(46px, 4vw, 64px); }
  .hv2 .map-head p { font-size: 19px; }
  .hv2 .map-stat b { font-size: clamp(38px, 2.6vw, 46px); }
  .hv2 .rv-card .rv-quote { font-size: 18px; }
  .hv2 .li-body { font-size: 16px; }
  .hv2 .cta-final h2 { font-size: clamp(56px, 4.8vw, 72px); }
  .hv2 .cta-final p { font-size: 21px; }
  .hv2 .btn-x { font-size: 17px; }
  header .navbar-nav .nav-link { font-size: 16px; }
}
@media (min-width: 1900px) {
  .hv2 .wrap { max-width: 1800px; }
  .hv2 .hero__inner { max-width: 1280px; }
  .hv2 .hero h1 { font-size: clamp(88px, 5.2vw, 100px); }
  .hv2 .hero__sub { font-size: 25px; max-width: 660px; }
  .hv2 .ticker span { font-size: 18px; }
  .hv2 .lead { font-size: 23px; }
  .hv2 .faixa-text p { font-size: 21px; }
  .hv2 .faixa-list li { font-size: 18.5px; }
  .hv2 .rv-card .rv-quote { font-size: 20px; }
  .hv2 .li-body { font-size: 17px; }
  .hv2 .cta-final p { font-size: 23px; }
  header .navbar-nav .nav-link { font-size: 17px; }
}
