/* =====================================================
   AUDAS ADEMICON — Design System v2
   Paleta: Navy #0a1128 + Laranja #e8521a + Branco
   ===================================================== */

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

:root {
  --navy:        #0a1128;
  --navy-mid:    #111d3f;
  --navy-light:  #1a2d5a;
  --orange:      #e8521a;
  --orange-dark: #c94010;
  --white:       #ffffff;
  --gray-bg:     #f4f6f9;
  --gray-text:   #5a6a7e;
  --text-dark:   #1a1f36;
  --border:      #dde3ed;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1240px;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(10,17,40,0.10);
  --shadow-lg:   0 8px 40px rgba(10,17,40,0.16);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: var(--navy-mid); color: var(--white); }
.section--gray { background: var(--gray-bg); }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utility bar ---- */
.util-bar {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  letter-spacing: 0.2px;
}
.util-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.util-bar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.util-bar a:hover { color: var(--white); text-decoration: none; }
.util-bar__left { display: flex; gap: 1.5rem; }
.util-bar__right { display: flex; gap: 1.25rem; }

/* ---- Header / Nav ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(10,17,40,0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo__text { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; white-space: nowrap; }
.logo__text span { color: var(--orange); }

.nav-principal { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; }
.nav-principal a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-principal a:hover { color: var(--orange); background: rgba(232,82,26,0.07); }

.btn-simular {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.btn-simular:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s;
}

/* ---- Hero (home) ---- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a40 55%, #1a2f6a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,82,26,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}
.hero h1 { max-width: 720px; }
.hero__sub { max-width: 540px; }
.hero__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__note {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-top: 1.5rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  color: var(--white);
}
.btn-primary--sm { padding: 0.6rem 1.5rem; font-size: 0.875rem; }

/* ---- Section label/badge ---- */
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
}

/* ---- Service cards (home) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  text-decoration: none;
}
.service-card__img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232,82,26,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { color: var(--navy); font-size: 1rem; margin: 0; }
.service-card p { font-size: 0.875rem; color: var(--gray-text); margin: 0; flex: 1; line-height: 1.6; }
.service-card__link {
  color: var(--orange);
  font-size: 0.825rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ---- Stats section ---- */
