/* ── Click Energia — Folha de Estilos ─────────────────────────────────────── */

:root {
  --blue:    #1E5AFF;
  --blue-d:  #1246D6;
  --blue-l:  #EEF3FF;
  --lime:    #B4F000;
  --lime-d:  #8EC000;
  --dark:    #141B2E;
  --grey:    #6B7280;
  --ice:     #F7F8FA;
  --white:   #FFFFFF;
  --border:  #E5E7EB;
  --surface: #FFFFFF;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(30,90,255,.08);
  --shadow-lg: 0 20px 60px rgba(30,90,255,.12);
  --ease:    cubic-bezier(.4,0,.2,1);
  --font-title: 'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilitários ──────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--ice); }

h1,h2,h3,h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.2; }

.display-1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
.display-2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; }
.lead { font-size: 1.1rem; color: var(--grey); line-height: 1.8; }

.text-blue { color: var(--blue); }
.text-lime  { color: var(--lime-d); }

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem; border-radius: 50px; font-size: .78rem;
  font-weight: 700; font-family: var(--font-title); text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-blue { background: var(--blue-l); color: var(--blue); border: 1px solid rgba(30,90,255,.2); }
.badge-lime  { background: rgba(180,240,0,.12); color: #5A7800; border: 1px solid rgba(142,192,0,.3); }

/* ── Botões ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-title); font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(30,90,255,.3);
}
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,90,255,.4); }
.btn-lime {
  background: var(--lime); color: var(--dark);
  box-shadow: 0 4px 16px rgba(180,240,0,.3);
}
.btn-lime:hover { background: var(--lime-d); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-l); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; gap: 2rem;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-title); font-size: .88rem; font-weight: 600;
  color: var(--dark); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; gap: .75rem; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--dark); }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

/* Mobile menu */
.mobile-nav {
  display: none; position: fixed; top: 96px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem; z-index: 99; flex-direction: column; gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-title); font-size: 1rem; font-weight: 600;
  color: var(--dark); text-decoration: none; padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--white) 60%, var(--blue-l) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,240,0,.15), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub { max-width: 520px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-chip {
  display: flex; align-items: center; gap: .4rem;
  background: var(--ice); border: 1px solid var(--border);
  border-radius: 50px; padding: .4rem .875rem;
  font-size: .78rem; font-weight: 600; color: var(--grey);
}
.trust-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-top {
  background: var(--blue); color: var(--white);
  padding: 1.75rem 2rem;
}
.hero-card-top .label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: .5rem; }
.hero-card-top .value { font-family: var(--font-title); font-size: 3.5rem; font-weight: 800; line-height: 1; }
.hero-card-top .value span { font-size: 2rem; }
.hero-card-top .sub { font-size: .8rem; opacity: .8; margin-top: .5rem; }
.hero-card-body { padding: 1.5rem 2rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-item {
  background: var(--ice); border-radius: var(--radius);
  padding: 1rem; text-align: center;
}
.stat-item .n { font-family: var(--font-title); font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.stat-item .l { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey); margin-top: .2rem; }
.hero-card-lime {
  background: var(--lime); padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-lime .txt { font-family: var(--font-title); font-size: .85rem; font-weight: 700; color: var(--dark); }
.hero-card-lime .ico { font-size: 1.25rem; }

/* ── OMIE Widget ──────────────────────────────────────────────────────────── */
.omie-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.omie-inner { display: flex; flex-direction: column; gap: .75rem; }
.omie-label {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-title); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45);
}
.omie-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,.3);
  animation: omie-pulse 2s ease-in-out infinite;
}
.omie-dot.error { background: #EF4444; box-shadow: 0 0 0 2px rgba(239,68,68,.3); animation: none; }
@keyframes omie-pulse { 0%,100% { opacity:1; } 50% { opacity:.5; } }

.omie-price-row {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.omie-block { text-align: center; min-width: 70px; }
.omie-val {
  font-family: var(--font-title); font-size: 1.15rem; font-weight: 800; color: var(--white);
  white-space: nowrap;
}
.omie-val.high { color: #F97316; }
.omie-val.low  { color: #22C55E; }
.omie-sub { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); margin-top: .15rem; }
.omie-sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.omie-chart-wrap { flex: 1; min-width: 200px; max-width: 320px; }
.omie-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: rgba(255,255,255,.3);
}
.omie-footer a { color: rgba(180,240,0,.6); text-decoration: none; }
.omie-footer a:hover { color: var(--lime); }

/* ── Parceiros ────────────────────────────────────────────────────────────── */
.parceiros-strip {
  background: var(--dark); padding: 2rem 0;
  border-top: 3px solid var(--lime);
}
.parceiros-label {
  font-family: var(--font-title); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4);
  text-align: center; margin-bottom: 1.25rem;
}
.parceiros-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.parceiro-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: .6rem 1.25rem;
  font-family: var(--font-title); font-size: .82rem; font-weight: 800;
  color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em;
  transition: all .2s;
}
.parceiro-chip:hover { background: rgba(180,240,0,.1); border-color: var(--lime); color: var(--lime); }

