/* ===== RESET / BASE ===== */
html, body {
  overflow-x: hidden;
}
*{ box-sizing:border-box; }
body{ font-family:'Inter',Arial,sans-serif; color:#183554; margin:0; background:#f5faff; }
a{ color:#003d73; text-decoration:none; transition:color .15s; }
a:hover,.btn:hover{ color:#fcb040; }
.sr-only{ position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ===== HEADER ===== */
header{ background:#f5faff; border-bottom:1px solid #e0e0e0; padding:0; }
.header-inner{ display:flex; flex-direction:column; align-items:center; justify-content:center; max-width:1200px; margin:auto; padding:18px 10px 10px; gap:10px; }
.logo{ height:66px; max-width:220px; }

/* Badge 24h con bounce */
.badge-24h{
  background:#eaf2fa; color:#003d73; font-weight:800; letter-spacing:.5px;
  border-radius:999px; padding:10px 16px; box-shadow:0 2px 8px rgba(24,53,84,.08); white-space:nowrap;
}
.header-right{ display:flex; align-items:center; gap:14px; }
.lang-switch{ display:flex; align-items:center; }
.lang-select{ appearance:none; border:1px solid #dbe2ea; border-radius:10px; padding:8px 12px; background:#fff; color:#003d73; font-weight:800; cursor:pointer; }
.lang-select:focus{ outline:2px solid #fcb040; }
.flags-inline{ display:inline-block; font-weight:800; line-height:1; white-space:nowrap; }

.cta-contacto{ display:flex; gap:17px; margin-top:6px; }
.cta-header{
  background:#eaf2fa; color:#003d73; border-radius:8px; padding:9px 15px; font-weight:700; font-size:18px; display:flex; align-items:center; gap:7px; border:none; box-shadow:0 1px 4px rgba(24,53,84,.08);
}
.whatsapp-header{ color:#25D366; background:#fff; border:2px solid #25D366; }
.whatsapp-header:hover,.cta-header:hover{ background:#fcb040; color:#fff; border-color:#fcb040; }

@media (max-width:768px){
  .cta-contacto{ display:none !important; } /* ocultar en móvil */
  .header-inner{ gap:8px; }
}

/* ===== HERO ===== */
.hero-banner{ background:#f9fafc; padding:10px 20px; display:flex; justify-content:center; align-items:center; }
.hero-container{ max-width:1200px; display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:center; }
.hero-text h1{ font-size:2.2rem; font-weight:700; color:#0c2c56; margin-bottom:15px; }
.hero-text .subtext{ font-size:1.2rem; margin-bottom:25px; color:#555; }
.hero-img img{ max-width:100%; border-radius:12px; }

/* CTA hero (3 líneas) */
.btn-cta{
  display:inline-flex; align-items:center; gap:14px; background:#fcb040; color:#000;
  padding:18px 24px; border-radius:14px; text-decoration:none;
  box-shadow:0 10px 24px rgba(252,176,64,.35),0 2px 6px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  animation:cta-pulse 1.6s ease-in-out infinite; will-change:transform,box-shadow;
}
.btn-cta:hover{ transform:scale(1.04); }
.btn-cta i{ font-size:2.2rem; color:#000; }
.btn-cta .cta-text{ display:flex; flex-direction:column; line-height:1.05; }
.cta-line-1{ font-size:1.4rem; font-weight:900; letter-spacing:.5px; }
.cta-line-2{ font-size:2.2rem; font-weight:900; }
.cta-line-3{ font-size:.95rem; font-weight:700; white-space:nowrap; }
@keyframes cta-pulse{ 0%{transform:scale(1)} 50%{transform:scale(1.06)} 100%{transform:scale(1)} }
@media (prefers-reduced-motion:reduce){ .btn-cta{ animation:none; } }

@media (max-width:768px){
  .hero-container{ grid-template-columns:1fr; text-align:center; }
  .cta-line-1{ font-size:1.3rem; }
  .cta-line-2{ font-size:2rem; }
  .cta-line-3{ font-size:.9rem; }
}

/* ===== BOTONES GENÉRICOS ===== */
.btn{ padding:15px 28px; border-radius:8px; font-size:1.09rem; font-weight:700; cursor:pointer; border:none; display:inline-flex; align-items:center; justify-content:center; margin:2px 0; box-shadow:0 2px 8px rgba(24,53,84,.08); text-decoration:none; }
.btn-secondary{ background:#003d73; color:#fff; }
.btn:hover{ transform:translateY(-2px) scale(1.025); box-shadow:0 5px 18px rgba(24,53,84,.12); filter:brightness(1.08); }
.btn:focus{ outline:2px solid #fcb040; }

/* ===== PASOS (cajas 1-2-3) ===== */
.steps{ background:#eaf2fa; padding:48px 0 35px; text-align:center; }
.steps h2{ font-size:1.29rem; margin-bottom:35px; }
.step-items{ display:flex; flex-direction:column; align-items:center; gap:25px; width:100%; }
.step-item{
  background:#fff; border-radius:10px; box-shadow:0 2px 12px rgba(24,53,84,.09);
  padding:25px 18px; width:100%; max-width:350px; margin:0 auto; transition:transform .12s, box-shadow .13s; text-align:center; display:flex; flex-direction:column; align-items:center;
}
.step-item:hover{ transform:scale(1.045); box-shadow:0 5px 28px rgba(24,53,84,.16); }
.step-icon{ font-size:2.3rem; color:#003d73; background:#eaf2fa; border-radius:50%; padding:15px; margin-bottom:13px; }

@media (max-width:768px){
  .steps{ padding:28px 0 22px; }
  .steps h2{ font-size:1.05rem; margin-bottom:18px; }
  .step-items{ gap:14px; }
  .step-item{ padding:14px 12px; max-width:92vw; border-radius:12px; }
  .step-icon{ font-size:1.8rem; padding:10px; margin-bottom:8px; }
  .step-item b,.step-item h3{ font-size:1.05rem; }
  .step-item p,.step-item span{ font-size:.95rem; }
}

/* Pasos en horizontal para desktop */
@media (min-width: 992px) {
  .step-items {
    flex-direction: row;
    justify-content: center;
  }
}
/* ===== SERVICIOS ===== */
.services{ padding:48px 0 32px; background:#fff; text-align:center; }
.services h2{ font-size:1.18rem; margin-bottom:13px; color:#003d73; }
.services-desc{ margin-bottom:25px; color:#495b75; font-size:.99rem; }

.service-items{ display:grid; grid-template-columns:1fr; gap:14px; justify-items:center; }
@media (min-width:768px){ .service-items{ grid-template-columns:1fr 1fr; } }
@media (min-width:1024px){ .service-items{ grid-template-columns:1fr 1fr 1fr; } }

.service-item{
  background:#fff; border:1px solid #eef3f9; border-radius:16px; width:100%; max-width:520px; padding:18px 16px;
  display:flex; flex-direction:column; align-items:flex-start; text-align:left; box-shadow:0 4px 14px rgba(24,53,84,.06);
}
.service-icon-wrap{
  width:56px; height:56px; border-radius:50%; background:#fff6e8; display:flex; align-items:center; justify-content:center; margin-bottom:10px; box-shadow:inset 0 0 0 2px #ffd99c;
}
.service-item i{ font-size:1.9rem; color:#fcb040; }
.service-item b{ font-size:1.15rem; color:#003d73; margin:6px 0 4px; }
.service-item span{ color:#495b75; font-size:1rem; }

/* ===== REVIEWS ===== */
.reviews {
  background: #f9fafc;
  padding: 50px 20px;
}
.reviews-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.reviews h2 {
  color: #003d73;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.reviews-sub {
  color: #495b75;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.review-list {
  list-style: none;
  margin: 0 auto 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: 0 3px 12px rgba(24,53,84,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24,53,84,.12);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #003d73;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.review-meta {
  display: flex;
  flex-direction: column;
  font-size: .95rem;
  color: #183554;
}
.review-meta b {
  color: #003d73;
}
.stars {
  color: #fcb040;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.review p {
  margin: 0;
  color: #183554;
  font-size: 0.98rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .review-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ===== FOOTER ===== */
footer{ background:#003d73; color:#fff; padding:36px 8px 20px; }
.footer-columns{ max-width:1200px; margin:auto; display:flex; gap:28px; flex-wrap:wrap; justify-content:space-between; }
.logo-footer{ height:39px; margin-bottom:7px; }
footer a{ color:#fff; text-decoration: underline; }
footer h3{ font-size:1rem; margin:6px 0 8px; }
footer p,footer a,.copyright{ color:#fff; font-size:.97rem; margin:2px 0; }
.copyright{ margin-top:14px; color:#b7c9dc; }

/* ===== WHATSAPP FLOAT (si lo usas) ===== */
.wa-float{
  display:none; position:fixed; bottom:22px; right:22px; z-index:999; background:#25d366; color:#fff; border-radius:50%; width:60px; height:60px; justify-content:center; align-items:center; font-size:2.2rem; box-shadow:0 4px 18px rgba(24,53,84,.13);
}
@media (max-width:768px){ .wa-float{ display:flex; } }

/* ==========================
   HEADER (mobile-first)
   ========================== */

/* Badge "ATENCIÓN INMEDIATA 24H" con bounce */
.oferta-codigo {
  font-size: 18px;
  font-weight: 800;
  color: #003d73;
}
@media (max-width: 768px){
  .oferta-codigo { animation: header-bounce 1.2s ease-in-out infinite; }
}
@keyframes header-bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

.bounce-24h{ animation:header-bounce 1.2s ease-in-out infinite; }


/* Ocultar botones Tel/WA en móvil */
@media (max-width: 768px){
  .cta-contacto { display: none !important; }
  .header-inner { gap: 10px; }
}

/* Selector de idioma en una línea, con flags (lo completamos desde JS) */
.lang-select#lang {
  appearance: none;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  color: #003d73;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;   /* una sola línea */
  cursor: pointer;
}
.lang-select#lang:focus { outline: 2px solid #fcb040; }

/* ==========================
   PASOS (cajas 1-2-3) – reducir ~40% en móvil
   ========================== */
@media (max-width:768px){
  .steps{ padding:28px 0 22px; }
  .steps h2{ font-size:1.05rem; margin-bottom:18px; }
  .step-items{ gap:14px; }
  .step-item{
    padding:14px 12px;
    max-width: 92vw;
    border-radius:12px;
  }
  .step-icon{ font-size:1.8rem; padding:10px; margin-bottom:8px; }
  .step-item h3{ font-size:1.05rem; margin:6px 0; }
  .step-item p{ font-size:.95rem; }
}

/* ==========================
   SERVICIOS – centrado + carrusel
   ========================== */
.services { text-align: center; }
.services .services-wrap { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.services h2 { margin-left: auto; margin-right: auto; max-width: 860px; }
.services .services-desc { margin-left: auto; margin-right: auto; max-width: 900px; }

/* Carrusel horizontal (scroll-snap) */
.service-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.service-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 8px 10px;
  scroll-snap-align: center;
}

/* Flechas (solo tablet/desktop) */
.svc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #003d73;
  box-shadow: 0 4px 16px rgba(24,53,84,.18);
  display: none;             /* ocultas por defecto */
  align-items: center; justify-content: center;
  cursor: pointer;
}
.svc-prev { left: -8px; }
.svc-next { right: -8px; }
.svc-nav i { font-size: 1rem; }

/* 1 por vista en móvil */
@media (max-width: 768px){
  .service-track { grid-auto-columns: 88%; padding: 6px 0 10px; }
}
/* 2 por vista en tablet + flechas */
@media (min-width: 769px) and (max-width: 1023px){
  .service-track { grid-auto-columns: 48%; }
  .svc-nav { display: flex; }
}
/* 3 por vista en desktop + flechas */
@media (min-width: 1024px){
  .service-track { grid-auto-columns: 32%; }
  .svc-nav { display: flex; }
}

/* === Selector de idioma como botones con banderas === */
.lang-switch { display: flex; align-items: center; gap: 10px; }

/* ocultamos el select original para mantener compatibilidad con tu script */
.lang-select.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; padding:0; margin:-1px; }

.lang-buttons { display: inline-flex; gap: 8px; }
.lang-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; border:1.5px solid #dbe2ea;
  background:#fff; color:#003d73; font-weight:800; line-height:1;
  transition: box-shadow .15s, transform .15s, border-color .15s, background .15s;
}
.lang-btn .txt { font-size:.95rem; }
.lang-btn:hover{ transform: translateY(-1px); box-shadow:0 4px 10px rgba(24,53,84,.12); }
.lang-btn.is-active{
  border-color:#fcb040; background:#fffaf2;
  box-shadow:0 4px 12px rgba(252,176,64,.25);
}
.lang-btn[aria-pressed="true"]{ outline:2px solid #fcb04022; }

/* Banderas (CSS puro y FontAwesome) */
.flag{ display:inline-block; width:18px; height:12px; border-radius:2px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }

/* España (rojo/amarillo/rojo) */
.flag-es{
  background: linear-gradient(#c60b1e 0 33%, #ffcc00 0 66%, #c60b1e 0);
}

/* Catalunya (Senyera: amarillo con franjas rojas) */
.flag-cat{
  background:
    repeating-linear-gradient(0deg,
      #ffce00 0 6px,   /* amarillo */
      #c60b1e 6px 12px /* rojo */
    );
}

/* Icono de bandera de flag-icons.min.css */
.fi {
  font-size: 12px; /* Ajusta el tamaño si es necesario */
}

/* Responsive: comprime un poco en móvil */
@media (max-width: 480px){
  .lang-btn { padding:7px 10px; }
  .lang-btn .txt { font-size:.9rem; }
  .flag{ width:16px; height:10px; }
}

/* ===== COOKIE BANNER (menos molesto) ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #fcb040;
  color: #000;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  border-radius: 10px;
  padding: 16px;
  display: none; /* Oculto por defecto, JS lo muestra */
  align-items: center;
  gap: 14px;
}
.cookie-banner p {
  margin: 0;
  line-height: 1.4;
}
.cookie-banner a { 
  text-decoration: underline; 
  color: #000;
}
.cookie-buttons {
  display: flex; gap: 8px; margin-left: auto;
}
.btn-cookie {
  border: 1px solid rgba(0,0,0,.12);
  background: #f6f7f8;         /* secundario (para "Personalizar") */
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}
#cookie-accept.btn-cookie {
  background: #003d73;          /* primario: más llamativo para "Aceptar" */
  color: #fff;
  border-color: #0ea5e9;
}

.modal {
  display: none;
  background: rgba(0,0,0,.45);
  z-index: 10000;
}
.modal.show { display: flex; align-items: center; justify-content: center; }
.modal-content {
  background: #fff;
  width: min(560px, 92vw);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
}
.close-button {
  position: absolute; top: 10px; right: 12px;
  font-size: 22px; cursor: pointer;
}
.cookie-options { display: grid; gap: 12px; margin: 16px 0 20px; }

.link-cookie {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #fff; /* Hereda de footer a, pero lo hacemos explícito */
  text-decoration: underline;
  cursor: pointer;
}
.link-cookie:hover { opacity: 0.85; }

/* ====== CTA apilado (hero) ====== */
.cta-stack {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 768px){
  .cta-stack { grid-template-columns: 1fr; }
}

/* Botón secundario “fantasma” */
.btn-ghost{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px; border-radius:12px; font-weight:800;
  background:#fff; color:#003d73; border:2px solid #dbe2ea;
  box-shadow:0 2px 8px rgba(24,53,84,.08);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.btn-ghost:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(24,53,84,.12); border-color:#fcb040; background:#fffaf2; }
.cta-note{ font-size:.95rem; color:#495b75; margin:4px 0 0 2px; }

/* ====== BLOQUE: Presupuesto en minutos ====== */
.fast-quote-block{
  background:#f9fafc;
  padding: 38px 16px 44px;
}
.fq-inner{
  max-width: 980px;
  margin: 0 auto;
  background:#fff;
  border:1px solid #e6ebf2;
  border-radius:16px;
  box-shadow:0 6px 24px rgba(24,53,84,.08);
  padding: 22px 20px;
}
.fq-inner h2{
  color:#003d73; font-size:1.45rem; margin: 0 0 6px 0; font-weight: 800;
}
.fq-sub{
  color:#495b75; margin: 0 0 16px 0; font-size: 1rem;
}

/* Grid del formulario */
.fq-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}
@media (max-width: 768px){
  .fq-grid{ grid-template-columns: 1fr; }
}

/* Campos del formulario */
.fast-quote label{ display:flex; flex-direction:column; gap:8px; font-weight:700; color:#003d73; }
.fast-quote select,
.fast-quote input[type="text"],
.fast-quote input[type="file"],
.fast-quote input[type="email"],
.fast-quote input[name="city"]{
  appearance:none;
  border:1.5px solid #dbe2ea;
  background:#fff;
  border-radius:10px;
  padding:10px 12px;
  font-size:1rem;
  color:#183554;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fast-quote select:focus,
.fast-quote input:focus{
  border-color:#fcb040;
  box-shadow:0 0 0 3px rgba(252,176,64,.18);
}

.agree-min{
  display:flex; align-items:center; gap:10px;
  background:#fffaf2; border:1.5px solid #ffd99c; color:#183554;
  border-radius:12px; padding:10px 12px; margin: 4px 0 10px;
  font-weight:700;
}
.agree-min input[type="checkbox"]{ width:18px; height:18px; }

/* Botón de envío del formulario */
.fast-quote .btn-cta{
  margin-top: 6px;
  box-shadow:0 10px 24px rgba(252,176,64,.35),0 2px 6px rgba(0,0,0,.08);
}
.fq-legal{
  display:block;
  margin-top:10px;
  color:#6b7c93;
  font-size:.9rem;
}
.fq-legal a{ color:#003d73; text-decoration: underline; }

/* ===== Ajustes menores hero para convivir con el nuevo bloque ===== */
.hero-text .btn-cta i{ font-size: 1.9rem; }
.hero-text .btn-ghost i{ font-size: 1.2rem; }

/* ===== Presupuesto en minutos v2 ===== */
.fast-quote-block{
  background:#f9fafc;
  padding:40px 16px 44px;
}
.fq-inner{
  max-width:980px;margin:0 auto;background:#fff;
  border:1px solid #e6ebf2;border-radius:16px;
  box-shadow:0 6px 24px rgba(24,53,84,.08);
  padding:26px 20px;
}
.fq-inner h2{color:#003d73;font-size:1.5rem;font-weight:800;margin-bottom:6px;}
.fq-sub{color:#495b75;margin:0 0 18px;font-size:1rem;}
.fq-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
@media(max-width:768px){.fq-grid{grid-template-columns:1fr;}}

.fast-quote label{display:flex;flex-direction:column;gap:8px;font-weight:700;color:#003d73;}
.fast-quote select,
.fast-quote input{
  border:1.5px solid #dbe2ea;border-radius:10px;padding:10px 12px;
  font-size:1rem;color:#183554;background:#fff;
  transition:border-color .15s, box-shadow .15s;
}
.fast-quote select:focus,.fast-quote input:focus{
  border-color:#fcb040;box-shadow:0 0 0 3px rgba(252,176,64,.18);
}

/* Caja destacada de aceptación */
.agree-box{
  display:flex;align-items:flex-start;gap:12px;
  background:linear-gradient(135deg,#fff5e0,#ffe6b0);
  border:2px solid #fcb040;border-radius:14px;
  padding:14px 18px;margin:14px 0 18px;
  color:#2a2a2a;font-size:1rem;box-shadow:0 3px 12px rgba(252,176,64,.15);
}
.agree-box strong{color:#7a4900;font-size:1.05rem;}
.agree-box input{margin-top:5px;min-width:20px;height:20px;}

/* Botón CTA */
.fast-quote .btn-cta{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border:none;padding:14px 22px;border-radius:14px;
  font-weight:800;color:#fff;cursor:pointer;
  background:#003d73;transition:background .2s, transform .15s;
}
.fast-quote .btn-cta:hover{transform:translateY(-1px);}

/* Versión móvil: color WhatsApp */
@media(max-width:768px){
  .fast-quote .btn-cta{background:#25D366;}
  .fast-quote .btn-cta:hover{background:#1ebe5a;}
}
/* Icono circular (WhatsApp / Mail) */
.icon-circle{
  width: 38px; height: 38px; display:inline-flex;
  align-items:center; justify-content:center;
  border-radius:50%;
  margin-right:10px; flex-shrink:0;
}
.icon-circle--wa{ background:#25D366; color:#fff; }
.icon-circle--mail i {
  color: #fff; /* Asegura que el icono del sobre sea blanco */
}


.icon-circle--mail{ background:#003d73; color:#fff; }

/* Botón CTA del formulario: mayúsculas y centrado */
.fast-quote .btn-cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  text-transform: uppercase;
}
.fast-quote { text-align: center; } /* Centra el botón de envío */
.btn-cta__txt{ letter-spacing: .3px; }

/* Estado loading opcional */
.btn-cta.is-loading{ opacity:.75; pointer-events:none; }

/* Hero CTA: que el círculo WhatsApp mantenga aspecto */
#cta-main .icon-circle{ background:#25D366; color:#fff; }
#cta-main .fa-whatsapp{ font-size:1.1rem; }

/* (Opcional) equilibrio vertical del CTA hero */
#cta-main .cta-text{ display:flex; flex-direction:column; justify-content:center; }

/* === Igualar tamaño de los CTA del hero === */

/* 2 columnas iguales en desktop, 1 en móvil */
.cta-stack{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  align-items: stretch;          /* <- fuerza misma altura */
}
@media (max-width:768px){
  .cta-stack{ grid-template-columns: 1fr; }
}

/* Botones con mismas dimensiones base */
#cta-main,
#cta-secondary{
  display:flex;                  /* override a inline-flex del secundario */
  flex-direction: row;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height: 88px;              /* <- ALTO UNIFICADO (ajusta si quieres) */
  padding:16px 18px;
  border-radius:16px;
}

/* Estilo específico de cada CTA (mantiene tu diseño) */
#cta-main{
  /* tu color/fondo se mantiene por sus clases existentes */
}
#cta-secondary{
  background:#fff;
  color:#003d73;
  border:2px solid #dbe2ea;
  box-shadow:0 2px 8px rgba(24,53,84,.08);
  font-weight:800;
}

/* Iconos y textos centrados visualmente */
#cta-secondary i{ 
  font-size:1.2rem; 
  margin-right:10px; 
}
#cta-main .cta-text{ 
  line-height:1.05; 
  text-align:left; 
}
#cta-main .cta-line-1{ font-size:1.05rem; font-weight:800; }
#cta-main .cta-line-2{ font-size:1.6rem; font-weight:900; }
#cta-main .cta-line-3{ font-size:.9rem; opacity:.95; }

/* Nota bajo los CTA: separa un poco y no rompas layout */
.cta-note{ 
  grid-column: 1 / -1; 
  margin: 4px 0 0; 
}