.stats-section { background: var(--navy-mid); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-item__number { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; color: var(--orange); line-height: 1; }
.stat-item__label { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 0.625rem; }

/* ---- How it works (steps) ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.step-card { text-align: center; }
.step-card__num {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
}
.step-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--gray-text); }

/* ---- Feature split (2-col) ---- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-split--reverse .feature-split__visual { order: 2; }
.feature-split--reverse .feature-split__content { order: 1; }
.feature-split__visual {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-radius: 20px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.feature-split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(232,82,26,0.2), transparent 60%);
}
.feature-split__content { display: flex; flex-direction: column; gap: 1rem; }
.feature-split h2 { color: var(--navy); }
.feature-split p { color: var(--gray-text); line-height: 1.75; }
.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.875rem; margin-top: 0.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-dark); }
.feature-list li::before { content: ''; display: block; width: 20px; height: 20px; background: rgba(232,82,26,0.12); border-radius: 50%; flex-shrink: 0; position: relative; margin-top: 0.1rem; background-image: 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='%23e8521a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ---- Marquee ---- */
.marquee-wrap { background: var(--orange); padding: 1rem 0; overflow: hidden; }
.marquee-inner { display: inline-flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-inner span { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; padding: 0 2rem; }
.marquee-inner span::after { content: '—'; margin-left: 2rem; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- CTA section (full-width) ---- */
.cta-section {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,82,26,0.18) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 2.25rem; font-size: 1.05rem; line-height: 1.75; }
.cta-section .btn-primary { font-size: 1rem; padding: 1rem 2.5rem; }

/* ---- Inline CTA block (dentro das páginas) ---- */
.cta-bloco {
  background: var(--gray-bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-bloco p { margin: 0; font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cta:hover { background: var(--orange-dark); text-decoration: none; color: var(--white); }

.cta-bloco__btns { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: #1ebe5d; text-decoration: none; color: var(--white); }

/* ---- Inner page hero ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(232,82,26,0.14), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 0.875rem; }

/* hero com imagem à direita */
.page-hero--with-img .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.page-hero__text { display: flex; flex-direction: column; justify-content: center; }
.page-hero__img {
  position: relative;
  z-index: 1;
}
.page-hero__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.92;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
@media (max-width: 900px) {
  .page-hero--with-img .container { grid-template-columns: 1fr; }
  .page-hero__img { display: none; }
}

/* ---- Breadcrumb ---- */
.breadcrumb { padding: 0.5rem 0 0; font-size: 0.82rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.25rem; padding: 0; color: rgba(255,255,255,0.55); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.25rem; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }
.breadcrumb--dark ol { color: var(--gray-text); }
.breadcrumb--dark li + li::before { color: var(--border); }
.breadcrumb--dark a { color: var(--gray-text); }
.breadcrumb--dark a:hover { color: var(--orange); }

/* ---- Page body (inner pages) ---- */
.page-body { padding: 2rem 0 5rem; }
.page-body .container { max-width: var(--max-w); }

.page-body section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.page-body section:first-of-type { padding-top: 0; }
.page-body section:last-of-type { border-bottom: none; }

.page-body h2 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-bg);
}
.page-body h3 { color: var(--navy); font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.page-body p { color: var(--gray-text); }
.page-body strong { color: var(--text-dark); }

.page-body ul:not(.lista-estados):not(.lista-cidades):not(.feature-list) {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.page-body ul:not(.lista-estados):not(.lista-cidades):not(.feature-list) li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.65;
}
.page-body ul:not(.lista-estados):not(.lista-cidades):not(.feature-list) li::before {
  content: '→';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.page-body ul:not(.lista-estados):not(.lista-cidades):not(.feature-list) li a {
  color: var(--navy);
  font-weight: 500;
}
.page-body ul:not(.lista-estados):not(.lista-cidades):not(.feature-list) li a:hover { color: var(--orange); }

/* ---- About city box ---- */
.sobre-cidade {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--navy-mid);
}
.sobre-cidade h2 { margin-top: 0 !important; border-bottom: none !important; font-size: 1.1rem !important; }
.sobre-cidade p { color: var(--gray-text); font-size: 0.9rem; }

/* ---- Lists (cities/states) ---- */
.lista-estados, .lista-cidades {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 600px) { .lista-estados, .lista-cidades { columns: 3; } }
@media (min-width: 900px) { .lista-estados, .lista-cidades { columns: 4; } }
.lista-estados li, .lista-cidades li { margin-bottom: 0.4rem; break-inside: avoid; }
.lista-estados a, .lista-cidades a { font-size: 0.85rem; color: var(--gray-text); }
.lista-estados a:hover, .lista-cidades a:hover { color: var(--orange); text-decoration: none; }

/* ---- Comparison table ---- */
.compare-table { overflow-x: auto; margin: 1.5rem 0; }
.compare-table table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th { background: var(--orange); color: #fff; padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.compare-table th:first-child { background: var(--dark); }
.compare-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light-bg); }
.compare-yes { color: #16a34a; font-weight: 600; }
.compare-no { color: #dc2626; font-weight: 600; }

/* ---- FAQ accordion ---- */
.faq { margin: 2.5rem 0; }
/* ---- Page images ---- */
.img-banner-section { display: none; }

/* ---- State map ---- */
.state-map-section { padding: 0.5rem 0; }
.state-map {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.state-map iframe { display: block; }
.img-banner {
  width: 100%;
  max-width: 840px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}
@media (max-width: 640px) { .img-banner { height: 200px; } }

.vantagens-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.vantagens-split__img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) {
  .vantagens-split { grid-template-columns: 1fr; }
  .vantagens-split__img { order: -1; }
  .vantagens-split__img img { height: 220px; }
}

.page-body .faq { margin: 0; }
.page-body .cta-bloco { margin: 1rem 0 1.5rem; }
.faq__title { margin-bottom: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 1rem;
  user-select: none;
}
.faq-item summary h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1.4;
  flex: 1;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}
details[open] > summary::after { transform: rotate(45deg); }
details[open] > summary { color: var(--orange); }
.faq-body {
  padding: 0 0 1.25rem;
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ---- Subservice cards grid — visual ---- */
.subservices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
a.subservice-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s;
}
a.subservice-card:hover {
  box-shadow: 0 6px 28px rgba(10,17,40,0.13);
  transform: translateY(-3px);
  text-decoration: none;
}
.subservice-card__img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.subservice-card__body {
  padding: 1rem 1.15rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--orange);
}
.subservice-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.subservice-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .subservices-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .subservice-card__img { height: 120px; }
}
@media (max-width: 380px) {
  .subservices-grid { grid-template-columns: 1fr; }
}

/* ---- How-To Steps ---- */
.howto-steps { list-style: none; padding: 0; counter-reset: step; margin: 1.5rem 0 0; }
.howto-step {
  counter-increment: step;
  padding: 1.5rem 0 1.5rem 3.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.howto-step:last-child { border-bottom: none; }
.howto-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.625rem;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.howto-step > strong { display: block; color: var(--navy) !important; font-size: 1rem; margin-bottom: 0.5rem; font-weight: 700; }
.howto-step p { margin-bottom: 0 !important; font-size: 0.93rem; line-height: 1.7; }

/* ---- Comparison Table ---- */
.comparison-table { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); }
.comparison-table table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 480px; }
.comparison-table th { background: var(--navy); color: var(--white); padding: 0.875rem 1rem; text-align: left; font-weight: 600; }
.comparison-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); color: var(--gray-text); vertical-align: top; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray-bg); }
.comparison-table .highlight-yes { color: #1a6b3c !important; font-weight: 600 !important; }
.comparison-table .highlight-no { color: #8b1a1a !important; }

/* ---- Info box (callout) ---- */
.info-box {
  background: #edf4ff;
  border-left: 4px solid var(--navy-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.5rem;
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
}
.info-box strong { color: var(--navy); }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 5rem 0 0; }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo__text { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo__text span { color: var(--orange); }
.footer-brand p { font-size: 0.875rem; margin-top: 1rem; line-height: 1.75; color: rgba(255,255,255,0.6); }
.footer-brand .btn-primary { margin-top: 1.5rem; font-size: 0.85rem; padding: 0.625rem 1.5rem; }
.footer-col strong {
  display: block;
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal { max-width: 640px; }
.footer-legal p, .footer-copy p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
  line-height: 1.6;
}
.footer-copy { text-align: right; flex-shrink: 0; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-split { gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split--reverse .feature-split__visual,
  .feature-split--reverse .feature-split__content { order: unset; }
  .nav-principal {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
    z-index: 300;
  }
  .nav-principal.open { display: flex; }
  .nav-principal a { width: 100%; padding: 0.65rem 0.75rem; }
  .btn-simular { margin-top: 0.5rem; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .site-header .container { position: relative; }
  .util-bar__left { display: none; }
  .hero { min-height: 480px; }
  .hero .container { padding-top: 3rem; padding-bottom: 3rem; }
  .cta-bloco { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .lista-estados, .lista-cidades { columns: 1; }
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: wpp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: var(--white);
  text-decoration: none;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
@media (max-width: 600px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.85rem; border-radius: 50%; }
}
