/* ============================================================
   KATARAS EXCAVACIONES — cta-footer.css
   ============================================================ */

/* ============================================================
   SECCIÓN CTA WHATSAPP
   ============================================================ */
.cta-whatsapp-section {
  position: relative;
  padding: 96px 0 80px;
  background-color: var(--color-surface, #f4f4f2);
  overflow: hidden;

  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(27, 62, 150, 0.015) 18px,
      rgba(27, 62, 150, 0.015) 19px
    );
}

.cta-whatsapp-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-blue) 60%, var(--color-yellow));
}

.cta-whatsapp-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BANNER PRINCIPAL CTA
   ============================================================ */
.cta-principal {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.cta-principal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fondo oscuro industrial */
.cta-background {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 62, 150, .55) 0%, rgba(2, 2, 2, .2) 60%);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, .025) 14px,
    rgba(255, 255, 255, .025) 15px
  );
}

/* Acento amarillo izquierdo */
.cta-principal::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px;
  height: 100%;
  background: var(--color-yellow);
  z-index: 2;
}

/* Acento geométrico esquina */
.cta-principal::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 280px; height: 280px;
  background: rgba(245, 168, 0, .06);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 56px 64px;
  max-width: 860px;
}

/* ── Badge de respuesta ── */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cta-badge i {
  font-size: .8rem;
}

/* ── Título ── */
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: .01em;
}

.cta-title .highlight {
  color: var(--color-yellow);
}

/* ── Descripción ── */
.cta-description {
  font-size: clamp(.9rem, 1.3vw, 1rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 24px;
  max-width: 620px;
}

.cta-description strong {
  color: #fff;
  font-weight: 700;
}

/* ── Beneficios inline ── */
.cta-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 32px;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .78);
}

.beneficio i {
  color: var(--color-yellow);
  font-size: .9rem;
  filter: drop-shadow(0 0 3px rgba(245, 168, 0, .4));
}

.beneficio strong {
  color: #fff;
}

/* ── Botones CTA ── */
.cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

/* Botón WhatsApp grande */
.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--color-yellow);
  position: relative;
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease, transform .22s ease, box-shadow .22s ease;
}

.btn-whatsapp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.btn-whatsapp-cta > * { position: relative; z-index: 1; }

