/* ============================================================
   Grupo Vulpes — Site institucional (home)
   Design system + estilos
   ============================================================ */

:root {
  /* Marca */
  --orange:        #F26522;
  --orange-light:  #FF8A3D;
  --orange-dark:   #C9480F;
  --charcoal:      #2B2F33;
  --charcoal-2:    #34383D;
  --charcoal-3:    #3E444A;

  /* Neutros */
  --ink:      #1C1E21;
  --body:     #3A3F45;
  --muted:    #6B7075;
  --line:     #E4E6E9;
  --gray-50:  #F7F8FA;
  --gray-100: #F1F2F4;
  --gray-200: #E6E7E9;
  --white:    #FFFFFF;

  /* Acentos por empresa */
  --c-log:   #F26522;
  --c-const: #E0561A;
  --c-posto: #F58220;
  --c-lamar: #16924A;
  --c-lamar-2: #F4C430;

  /* Sistema */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(20,22,25,.06);
  --shadow:    0 12px 34px rgba(20,22,25,.10);
  --shadow-lg: 0 24px 60px rgba(20,22,25,.16);
  --ease:      cubic-bezier(.22,.61,.36,1);

  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Utilitários ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
/* offset para âncoras (#grupo, #setores, #contato) não ficarem sob o header fixo */
[id] { scroll-margin-top: 88px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.85rem); }
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242,101,34,.34); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(242,101,34,.42); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange-dark); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 18px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand svg { width: 42px; height: 42px; }
.brand-logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,.28)); }
.brand-name { font-family: var(--font-head); font-weight: 800; letter-spacing: .16em; font-size: 1.02rem; line-height: 1; color: #fff; transition: color .3s; }
.brand-name small { display: block; font-size: .58rem; letter-spacing: .34em; color: var(--orange-light); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.86); transition: color .2s; }
.nav a:hover { color: #fff; }
.header-cta { display: inline-flex; }

/* header sólido ao rolar */
.site-header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.site-header.scrolled .brand-name { color: var(--ink); }
.site-header.scrolled .nav a { color: var(--body); }
.site-header.scrolled .nav a:hover { color: var(--orange-dark); }
.site-header.scrolled .btn-ghost { color: var(--ink); border-color: var(--line); }
.site-header.scrolled .btn-ghost:hover { border-color: var(--orange); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #4a3326 0%, transparent 55%),
              linear-gradient(160deg, #33383D 0%, #24282C 60%, #1B1E21 100%);
  padding: clamp(130px, 18vh, 190px) 0 clamp(70px, 10vw, 120px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 500px at 88% 30%, rgba(242,101,34,.20), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--orange-light); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; }
.hero-stats .stat strong { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: #fff; display: block; line-height: 1; }
.hero-stats .stat span { font-size: .86rem; color: rgba(255,255,255,.62); letter-spacing: .02em; }

.hero-mark { position: relative; display: grid; place-items: center; }
.hero-mark .glow {
  position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.55) 0%, rgba(242,101,34,.28) 38%, transparent 66%);
  filter: blur(10px); animation: haloPulse 3.6s ease-in-out infinite;
}
.hero-mark svg, .hero-mark img { position: relative; width: min(340px, 78%); }
/* Marca com efeito neon */
.neon-mark {
  filter:
    drop-shadow(0 0 10px rgba(255,138,61,.75))
    drop-shadow(0 0 26px rgba(242,101,34,.55))
    drop-shadow(0 14px 30px rgba(0,0,0,.45));
  animation: neonPulse 3.6s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,138,61,.55)) drop-shadow(0 0 20px rgba(242,101,34,.4)) drop-shadow(0 14px 30px rgba(0,0,0,.45)); }
  50%      { filter: drop-shadow(0 0 16px rgba(255,138,61,.95)) drop-shadow(0 0 40px rgba(242,101,34,.7)) drop-shadow(0 14px 30px rgba(0,0,0,.45)); }
}
@keyframes haloPulse {
  0%, 100% { opacity: .7; transform: scale(.97); }
  50%      { opacity: 1;  transform: scale(1.04); }
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-tag { font-size: .8rem; font-weight: 600; font-family: var(--font-head); padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.9); }

