/* =========================================================
   HERMANOS GARZA LOGISTICS (HGL) — style.css
   Mobile-first · sin dependencias externas · CSS puro
   ========================================================= */

:root {
  --black:      #050506; /* negro premium, inspirado en el logo HG */
  --navy-dark:  #0E0E10;
  --navy:       #18181B;
  --navy-mid:   #242427;
  --navy-light: #333336;
  --yellow:     #D7263D; /* acento rojo (antes amarillo) */
  --yellow-deep:#A81B2E; /* rojo profundo, hover/detalle */
  --white:      #FFFFFF;
  --gray-50:    #F6F8FB;
  --gray-100:   #EDF1F6;
  --gray-300:   #CBD5E1;
  --text-dark:  #16233A;
  --text-muted: rgba(255,255,255,.72);  /* texto secundario sobre fondos oscuros */
  --text-soft:  rgba(255,255,255,.6);   /* etiquetas/kickers sobre fondos oscuros */
  --card-bg:      rgba(255,255,255,.045);
  --card-border:  rgba(255,255,255,.12);
  --wa-green:   #25D366;
  --wa-green-dark: #1DA851;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.55);
  --container-w: 1180px;
  --header-h: 76px;
  --transition: .22s ease;

  font-size: 16px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,.85);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  body { padding-bottom: 0; }
}
body { padding-bottom: 66px; } /* espacio para CTA fijo móvil */
@media (min-width: 992px) { body { padding-bottom: 0; } }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.icon { width: 1.2em; height: 1.2em; fill: currentColor; flex-shrink: 0; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); letter-spacing: .5px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
.kicker::before {
  /* trazo tipo "línea de carretera", inspirado en el ícono del logo HG */
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.kicker-light { color: var(--yellow); }

.section-lead {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 10px;
}

.center { text-align: center; }
.center .kicker::before { display: none; }
.center .kicker { padding-left: 0; }
.center .section-lead { margin-left: auto; margin-right: auto; }

.narrow { max-width: 820px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn .icon { width: 1.25em; height: 1.25em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-sm { padding: 10px 16px; font-size: .85rem; gap: 7px; }
.btn-block { width: 100%; }

.btn-whatsapp, .btn-cta {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover, .btn-cta:hover {
  background: var(--wa-green-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline-navy:hover { background: rgba(255,255,255,.14); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(14,14,16,.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: saturate(180%) blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  background: var(--yellow);
  color: var(--white);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .5px;
  padding: 6px 9px;
  border-radius: 6px;
  line-height: 1;
}
.logo-text {
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 1.25;
}
.logo-text strong { color: var(--yellow); font-size: .82rem; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: .92rem;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active, .mobile-nav a.active { color: var(--yellow); }
.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-header-wa { padding: 10px 18px; font-size: .85rem; display: none; }

.hamburger {
  background: transparent;
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger .icon { width: 26px; height: 26px; }
.hamburger .icon-close { display: none; }
.hamburger.is-open .icon-open { display: none; }
.hamburger.is-open .icon-close { display: block; }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 99;
  padding: 18px 20px 24px;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav ul { display: flex; flex-direction: column; margin-bottom: 18px; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-weight: 600;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { color: var(--yellow); }

@media (min-width: 992px) {
  .main-nav { display: block; }
  .btn-header-wa { display: inline-flex; }
  .hamburger, .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
@media (min-width: 768px) { .hero { min-height: 92vh; } }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,.6) 0%, rgba(14,14,16,.4) 45%, rgba(14,14,16,.8) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 60px; }

.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
}
.hero-text {
  font-size: 1.05rem;
  max-width: 560px;
  color: rgba(255,255,255,.92);
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: .8;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; }
}

/* ---------- Secciones genéricas ---------- */
.section {
  padding: 64px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--black) 100%);
  color: var(--white);
}
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section-tint { background: linear-gradient(160deg, var(--navy-dark) 0%, var(--black) 100%); }
.section-navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--black) 100%);
  color: var(--white);
}
.section-title-light { color: var(--white); }

/* split layout */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split-reverse .split-media { order: 2; }
  .split-reverse .split-text { order: 1; }
}
.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.split-text p { color: var(--text-muted); margin-bottom: 14px; }
.split-text h2 { margin-bottom: 16px; }

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 6px 0 26px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
}
.value-list .icon { color: var(--white); background: var(--yellow); border-radius: 50%; padding: 4px; width: 1.6em; height: 1.6em; }

/* ---------- Misión / Visión ---------- */
.cards-2col {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}
@media (min-width: 768px) { .cards-2col { grid-template-columns: 1fr 1fr; gap: 30px; } }

.mv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--transition), border-color var(--transition);
}
.mv-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.mv-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.4rem; }
.mv-card p { color: rgba(255,255,255,.8); }
.mv-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  color: var(--white);
  border-radius: 14px;
  margin-bottom: 20px;
}
.mv-icon .icon { width: 1.6em; height: 1.6em; }
.mv-card-accent { border-color: rgba(215,38,61,.4); }

/* ---------- Flotilla ---------- */
.fleet-grid {
  display: grid;
  gap: 26px;
  margin-top: 40px;
}
@media (min-width: 768px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }

.fleet-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.fleet-card:hover { border-color: var(--yellow); background: rgba(255,255,255,.07); transform: translateY(-4px); }
.fleet-media { position: relative; }
.fleet-media img { aspect-ratio: 4/3; object-fit: cover; }
.fleet-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--yellow);
  color: var(--white);
  font-weight: 800;
  font-size: .82rem;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.fleet-body { padding: 24px 26px 28px; }