.btn-whatsapp-cta > i:first-child {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.btn-title {
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
}

.btn-subtitle {
  font-size: .75rem;
  font-weight: 500;
  opacity: .8;
}

.btn-whatsapp-cta > i:last-child {
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.btn-whatsapp-cta:hover,
.btn-whatsapp-cta:focus {
  color: var(--color-blue);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
  outline: none;
}

.btn-whatsapp-cta:hover::before,
.btn-whatsapp-cta:focus::before { transform: translateX(0); }

.btn-whatsapp-cta:hover > i:last-child,
.btn-whatsapp-cta:focus > i:last-child { transform: translateX(4px); }

/* Botón secundario dentro del CTA */
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.btn-secondary-cta i { font-size: 1rem; transition: transform .3s ease; }

.btn-secondary-cta:hover,
.btn-secondary-cta:focus {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

.btn-secondary-cta:hover i,
.btn-secondary-cta:focus i { transform: translateY(2px); }

/* ── Trust badges ── */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

.trust-item i {
  color: var(--color-yellow);
  font-size: .72rem;
}

/* ============================================================
   CONTACTO ADICIONAL
   ============================================================ */
.contacto-adicional {
  margin-bottom: 48px;
}

.contacto-titulo {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(2, 2, 2, .4);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.contacto-titulo i {
  color: var(--color-blue);
  font-size: .82rem;
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contacto-card {
  background: #fff;
  border: 1px solid rgba(27, 62, 150, .1);
  border-top: 3px solid transparent;
  border-radius: 4px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .45s ease,
    transform .45s ease,
    border-top-color .25s ease,
    box-shadow .25s ease;
}

.contacto-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contacto-card:nth-child(1) { transition-delay: 0s; }
.contacto-card:nth-child(2) { transition-delay: .08s; }
.contacto-card:nth-child(3) { transition-delay: .16s; }

.contacto-card:hover {
  border-top-color: var(--color-blue);
  box-shadow: 0 6px 20px rgba(27, 62, 150, .1);
}

.contacto-card > i {
  font-size: 1.6rem;
  color: var(--color-blue);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

/* Instagram */
.contacto-card:nth-child(1):hover > i { color: #E1306C; }
/* Facebook */
.contacto-card:nth-child(2):hover > i { color: #1877F2; }
/* Email */
.contacto-card:nth-child(3):hover > i { color: var(--color-blue); }

.contacto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contacto-info strong {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-dark);
}

.contacto-info span {
  font-size: .76rem;
  max-width: 50px;
  color: rgba(2, 2, 2, .45);
}

.contacto-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(27, 62, 150, .06);
  border: 1px solid rgba(27, 62, 150, .14);
  border-radius: 4px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.contacto-link i { font-size: .7rem; }

.contacto-link:hover,
.contacto-link:focus {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
  outline: none;
}

/* ============================================================
   FAQ RÁPIDO
   ============================================================ */
.faq-rapido {
  margin-bottom: 40px;
}

.faq-titulo {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(2, 2, 2, .4);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.faq-titulo i {
  color: var(--color-yellow);
  font-size: .82rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(27, 62, 150, .08);
  border: 1px solid rgba(27, 62, 150, .08);
  border-left: 4px solid var(--color-blue);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item {
  background: #fff;
  padding: 16px 20px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .4s ease, transform .4s ease, background .2s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: .07s; }
.faq-item:nth-child(3) { transition-delay: .14s; }
.faq-item:nth-child(4) { transition-delay: .21s; }

.faq-item:hover { background: rgba(27, 62, 150, .02); }

.faq-pregunta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}

.faq-pregunta i {
  color: var(--color-yellow);
  font-size: .85rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 2px rgba(245, 168, 0, .3));
}

.faq-pregunta span {
  font-size: .87rem;
  font-weight: 700;
  color: var(--color-dark);
}

.faq-respuesta {
  font-size: .8rem;
  line-height: 1.55;
  color: rgba(2, 2, 2, .55);
  padding-left: 22px;
}

/* ============================================================
   HORARIOS
   ============================================================ */
.horarios-atencion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.horario-card,
.urgencia-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 4px;
}

.horario-card {
  background: rgba(27, 62, 150, .04);
  border: 1px solid rgba(27, 62, 150, .1);
  border-left: 4px solid var(--color-blue);
}

.urgencia-card {
  background: rgba(245, 168, 0, .05);
  border: 1px solid rgba(245, 168, 0, .2);
  border-left: 4px solid var(--color-yellow);
}

.horario-card > i {
  color: var(--color-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.urgencia-card > i {
  color: var(--color-yellow);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(245, 168, 0, .35));
}

.horario-info,
.urgencia-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.horario-info strong,
.urgencia-info strong {
  font-size: .84rem;
  font-weight: 700;
  color: var(--color-dark);
}

.horario-info span,
.urgencia-info span {
  font-size: .78rem;
  color: rgba(2, 2, 2, .55);
  line-height: 1.45;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;

  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, .018) 14px,
    rgba(255, 255, 255, .018) 15px
  );
}

/* Franja amarilla superior */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-yellow) 0%, var(--color-blue) 60%);
}

/* Acento geométrico */
.main-footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(27, 62, 150, .08);
  pointer-events: none;
}

.main-footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   GRID DEL FOOTER
   ============================================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 40px;
}

/* ── Columna 1: Info empresa ── */
.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-description {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 20px;
}

.footer-description strong {
  color: rgba(255, 255, 255, .8);
}

.footer-contacto {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}

.contacto-item i {
  color: var(--color-yellow);
  font-size: .88rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.contacto-item a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s ease;
}

.contacto-item a:hover { color: var(--color-yellow); }

.contacto-item span {
  color: rgba(255, 255, 255, .55);
}

/* ── Columnas 2-4: Links ── */
.footer-title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  position: relative;
}

/* Acento amarillo debajo del título */
.footer-title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 2px;
  background: var(--color-yellow);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links li,
.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .2s ease, gap .2s ease;
}

.footer-links li:last-child,
.footer-links a:last-child { border-bottom: none; }

.footer-links a:hover {
  color: rgba(255, 255, 255, .9);
  gap: 10px;
}

.footer-links i {
  font-size: .62rem;
  color: var(--color-yellow);
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .2s ease;
}

.footer-links a:hover i { opacity: 1; }

