/* =========================================================
   INVICTOS MARKETING — style.css
   Tema: dark / gold — moderno, tecnológico, premium
   ========================================================= */

:root{
  /* Paleta da marca */
  --gold: #c89116;
  --gold-light: #f0ce6f;
  --gold-dark: #8f6710;
  --gray: #737373;
  --white: #ffffff;
  --black: #000000;

  /* Superfícies */
  --bg: #08070a;
  --bg-alt: #0f0e10;
  --surface: #15141a;
  --surface-2: #1b1a20;
  --border: rgba(200,145,22,0.18);
  --border-soft: rgba(255,255,255,0.08);

  /* Texto */
  --text: #f5f3ee;
  --text-muted: #a9a7ad;
  --text-dim: #737373;

  /* Tipografia */
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Util */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-gold: 0 8px 30px rgba(200,145,22,0.25);
  --ease: cubic-bezier(.22,1,.36,1);
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: opacity .5s var(--ease);
}
body.preload{ opacity: 0; }

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:700; color:var(--white); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
input,textarea,select{ font-family: inherit; }

.container{
  width:100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon{ width:1em; height:1em; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
/* ícones "preenchidos" (sólidos): spark, whatsapp, instagram, quote */
.icon--fill{ fill: currentColor; stroke:none; }

.text-gradient{
  background: linear-gradient(95deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 14px;
}
.eyebrow::before{
  content:"";
  width: 18px; height: 2px;
  background: var(--gold);
  display:inline-block;
}

.section-title{
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.section-subtitle{
  font-size: clamp(22px,2.6vw,28px);
  color: var(--white);
}
.section-lead{
  color: var(--text-muted);
  font-size: 17px;
  max-width: 620px;
  line-height:1.7;
}
.section-head{
  max-width: 720px;
  margin: 0 0 56px;
}
.section-head .section-lead{ margin-top:6px; }

.section{ padding: 110px 0; position:relative; }
.section--alt{ background: var(--bg-alt); }

/* ============ Botões ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 14.5px;
  letter-spacing:.02em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn .icon{ transition: transform .3s var(--ease); }
.btn:hover .icon{ transform: translateX(3px); }
.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: linear-gradient(95deg, var(--gold-light), var(--gold));
  color: #1a1305;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover{ box-shadow: 0 14px 36px rgba(200,145,22,0.38); }

.btn--outline{
  border-color: var(--border-soft);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.btn--outline:hover{ border-color: var(--gold); color: var(--gold-light); }

.btn--ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}
.btn--ghost:hover{ color: var(--gold-light); border-color: var(--gold); }

.btn--sm{ padding: 10px 18px; font-size: 13px; }
.btn--lg{ padding: 18px 38px; font-size: 15.5px; }
.btn--block{ width:100%; }

/* ============ Page loader ============ */
.page-loader{
  position: fixed; inset:0; z-index: 999;
  background: var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader__logo{ width:48px; opacity:.9; animation: pulse 1.4s ease-in-out infinite; }
.page-loader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
@keyframes pulse{ 0%,100%{ opacity:.5; transform:scale(.94); } 50%{ opacity:1; transform:scale(1); } }

/* ============ Header ============ */
.header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  height: var(--header-h);
  display:flex; align-items:center;
  background: rgba(8,7,10,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease);
}
.header.is-scrolled{
  background: rgba(8,7,10,0.86);
  border-color: var(--border-soft);
  height: 72px;
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.brand{ display:flex; align-items:center; gap:10px; margin-left:-19px; }
.brand__icon{ width:28px; height:auto; }
.brand__word{ width:96px; height:auto; }

.nav__list{ display:flex; align-items:center; gap:30px; }
.nav__list a{
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight:600;
  letter-spacing:.03em;
  color: var(--text-muted);
  position:relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__list a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background: var(--gold); transition: right .3s var(--ease);
}
.nav__list a:hover{ color: var(--white); }
.nav__list a:hover::after{ right:0; }

.header__actions{ display:flex; align-items:center; gap:14px; }

.lang-switch{ display:flex; border:1px solid var(--border-soft); border-radius:999px; padding:3px; gap:2px; }
.lang-switch__btn{
  background:transparent; border:none; color: var(--text-muted);
  font-family: var(--font-display); font-size:12.5px; font-weight:700;
  padding: 6px 13px; border-radius:999px; letter-spacing:.04em;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-switch__btn.is-active{ background: var(--gold); color:#1a1305; }

.nav-toggle{
  display:none; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:10px;
  background: rgba(255,255,255,0.04); border:1px solid var(--border-soft);
  color: var(--white);
}

@media (max-width: 980px){
  .header__whatsapp span{ display:none; }
  .header__whatsapp{ padding:10px; }
  .header__whatsapp .icon{ width:18px; height:18px; }
}

@media (max-width: 860px){
  .nav{
    position: fixed; top: 72px; left:0; right:0; bottom:0;
    background: rgba(8,7,10,0.98);
    backdrop-filter: blur(10px);
    display:flex; align-items:flex-start; justify-content:center;
    padding: 40px 24px;
    transform: translateY(-12px);
    opacity:0; visibility:hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    z-index:400;
  }
  .nav.is-open{ opacity:1; visibility:visible; transform:none; }
  .nav__list{ flex-direction:column; align-items:center; gap:26px; width:100%; }
  .nav__list a{ font-size:18px; }
  .nav-toggle{ display:flex; }
}

/* ============ Hero ============ */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding: calc(var(--header-h) + 40px) 0 120px;
  overflow:hidden;
  text-align:center;
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__glow{ position:absolute; border-radius:50%; filter: blur(90px); opacity:.35; }
.hero__glow--a{ width:560px; height:560px; background: var(--gold); top:-180px; left:-120px; }
.hero__glow--b{ width:480px; height:480px; background:#5a3f08; bottom:-200px; right:-100px; }
.hero__grid{
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 40%, transparent 90%);
}
.hero__orb{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-46%);
  width:min(760px,86vw); height:min(760px,86vw);
  opacity:.6;
}
@media (max-width:720px){ .hero__orb{ opacity:.4; } }
.hero__inner{ position:relative; z-index:1; max-width: 880px; }
.hero__headline{
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 18px 0 24px;
}
.hero__headline span{ display:inline; }
.hero__subheadline{
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero__actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.hero__scroll{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:12px; color: var(--text-dim); letter-spacing:.05em; text-transform:uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob{ 0%,100%{ transform:translate(-50%,0); } 50%{ transform:translate(-50%,8px); } }

/* ============ Marquee ============ */
.marquee{
  border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft);
  background: var(--bg-alt);
  overflow:hidden; padding: 18px 0;
}
.marquee__track{
  display:flex; gap:48px; white-space:nowrap; width:max-content;
  animation: scroll-left 38s linear infinite;
}
.marquee__item{
  font-family: var(--font-display); font-size:14px; font-weight:600;
  color: var(--text-dim); letter-spacing:.02em;
  display:flex; align-items:center; gap:14px;
}
.marquee__item::after{ content:"✦"; color: var(--gold); font-size:11px; }
@keyframes scroll-left{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ============ Estatísticas ============ */
.stats{ padding: 64px 0; background: var(--bg-alt); border-bottom:1px solid var(--border-soft); }
.stats__inner{ display:grid; grid-template-columns: repeat(3,1fr); gap:32px; text-align:center; }
.stat{ display:flex; flex-direction:column; gap:8px; }
.stat__value{
  font-family: var(--font-display); font-weight:800; font-size: clamp(36px,5vw,52px);
  background: linear-gradient(95deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label{ color: var(--text-muted); font-size:14px; letter-spacing:.01em; }
@media (max-width:720px){ .stats__inner{ grid-template-columns:1fr; gap:28px; } }

/* ============ Sobre / MVV ============ */
.section-grid--about{
  display:grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items:center;
  margin-bottom: 90px;
}
.about__media{ display:flex; justify-content:center; }
.about__logo{ width: 200px; opacity:.92; filter: drop-shadow(0 20px 40px rgba(200,145,22,.18)); }
.about__paragraphs p{ color: var(--text-muted); margin-bottom: 16px; font-size:16px; line-height:1.75; }
.about__paragraphs p:last-child{ margin-bottom:0; }

.mvv__grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-top:28px; }
.mvv__card{
  background: var(--surface); border:1px solid var(--border-soft); border-radius: var(--radius);
  padding: 28px;
}
.mvv__tag{
  display:inline-block; font-family:var(--font-display); font-weight:700; font-size:13px;
  color:#1a1305; background: linear-gradient(95deg, var(--gold-light), var(--gold));
  padding:5px 14px; border-radius:999px; margin-bottom:14px; letter-spacing:.03em;
}
.mvv__card p{ color: var(--text-muted); line-height:1.65; font-size:15px; }
.mvv__values{ display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.mvv__values li{
  font-size: 13px; color: var(--text); background: rgba(255,255,255,0.05);
  border:1px solid var(--border-soft); padding:6px 12px; border-radius:999px;
}

/* ============ Cards genéricos (serviços / equipe / planos / depoimentos) ============ */
.cards-grid{ display:grid; gap:24px; }
.cards-grid--3{ grid-template-columns: repeat(3,1fr); }
.cards-grid--2{ grid-template-columns: repeat(2,1fr); }
.cards-grid--4{ grid-template-columns: repeat(4,1fr); }

.card{
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover{ transform: translateY(-6px); border-color: var(--border); box-shadow: 0 18px 40px rgba(0,0,0,.35); }

.service-card__icon{
  width:54px; height:54px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(200,145,22,.22), rgba(200,145,22,.05));
  color: var(--gold-light);
  margin-bottom: 22px;
}
.service-card__icon .icon{ width:26px; height:26px; }
.service-card h3{ font-size:20px; margin-bottom:12px; }
.service-card p{ color: var(--text-muted); font-size:15px; line-height:1.7; margin-bottom:20px; }
.service-card__list{ display:flex; flex-direction:column; gap:10px; }
.service-card__list li{ display:flex; align-items:center; gap:10px; font-size:14px; color: var(--text); }
.service-card__list .icon{ width:15px; height:15px; color: var(--gold); flex-shrink:0; }

.team-card{ display:flex; gap:20px; align-items:flex-start; }
.team-card__avatar{
  width:64px; height:64px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color:#1a1305; font-family:var(--font-display); font-weight:800; font-size:22px;
}
.team-card__avatar--photo{
  background: none; padding:2px;
  box-shadow: 0 0 0 2px var(--gold-light), 0 0 0 4px rgba(200,145,22,.18);
}
.team-card__avatar--photo img{
  width:100%; height:100%; border-radius:50%; object-fit:cover; display:block;
}
.team-card h3{ font-size:18px; margin-bottom:2px; }
.team-card__role{ color: var(--gold-light); font-size:13px; font-weight:600; letter-spacing:.03em; display:block; margin-bottom:10px; }
.team-card p{ color: var(--text-muted); font-size:14.5px; line-height:1.65; }

.plan-card{ display:flex; flex-direction:column; position:relative; }
.plan-card--highlight{
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(200,145,22,.10), var(--surface) 60%);
}
.plan-card__badge{
  position:absolute; top:-13px; right:24px;
  background: linear-gradient(95deg, var(--gold-light), var(--gold));
  color:#1a1305; font-family:var(--font-display); font-weight:700; font-size:11.5px;
  padding: 5px 14px; border-radius:999px; letter-spacing:.03em;
}
.plan-card h3{ font-size:19px; margin-bottom:10px; }
.plan-card p{ color: var(--text-muted); font-size:14.5px; line-height:1.6; margin-bottom:22px; flex-grow:1; }
.plan-card__price{ display:flex; align-items:baseline; gap:6px; margin-bottom:22px; }
.plan-card__price strong{ font-family: var(--font-display); font-size:28px; color: var(--white); }
.plan-card__price span{ color: var(--text-dim); font-size:13px; }

.testimonial-card .icon{ width:26px; height:26px; color: var(--gold); margin-bottom:18px; }
.testimonial-card p{ color: var(--text); font-size:16px; line-height:1.7; margin-bottom:18px; font-style: italic; }
.testimonial-card__author{ color: var(--text-dim); font-size:13.5px; font-weight:600; }

/* ============ Por que escolher (why) ============ */
.why{
  position:relative;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(200,145,22,.08), transparent 70%),
    var(--bg);
  border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft);
  text-align:center;
}
.why__inner{ max-width: 760px; }
.why__title{ font-size: clamp(26px,3.2vw,38px); margin-bottom:22px; }
.why__paragraphs p{ color: var(--text-muted); font-size:16.5px; line-height:1.8; margin-bottom:14px; }

/* ============ Processo (linhas numeradas alternadas) ============ */
.process-rows{ position:relative; max-width: 880px; margin:0 auto; }
.process-row{
  display:flex; align-items:center; gap:40px;
  padding: 32px 0; border-bottom:1px solid var(--border-soft);
}
.process-row:last-child{ border-bottom:none; }
.process-row:nth-child(even){ flex-direction: row-reverse; }
.process-row__art{
  width:64px; height:64px; border-radius:18px; flex-shrink:0;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(200,145,22,.16), transparent);
  display:flex; align-items:center; justify-content:center; color: var(--gold-light);
}
.process-row__art .icon{ width:28px; height:28px; }
.process-row__body{ flex:1; }
.process-row:nth-child(even) .process-row__body{ text-align:right; }
.process-row__num{
  font-family: var(--font-display); font-weight:800; font-size:13px; color: var(--gold-light);
  letter-spacing:.05em; display:block; margin-bottom:6px;
}
.process-row h3{ font-size:18px; margin-bottom:6px; }
.process-row p{ color: var(--text-muted); font-size:14.5px; line-height:1.6; max-width:420px; }
.process-row:nth-child(even) p{ margin-left:auto; }

/* ============ FAQ (acordeão) ============ */
.faq-list{ max-width: 760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background: var(--surface); border:1px solid var(--border-soft); border-radius: var(--radius);
  padding: 6px 26px; transition: border-color .3s var(--ease);
}
.faq-item[open]{ border-color: var(--border); }
.faq-item summary{
  list-style:none; cursor:pointer; padding: 20px 0;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family: var(--font-display); font-weight:600; font-size:15.5px; color: var(--white);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item__chevron{ color: var(--gold); flex-shrink:0; transition: transform .3s var(--ease); }
.faq-item[open] .faq-item__chevron{ transform: rotate(180deg); }
.faq-item p{ color: var(--text-muted); font-size:14.5px; line-height:1.7; padding: 0 0 22px; }

/* ============ WhatsApp flutuante ============ */
.whatsapp-float{
  position: fixed; right:24px; bottom:24px; z-index:450;
  width:58px; height:58px; border-radius:50%;
  background: linear-gradient(135deg,#25d366,#1ebe5d);
  color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float::before{
  content:""; position:absolute; inset:-6px; border-radius:50%;
  border:2px solid rgba(37,211,102,.45);
  animation: wa-pulse 2.4s ease-out infinite;
}
.whatsapp-float:hover{ transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 36px rgba(37,211,102,.45); }
@keyframes wa-pulse{ 0%{ transform:scale(.92); opacity:.9; } 100%{ transform:scale(1.35); opacity:0; } }
@media (max-width:720px){ .whatsapp-float{ width:52px; height:52px; right:16px; bottom:16px; } }

/* ============ CTA final ============ */
.cta-final{
  position:relative; overflow:hidden;
  padding: 110px 0;
  background: linear-gradient(160deg, #16130a, var(--bg) 70%);
  text-align:center;
}
.cta-final::before{
  content:""; position:absolute; width:700px; height:700px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,22,.18), transparent 70%);
  top:-260px; left:50%; transform:translateX(-50%);
}
.cta-final__inner{ position:relative; z-index:1; max-width: 700px; }
.cta-final__headline{ font-size: clamp(28px,3.6vw,42px); margin-bottom:18px; }
.cta-final__sub{ color: var(--text-muted); font-size:16.5px; margin-bottom:36px; line-height:1.7; }

/* ============ Formulário ============ */
.form-section{ background: var(--bg-alt); }
.section-grid--form{ display:grid; grid-template-columns: .85fr 1.15fr; gap:60px; align-items:flex-start; }
.form-section__intro .section-lead{ margin-bottom: 28px; }
.form-section__contacts{ display:flex; flex-direction:column; gap:14px; }
.form-section__contacts li{ display:flex; align-items:center; gap:10px; font-size:15px; }
.form-section__contacts .icon{ color: var(--gold); width:18px; height:18px; }
.form-section__contacts a:hover{ color: var(--gold-light); }

.lead-form{
  background: var(--surface); border:1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 36px; display:flex; flex-direction:column; gap:18px;
}
.lead-form__row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field span{ font-size:13px; font-weight:600; color: var(--text-muted); letter-spacing:.02em; }
.field input, .field select, .field textarea{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 14.5px;
  outline:none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold); background: rgba(200,145,22,0.06);
}
.field select{ appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89116' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 14px center; background-size:16px; }
.hp-field{ position:absolute; opacity:0; height:0; width:0; pointer-events:none; }

.lead-form__privacy{ font-size:12.5px; color: var(--text-dim); text-align:center; }
.lead-form__feedback{ font-size:14px; text-align:center; min-height:20px; font-weight:600; }
.lead-form__feedback.is-success{ color: #6fcf73; }
.lead-form__feedback.is-error{ color: #e07a7a; }

/* ============ Footer ============ */
.footer{ background: #0c0b0d; border-top:1px solid var(--border-soft); padding-top: 70px; }
.footer__inner{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer__brand{ display:flex; flex-direction:column; gap:16px; }
.footer__logo{ width:34px; opacity:.85; }
.footer__brand p{ color: var(--text-dim); font-size:14px; max-width:280px; line-height:1.6; }
.footer__col h4{ font-size:14px; color:var(--white); margin-bottom:18px; letter-spacing:.02em; }
.footer__col ul{ display:flex; flex-direction:column; gap:12px; }
.footer__col a{ color: var(--text-dim); font-size:14px; transition: color .25s var(--ease); }
.footer__col a:hover{ color: var(--gold-light); }
.footer__contacts li{ display:flex; align-items:center; gap:8px; }
.footer__contacts .icon{ width:14px; height:14px; color: var(--gold); }
.footer__bottom{
  border-top: 1px solid var(--border-soft);
  padding: 22px 24px; text-align:center;
  color: var(--text-dim); font-size:13px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:6px 18px;
}
.footer__members-link{ color: var(--text-dim); font-size:13px; transition: color .25s var(--ease); }
.footer__members-link:hover{ color: var(--gold-light); }

/* ============ Scroll reveal ============ */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ============ Responsivo ============ */
@media (max-width: 980px){
  .cards-grid--4{ grid-template-columns: repeat(2,1fr); }
  .cards-grid--3{ grid-template-columns: repeat(2,1fr); }
  .section-grid--about{ grid-template-columns: 1fr; gap:36px; }
  .about__media{ order:2; }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }
}

@media (max-width: 720px){
  .section{ padding: 80px 0; }
  .cards-grid--4, .cards-grid--3, .cards-grid--2{ grid-template-columns: 1fr; }
  .mvv__grid{ grid-template-columns: 1fr; }
  .section-grid--form{ grid-template-columns: 1fr; gap:40px; }
  .lead-form{ padding: 26px; }
  .lead-form__row{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; gap:36px; }
  .hero__actions{ flex-direction:column; width:100%; }
  .hero__actions .btn{ width:100%; }
  .process-row,
  .process-row:nth-child(even){ flex-direction:column; align-items:flex-start; gap:18px; text-align:left; }
  .process-row__body,
  .process-row:nth-child(even) .process-row__body{ text-align:left; }
  .process-row p,
  .process-row:nth-child(even) p{ margin-left:0; }
  .process-row__art{ width:52px; height:52px; }
  .faq-item{ padding: 4px 18px; }
}