.fleet-body h3 { margin-bottom: 8px; }
.fleet-body p { color: var(--text-muted); }

.inline-cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
}
.inline-cta p { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.inline-cta-center { justify-content: center; text-align: center; flex-direction: column; }

/* ---------- Tecnología ---------- */
.tech-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}
.tech-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--navy-dark);
  border: 1px solid var(--card-border);
  color: var(--yellow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.tech-icon .icon { width: 1.6em; height: 1.6em; }
.tech-item h3 { margin-bottom: 6px; }
.tech-item p { color: var(--text-muted); }

/* ---------- Cobertura ---------- */
.capacity-grid {
  display: grid;
  gap: 22px;
  margin: 40px 0 44px;
}
@media (min-width: 768px) { .capacity-grid { grid-template-columns: repeat(3, 1fr); } }
.capacity-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  transition: border-color var(--transition), background var(--transition);
}
.capacity-item:hover { border-color: var(--yellow); background: rgba(255,255,255,.07); }
.icon-accent { color: var(--white); background: var(--yellow); border-radius: 50%; padding: 12px; width: 3rem; height: 3rem; margin-bottom: 14px; }
.capacity-item h3 { margin-bottom: 8px; }
.capacity-item p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Fortalezas ---------- */
.strengths-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  text-align: left;
}
@media (min-width: 640px) { .strengths-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .strengths-grid { grid-template-columns: repeat(5, 1fr); } }
.strength-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  border-top: 3px solid var(--yellow);
  transition: border-color var(--transition), background var(--transition);
}
.strength-item:hover { background: rgba(255,255,255,.07); }
.strength-icon {
  width: 44px; height: 44px;
  background: var(--navy-dark);
  color: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.strength-item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.strength-item p { color: var(--text-muted); font-size: .92rem; }

/* ---------- CTA principal ---------- */
.cta-main {
  background: linear-gradient(160deg, var(--navy) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.cta-main::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(215,38,61,.16) 0%, transparent 70%);
  top: -180px; right: -120px;
}
.cta-main .container { position: relative; z-index: 1; }
.cta-main-text {
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 16px auto 34px;
  font-size: 1.08rem;
}
.cta-direct { color: rgba(255,255,255,.75); margin-top: 22px; font-size: .95rem; }
.cta-direct a { color: var(--yellow); font-weight: 700; }
.cta-direct a:hover { text-decoration: underline; }

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  gap: 26px;
  margin: 40px 0 50px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--yellow); }
@media (min-width: 560px) { .contact-card { flex-direction: row; } }
.contact-photo { width: 100%; height: 190px; object-fit: cover; }
@media (min-width: 560px) { .contact-photo { width: 42%; height: auto; } }
.contact-card-body { padding: 26px 24px; flex: 1; text-align: left; }
.contact-role { color: var(--white); background: var(--yellow); display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; margin-bottom: 14px; }
.contact-details { margin-bottom: 20px; }
.contact-details li { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: var(--text-muted); font-size: .95rem; word-break: break-word; }
.contact-details .icon { color: var(--yellow-deep); flex-shrink: 0; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 10px; }

.form-wrap { display: flex; justify-content: center; }
.form-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  max-width: 640px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--card-border);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { color: var(--text-muted); margin-bottom: 24px; font-size: .95rem; }
.form-row { margin-bottom: 18px; }
.form-row-2col { display: grid; gap: 18px; margin-bottom: 0; }
@media (min-width: 560px) { .form-row-2col { grid-template-columns: 1fr 1fr; } }
.form-row-2col > div { margin-bottom: 18px; }
label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; color: var(--white); }
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(215,38,61,.18);
}
textarea { resize: vertical; }
.form-card .btn { margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ---------- Aviso de privacidad (página legal) ---------- */
.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 34px;
  margin-bottom: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; }
.legal-content a { color: var(--yellow-deep); font-weight: 700; text-decoration: underline; }
.legal-list { margin: 0 0 14px; padding-left: 4px; }
.legal-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 3px;
  background: var(--yellow-deep);
  border-radius: 2px;
}
.legal-note {
  font-size: .85rem;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  padding-top: 18px;
  margin-top: 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.85);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.logo-badge-footer { display: inline-block; margin-bottom: 14px; }
.footer-name { color: var(--white); font-weight: 800; letter-spacing: .5px; margin-bottom: 6px; }
.footer-tagline { color: rgba(255,255,255,.65); font-size: .92rem; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: .92rem; color: rgba(255,255,255,.72); }
.footer-col p .icon { color: var(--yellow); }
.footer-bottom { padding: 22px 0 26px; text-align: center; font-size: .82rem; color: rgba(255,255,255,.55); }

/* ---------- Botón flotante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 15px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: .92rem;
}
.whatsapp-float .icon { width: 1.7em; height: 1.7em; }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--yellow);
  opacity: 0;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0% { opacity: .55; transform: scale(.94); }
  70% { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}
.whatsapp-float-text { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.45); }
.whatsapp-float:hover .whatsapp-float-text { max-width: 160px; }

@media (min-width: 768px) {
  .whatsapp-float { display: inline-flex; }
}

/* ---------- CTA fijo inferior (móvil) ---------- */
.mobile-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 10px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0,0,0,.18);
}
.mobile-sticky-cta .icon { width: 1.5em; height: 1.5em; }
@media (min-width: 768px) {
  .mobile-sticky-cta { display: none; }
}

/* ---------- Utilidades ---------- */
@media (max-width: 767px) {
  .hero-actions .btn { width: 100%; }
  .inline-cta { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Accesibilidad: foco visible en navegación por teclado */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