/* ── Serviços ─────────────────────────────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem;
  position: relative; overflow: hidden;
  transition: all .3s var(--ease); text-decoration: none; color: inherit;
}
.service-card:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-color: var(--blue); background: var(--blue-l); }
.service-card.featured::before { transform: scaleX(1); }

.sv-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.sv-title { font-family: var(--font-title); font-size: 1.2rem; font-weight: 800; margin-bottom: .75rem; }
.sv-desc { font-size: .875rem; color: var(--grey); line-height: 1.75; margin-bottom: 1.25rem; }
.sv-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sv-list li { font-size: .82rem; color: var(--grey); display: flex; gap: .5rem; align-items: flex-start; }
.sv-list li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.sv-tag {
  display: inline-block; margin-top: 1.25rem;
  background: var(--blue); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: .3rem .75rem;
  border-radius: 50px; font-family: var(--font-title);
}
.service-card.featured .sv-tag { background: var(--lime); color: var(--dark); }

/* 4th card (dual) */
.services-dual {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  background: var(--dark); border-radius: var(--radius-lg); padding: 2.5rem;
  border: none; color: var(--white);
}
.dual-left h3 { font-family: var(--font-title); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.dual-left p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 1.5rem; }
.dual-right { display: flex; align-items: center; justify-content: center; }
.dual-circle {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

/* ── Como Funciona ────────────────────────────────────────────────────────── */
.steps-row {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1rem; position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 32px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--lime));
}
.step { text-align: center; padding-top: .5rem; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--white);
}
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); color: var(--dark);
  font-family: var(--font-title); font-size: .6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-family: var(--font-title); font-size: .82rem; font-weight: 800; margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .04em; }
.step-desc { font-size: .75rem; color: var(--grey); line-height: 1.55; }

/* ── Números ──────────────────────────────────────────────────────────────── */
.numeros-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.numero-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.numero-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.numero-card .n {
  font-family: var(--font-title); font-size: 2.75rem; font-weight: 800;
  color: var(--blue); line-height: 1;
}
.numero-card .l { font-size: .8rem; font-weight: 600; color: var(--grey); margin-top: .5rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-title); font-size: .9rem; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-arrow { color: var(--blue); font-size: 1rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  font-size: .875rem; color: var(--grey); line-height: 1.75;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ── Contacto ─────────────────────────────────────────────────────────────── */
#contacto { background: var(--dark); color: var(--white); }
#contacto .section-header h2 { color: var(--white); }
#contacto .section-header .lead { color: rgba(255,255,255,.6); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info { color: rgba(255,255,255,.8); }
.contact-info h3 { font-family: var(--font-title); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item .txt .label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: .1rem; }
.contact-item .txt .val { font-size: .95rem; font-weight: 600; color: var(--white); }
.contact-item .txt a { color: var(--lime); text-decoration: none; }
.contact-item .txt a:hover { text-decoration: underline; }
.contact-note { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 2rem; line-height: 1.6; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }

/* Formulário */
.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; color: var(--dark);
}
.form-title { font-family: var(--font-title); font-size: 1.2rem; font-weight: 800; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 700; font-family: var(--font-title); color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem;
  color: var(--dark); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,90,255,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }
.form-disclaimer { font-size: .72rem; color: var(--grey); text-align: center; margin-top: .75rem; line-height: 1.5; }

/* Form states */
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius); margin-top: 1rem;
}
.form-success .ico { font-size: 2.5rem; margin-bottom: .75rem; }
.form-success h4 { font-family: var(--font-title); font-weight: 800; margin-bottom: .5rem; color: #15803D; }
.form-success p { font-size: .875rem; color: var(--grey); }
.form-error {
  display: none; padding: .75rem 1rem;
  background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius); margin-top: .75rem;
  font-size: .82rem; color: #DC2626;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--blue);
  padding: 5rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner .lead { color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--ice); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.6);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.6); text-decoration: none;
  transition: all .2s;
}
.footer-social a:hover { background: var(--lime); color: var(--dark); border-color: var(--lime); }
.footer-col h5 { font-family: var(--font-title); font-size: .8rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--lime); }

/* ── Animações ────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-dual { grid-template-columns: 1fr; }
  .dual-right { display: none; }
  .numeros-grid { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: repeat(3,1fr); }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 8rem 0 4rem; }
  .display-1 { font-size: 2.2rem; }
  .display-2 { font-size: 1.75rem; }
}