/* faixa de segmentos */
.segments-bar { background: var(--orange); color: #fff; }
.segments-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 18px; }
.segments-bar span { font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 10px; }
.segments-bar span::before { content: ""; width: 7px; height: 7px; background: #fff; border-radius: 50%; }

/* ============================================================
   Sobre
   ============================================================ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-figure { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(150deg, var(--charcoal), #1c1f22); min-height: 380px; display: grid; place-items: center; box-shadow: var(--shadow); }
.about-figure .mark { position: relative; z-index: 1; width: 64%; filter: drop-shadow(0 0 16px rgba(242,101,34,.45)) drop-shadow(0 12px 26px rgba(0,0,0,.4)); }
.about-figure .bg-word { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 7rem; letter-spacing: .1em; color: rgba(255,255,255,.04); }
.about-points { display: grid; gap: 18px; margin-top: 26px; }
.about-points li { position: relative; padding-left: 34px; color: var(--body); }
.about-points li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(242,101,34,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9480F' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.about-points li strong { color: var(--ink); font-family: var(--font-head); }

/* ============================================================
   Empresas
   ============================================================ */
.empresas { background: var(--white); }
.empresas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.empresas-grid.one { grid-template-columns: minmax(0, 620px); }
.empresa-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.empresa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.empresa-top { position: relative; padding: 30px 30px 26px; color: #fff; overflow: hidden; }
.empresa-top::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.08); }
.empresa-card[data-c="log"]   .empresa-top { background: linear-gradient(135deg, #F26522, #C9480F); }
.empresa-card[data-c="const"] .empresa-top { background: linear-gradient(135deg, #3E444A, #24282C); }
.empresa-card[data-c="posto"] .empresa-top { background: linear-gradient(135deg, #F58220, #E0561A); }
.empresa-card[data-c="lamar"] .empresa-top { background: linear-gradient(135deg, #16924A, #0E6B36); }
.empresa-badge { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; background: rgba(0,0,0,.18); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.empresa-name { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; margin: 0; letter-spacing: .01em; }
.empresa-seg { position: relative; z-index: 2; font-size: .92rem; color: rgba(255,255,255,.82); margin-top: 4px; }
.empresa-body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.empresa-body p { color: var(--muted); font-size: .98rem; }
.empresa-serv { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 22px; }
.empresa-serv li { font-size: .8rem; font-weight: 600; font-family: var(--font-head); color: var(--body); background: var(--gray-100); border: 1px solid var(--line); padding: 5px 11px; border-radius: 8px; }
.empresa-foot { margin-top: auto; display: flex; align-items: center; gap: 16px; }
.empresa-link { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--orange-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.empresa-card[data-c="const"] .empresa-link { color: #24282C; }
.empresa-card[data-c="lamar"] .empresa-link { color: #0E6B36; }
.empresa-link:hover { gap: 11px; }

/* ============================================================
   Valores / diferenciais
   ============================================================ */
.valores { background: #fff; }
.valores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.valor {
  padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--gray-50);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.valor:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.valor-ic { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 8px 18px rgba(242,101,34,.3); }
.valor-ic svg { width: 26px; height: 26px; stroke: #fff; }
.valor h3 { font-size: 1.16rem; margin-bottom: 8px; }
.valor p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ============================================================
   CTA / contato
   ============================================================ */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: radial-gradient(900px 500px at 50% -20%, rgba(242,101,34,.28), transparent 60%),
              linear-gradient(160deg, #34383D, #1B1E21);
}
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #16181B; color: rgba(255,255,255,.72); padding: 64px 0 28px; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 46px; }
.footer-brand .brand-name { color: #fff; }
.site-footer .brand-logo { height: 42px; }
.footer-brand p { margin-top: 16px; max-width: 300px; color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.66); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; padding: 6px 0; color: rgba(255,255,255,.72); }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--orange-light); flex: none; margin-top: 3px; }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.social a:hover { background: var(--orange); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .86rem; color: rgba(255,255,255,.5); }

/* Botão flutuante WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 26px rgba(37,211,102,.45); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   Animação de entrada
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Link ativo na navegação
   ============================================================ */
.nav > a.active { color: #fff; font-weight: 700; }
.site-header.scrolled .nav > a.active { color: var(--orange-dark); }

/* ============================================================
   Page hero (páginas internas) + breadcrumb
   ============================================================ */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  padding: clamp(120px, 17vh, 172px) 0 clamp(42px, 6vw, 66px);
  background: radial-gradient(900px 500px at 85% -20%, rgba(242,101,34,.22), transparent 60%),
              linear-gradient(160deg, #33383D 0%, #24282C 60%, #1B1E21 100%);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.1rem); margin: 0 0 12px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 660px; font-size: 1.12rem; margin: 0; }
.crumb { display: flex; gap: 10px; align-items: center; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.crumb a { color: var(--orange-light); }
.crumb a:hover { text-decoration: underline; }
.crumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   Home — CTA "sobre" + setores
   ============================================================ */
.about-cta { margin-top: 28px; }
.setores { background: var(--gray-50); }
.setores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.setor-card {
  position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.setor-card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.setor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.setor-card:hover::before { transform: scaleX(1); }
.setor-ic { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); box-shadow: 0 8px 18px rgba(242,101,34,.3); }
.setor-ic svg { width: 28px; height: 28px; stroke: #fff; }
.setor-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.setor-card p { color: var(--muted); font-size: .97rem; margin-bottom: 16px; }
.setor-brand { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--orange-dark); letter-spacing: .01em; }

/* ============================================================
   Sobre — pilares (cultura)
   ============================================================ */
.pilares { background: var(--gray-50); }
.pilares-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pilar { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pilar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pilar-ic { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 8px 18px rgba(242,101,34,.3); }
.pilar-ic svg { width: 26px; height: 26px; stroke: #fff; }
.pilar h3 { font-size: 1.16rem; margin-bottom: 8px; }
.pilar p { font-size: .95rem; color: var(--muted); margin: 0; }

/* Sobre — títulos de setor sobre as marcas */
.setor-block { margin: 48px 0 24px; }
.setor-block:first-of-type { margin-top: 6px; }
.setor-title { display: flex; align-items: center; gap: 16px; }
.setor-num { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(242,101,34,.3); flex: none; }
.setor-title h3 { font-size: 1.5rem; margin: 0; }
.setor-line { flex: 1; height: 1px; background: var(--line); }

/* Sobre — presença (UFs) */
.presenca { background: var(--gray-50); }
.presenca-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; max-width: 740px; margin: 0 auto; }
.uf-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.uf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.uf-card strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--orange); line-height: 1; }
.uf-card span { display: block; font-family: var(--font-head); font-weight: 700; color: var(--ink); margin-top: 8px; }
.uf-card small { color: var(--muted); font-size: .85rem; }

/* ============================================================
   Contato
   ============================================================ */
.contato-sec { background: var(--gray-50); }
.contato-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: start; }
.contato-info > .lead { color: var(--muted); }
.info-card { display: flex; align-items: center; gap: 15px; padding: 15px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 13px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
a.info-card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--orange); }
.info-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--gray-100); display: grid; place-items: center; flex: none; color: var(--orange-dark); }
.info-ic svg { width: 22px; height: 22px; }
.info-ic.wa { background: #25D366; color: #fff; }
.info-txt { display: flex; flex-direction: column; }
.info-txt strong { font-family: var(--font-head); color: var(--ink); font-size: .98rem; }
.info-txt span { color: var(--muted); font-size: .92rem; }
.contato-info .social a { background: var(--gray-100); }
.contato-info .social svg { stroke: var(--body); }
.contato-info .social a:hover { background: var(--orange); }
.contato-info .social a:hover svg { stroke: #fff; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow); }
.contato-form .field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contato-form label { font-family: var(--font-head); font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: 7px; }
.contato-form input, .contato-form select, .contato-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--gray-50);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.contato-form input:focus, .contato-form select:focus, .contato-form textarea:focus {
  outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(242,101,34,.12);
}
.contato-form input.invalid, .contato-form textarea.invalid { border-color: #E23B3B; box-shadow: 0 0 0 4px rgba(226,59,59,.1); }
.contato-form textarea { resize: vertical; min-height: 120px; }
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; color: var(--muted); font-size: .84rem; margin: 14px 0 0; }
.form-ok { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.4); color: #12813f; border-radius: 10px; padding: 12px 14px; font-size: .92rem; margin-top: 14px; text-align: center; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-stats, .hero-tags { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-mark { order: -1; margin-bottom: 10px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-figure { min-height: 300px; order: -1; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(300px, 82vw); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px; background: #fff; padding: 90px 30px 30px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .32s var(--ease); }
  .nav.open { transform: none; }
  .nav a { color: var(--ink); font-size: 1.05rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav .header-cta { margin-top: 14px; }
  .nav-toggle { display: block; z-index: 65; }
  .empresas-grid { grid-template-columns: 1fr; }
  .empresas-grid.one { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat strong { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .valores-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .segments-bar .container { gap: 10px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .neon-mark, .hero-mark .glow { animation: none !important; }
}
