/* ======================================================
   HEF Groupe Brasil — LP v2
   style.css
   ====================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:          #0B2B4E;
  --blue:          #1356A1;
  --blue-mid:      #1E6DBF;
  --blue-light:    #2E8BC0;
  --accent:        #F4820A;
  --accent-dk:     #C96800;

  /* Neutral */
  --white:         #FFFFFF;
  --off-white:     #F6F8FB;
  --gray-100:      #EDF1F7;
  --gray-200:      #D9E2ED;
  --gray-400:      #8FA2B4;
  --gray-600:      #526070;
  --gray-800:      #1E2D3D;

  /* Tokens */
  --r:             10px;
  --r-lg:          18px;
  --shadow-sm:     0 2px 8px rgba(11,43,78,0.08);
  --shadow-md:     0 6px 24px rgba(11,43,78,0.13);
  --shadow-lg:     0 16px 56px rgba(11,43,78,0.20);
  --t:             0.22s ease;

  --font:          'Poppins', sans-serif;
  --max:           1180px;
  --gap:           88px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Type helpers --- */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header--light h2 { color: var(--white); }
.section-header h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--gray-400); line-height: 1.65; }
.section-sub--light { color: rgba(255,255,255,0.55); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  padding: 13px 26px;
  line-height: 1;
  white-space: nowrap;
}
.btn--nav-cta {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}
.btn--nav-cta:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); }

.btn--hero-submit {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  width: 100%;
  padding: 15px 24px;
  font-size: 16px;
  border-radius: var(--r);
  box-shadow: 0 4px 20px rgba(244,130,10,0.35);
}
.btn--hero-submit:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,130,10,0.4); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,130,10,0.30); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--outline-white-sm {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  padding: 10px 20px;
  font-size: 14px;
  margin-top: 16px;
  border-radius: var(--r);
}
.btn--outline-white-sm:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--cta-submit {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(244,130,10,0.30);
  border-radius: var(--r);
}
.btn--cta-submit:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,130,10,0.38); }

.btn--float {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(244,130,10,0.4);
  justify-content: center;
}

/* ======================================================
   HEADER
   ====================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11,43,78,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--t);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.header__logo img { height: 36px; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__nav > a:not(.btn) {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t);
}
.header__nav > a:not(.btn):hover { color: var(--white); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 66px;
  overflow: hidden;
  background: linear-gradient(140deg, #071D32 0%, #0D3B6E 45%, #124A8C 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 75% 40%, rgba(30,109,191,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(244,130,10,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,130,10,0.14);
  border: 1px solid rgba(244,130,10,0.35);
  color: #FFBB6B;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.hero__hl {
  color: var(--accent);
  display: block;
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  width: fit-content;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hstat:first-child { padding-left: 0; }
.hstat:last-child { padding-right: 0; }
.hstat__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat__label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.3;
  max-width: 80px;
}
.hstat__div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  font-weight: 500;
  margin-right: 4px;
}
.hero__trust-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}
.hero__trust-tag--highlight {
  background: rgba(244,130,10,0.20);
  border-color: rgba(244,130,10,0.45);
  color: #FFBB6B;
  font-weight: 700;
}

/* --- Hero Form --- */
.hero__form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hform__header {
  background: var(--navy);
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hform__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.hform__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}
.hform {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hform__field { display: flex; flex-direction: column; }
.hform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hform input, .hform select, .hform textarea,
.cform input, .cform select, .cform textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.hform input::placeholder, .hform select::placeholder, .hform textarea::placeholder,
.cform input::placeholder, .cform select::placeholder, .cform textarea::placeholder {
  color: var(--gray-400);
}
.hform input:focus, .hform select:focus, .hform textarea:focus,
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19,86,161,0.10);
}
.hform input.invalid, .hform select.invalid, .hform textarea.invalid,
.cform input.invalid, .cform select.invalid, .cform textarea.invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.10);
}
.hform textarea { resize: vertical; min-height: 76px; }
.hform__disclaimer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: -4px;
  justify-content: center;
  line-height: 1.4;
}
.hform__success {
  padding: 48px 28px;
  text-align: center;
}
.hform__success .success-check {
  margin: 0 auto 20px;
  width: fit-content;
}
.hform__success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.hform__success p { font-size: 14px; color: var(--gray-600); }

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-bar__items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

/* ======================================================
   POR QUE HEF
   ====================================================== */