/* Zonas — sin link, solo lista */
.footer-links.zonas li {
  cursor: default;
  gap: 8px;
}

.footer-links.zonas li:hover { color: rgba(255, 255, 255, .7); }

.footer-links.zonas i {
  color: var(--color-yellow);
  font-size: .68rem;
}

/* ── Separador ── */
.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 0;
}

/* ============================================================
   FILA SOCIAL + HORARIOS
   ============================================================ */
.footer-social-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 0;
  flex-wrap: wrap;
}

/* ── Redes sociales ── */
.social-title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .38);
  margin: 0 0 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.social-icon i { font-size: 1rem; }
.social-icon span { color: rgba(255, 255, 255, .7); }

.social-icon.instagram {
  color: #E1306C;
  background: rgba(225, 48, 108, .06);
}

.social-icon.facebook {
  color: #1877F2;
  background: rgba(24, 119, 242, .06);
}

.social-icon.whatsapp {
  color: #25D366;
  background: rgba(37, 211, 102, .06);
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: currentColor;
}

.social-icon.instagram:hover { background: rgba(225, 48, 108, .14); }
.social-icon.facebook:hover  { background: rgba(24, 119, 242, .14); }
.social-icon.whatsapp:hover  { background: rgba(37, 211, 102, .14); }

/* ── Horarios del footer ── */
.footer-horarios {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.horario-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.horario-item i {
  color: var(--color-yellow);
  font-size: .95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.horario-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.horario-item strong {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}

.horario-item span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.4;
}

/* ============================================================
   FOOTER BOTTOM — COPYRIGHT
   ============================================================ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.copyright p {
  font-size: .76rem;
  color: rgba(255, 255, 255, .35);
  margin: 0 0 4px;
  line-height: 1.5;
}

.copyright p:last-child { margin: 0; }

.copyright a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s ease;
}

.copyright a:hover { color: var(--color-yellow); }

.footer-credits p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .25);
  margin: 0 0 4px;
  text-align: right;
  line-height: 1.5;
}

.footer-credits strong { color: rgba(255, 255, 255, .35); }

.footer-credits .developer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
}

.footer-credits .developer i {
  color: var(--color-yellow);
  font-size: .7rem;
}

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, .35),
    0 2px 6px rgba(0, 0, 0, .2);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  text-decoration: none;
}

.whatsapp-float-btn i {
  font-size: 2rem;
  color: #fff;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, .45),
    0 4px 10px rgba(0, 0, 0, .2);
}

/* Pulso animado */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .25);
  animation: waPulse 2.2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.22); opacity: 0; }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  border-left: 3px solid var(--color-yellow);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-dark);
  border-right-width: 0;
}

.whatsapp-float-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cta-whatsapp-section .container,
  .main-footer .container { padding: 0 32px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }

  .footer-col:first-child { grid-column: span 2; }

  .contacto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cta-whatsapp-section { padding: 64px 0 60px; }
  .cta-whatsapp-section .container,
  .main-footer .container { padding: 0 24px; }

  .cta-content { padding: 36px 28px; }

  .cta-title { font-size: 1.7rem; }

  .cta-buttons { flex-direction: column; align-items: stretch; }

  .btn-whatsapp-cta,
  .btn-secondary-cta { justify-content: center; }

  .cta-trust { flex-direction: column; gap: 8px; }

  .faq-grid { grid-template-columns: 1fr; }

  .horarios-atencion { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 32px;
  }

  .footer-col:first-child { grid-column: auto; }

  .footer-social-row {
    flex-direction: column;
    gap: 28px;
  }

  .social-icons { flex-direction: column; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-credits p { text-align: left; }
  .footer-credits .developer { justify-content: flex-start; }

  .whatsapp-float { bottom: 20px; right: 20px; }

  .whatsapp-float-btn { width: 52px; height: 52px; }

  .whatsapp-float-btn i { font-size: 1.65rem; }

  .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
  .cta-whatsapp-section .container,
  .main-footer .container { padding: 0 16px; }

  .cta-content { padding: 28px 20px; }

  .cta-beneficios { flex-direction: column; gap: 8px; }

  .social-icons { flex-direction: row; flex-wrap: wrap; }

  .footer-horarios { flex-direction: column; gap: 16px; }
}

.footer-credits .developer a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-credits .developer a:hover {
    color: var(--color-yellow);
}