.porque {
  padding: var(--gap) 0;
}
.porque__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.porque__copy .eyebrow { margin-bottom: 12px; }
.porque__copy h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.porque__copy p { font-size: 16px; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.porque__copy p strong { color: var(--navy); font-weight: 600; }
.porque__copy .btn { margin-top: 12px; }

.porque__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prob-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.prob-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-mid);
}
.prob-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(244,130,10,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.prob-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prob-card p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ======================================================
   COMO FUNCIONA
   ====================================================== */
.processo {
  padding: var(--gap) 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.processo__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.pstep {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.pstep__num {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.pstep h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pstep p { font-size: 13px; color: var(--gray-600); line-height: 1.55; }
.pstep__arrow {
  padding-top: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ======================================================
   MERCADOS
   ====================================================== */
.mercados { padding: var(--gap) 0; }
.mercados__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.mcard {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.mcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.mcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-mid);
}
.mcard:hover::before { transform: scaleX(1); }
.mcard__icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--gray-200);
}
.mcard h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.mcard p { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.mcard__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mcard__tags span {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.mercados__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
}
.mercados__cta p { font-size: 15px; color: var(--gray-600); font-weight: 500; }

/* ======================================================
   TECNOLOGIAS
   ====================================================== */
.tecnologias {
  padding: var(--gap) 0;
  background: linear-gradient(145deg, var(--navy) 0%, #0D3B6E 100%);
}
.tec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.tcard:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-3px);
}
.tcard--featured {
  background: rgba(244,130,10,0.12);
  border-color: rgba(244,130,10,0.30);
  display: flex;
  flex-direction: column;
}
.tcard--featured:hover { background: rgba(244,130,10,0.18); }
.tcard__tag {
  display: inline-block;
  background: var(--blue-mid);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.tcard__tag--gold { background: var(--accent); }
.tcard h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.tcard p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.65; }
.tcard--featured p { color: rgba(255,255,255,0.72); flex: 1; }
.tcard__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.tcard__apps span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.60);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ======================================================
   OBJEÇÕES / FAQ
   ====================================================== */
.objections { padding: var(--gap) 0; background: var(--off-white); }
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq-item:hover { box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.faq-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.faq-item h3 svg { flex-shrink: 0; margin-top: 2px; }
.faq-item p { font-size: 14px; color: var(--gray-600); line-height: 1.65; padding-left: 32px; }

/* ======================================================
   UNIDADES
   ====================================================== */
.unidades { padding: var(--gap) 0; }
.unidades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ucard {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: box-shadow var(--t), transform var(--t);
}
.ucard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ucard__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ucard__header strong { font-size: 15px; font-weight: 700; color: var(--navy); }
.ucard__spec {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.ucard__addr { font-size: 12px; color: var(--gray-400); line-height: 1.6; }

/* ======================================================
   CONTATO / FORM
   ====================================================== */
.contato {
  padding: var(--gap) 0;
  background: linear-gradient(150deg, #071D32 0%, #0D3B6E 100%);
}
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato__copy h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.contato__copy p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contato__garantias {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.contato__garantias li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.contato__numeros {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.cnum { display: flex; flex-direction: column; gap: 3px; }
.cnum strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.cnum span { font-size: 12px; color: rgba(255,255,255,0.40); }

/* --- Contact form --- */
.contato__form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.cform {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cform__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cform__field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.req { color: var(--accent); }
.cform textarea { min-height: 110px; resize: vertical; }
.cform__disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: -4px;
  line-height: 1.4;
}
.cform__success {
  text-align: center;
  padding: 48px 24px;
}
.success-check-lg { margin: 0 auto 24px; width: fit-content; }
.cform__success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.cform__success p { font-size: 15px; color: var(--gray-600); margin-bottom: 8px; line-height: 1.6; }
.success-sub { font-size: 13px; color: var(--gray-400); }

/* ======================================================
   FOOTER
   ====================================================== */
.footer { background: #060F1A; padding: 56px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer__logo { height: 42px; margin-bottom: 14px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.35); max-width: 260px; line-height: 1.65; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 14px;
}
.footer__col p, .footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 2;
  transition: color var(--t);
}
.footer__col a:hover { color: rgba(255,255,255,0.75); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ======================================================
   FLOATING CTA (mobile only)
   ====================================================== */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 150;
  filter: drop-shadow(0 8px 24px rgba(244,130,10,0.4));
}

/* ======================================================
   REVEAL ANIMATION
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr 420px; gap: 48px; }
  .tec__grid { grid-template-columns: repeat(2, 1fr); }
  .unidades__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --gap: 64px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-wrap { max-width: 560px; }
  .hero__stats { flex-wrap: wrap; justify-content: center; }
  .porque__inner { grid-template-columns: 1fr; gap: 48px; }
  .mercados__grid { grid-template-columns: repeat(2, 1fr); }
  .processo__steps { flex-direction: column; align-items: center; gap: 8px; }
  .pstep { max-width: 380px; }
  .pstep__arrow { transform: rotate(90deg); }
  .faq__grid { grid-template-columns: 1fr; }
  .contato__inner { grid-template-columns: 1fr; gap: 48px; }
  .contato__form-wrap { padding: 28px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav > a:not(.btn) { display: none; }
  .hform__row { grid-template-columns: 1fr; }
  .cform__row { grid-template-columns: 1fr; }
  .mercados__grid { grid-template-columns: 1fr; }
  .tec__grid { grid-template-columns: 1fr; }
  .unidades__grid { grid-template-columns: 1fr 1fr; }
  .float-cta { display: block; }
  .trust-bar__inner { gap: 16px; }
}

@media (max-width: 540px) {
  .hero__headline { font-size: 38px; }
  .hstat { padding: 0 16px; }
  .unidades__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .contato__numeros { gap: 24px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}