:root {
  --sd-red:         #e50914;
  --sd-red-hover:   #c4070f;
  --sd-dark:        #0b0b0c;
  --sd-gray:        #6b7280;
  --sd-light:       #f8f9fa;
  --success-green:  #10b981;
  --warning-yellow: #f59e0b;
  --error-red:      #dc2626;
  --max-width:      1200px;
  --header-border:  #d1d5db;
}

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

html { height: 100%; }

body {
  font-family: 'Fira Sans', 'Segoe UI', 'Roboto', -apple-system, sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
  background: #fafafa;
  -webkit-overflow-scrolling: touch;
}

/* ── Grid ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-lg-11,
.col-md-6, .col-lg-3, .col-lg-9, .col-md-4, .col-md-8,
.col-2, .col-4, .col-6, .col-8, .col-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6  { flex: 0 0 50%;        max-width: 50%;        }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%;        max-width: 50%;        }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
  .col-lg-3  { flex: 0 0 25%;        max-width: 25%;        }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%;        max-width: 50%;        }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%;        max-width: 75%;        }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
}

/* ── Utilidades de alineación ───────────────────────────── */
.align-items-center   { align-items: center; }
.align-items-stretch  { align-items: stretch; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-md-end  { justify-content: flex-end; }
.text-center  { text-align: center; }
.text-md-start { text-align: center; }

@media (min-width: 768px) {
  .text-md-start { text-align: left; }
}

/* ── Utilidades de espaciado ────────────────────────────── */
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-md-0 { margin-bottom: 1rem; }

@media (min-width: 768px) {
  .mb-md-0 { margin-bottom: 0; }
}

.g-4 { margin-right: -0.75rem; margin-left: -0.75rem; }
.g-4 > * { padding-right: 0.75rem; padding-left: 0.75rem; margin-bottom: 1.5rem; }
.g-0 { margin-right: 0; margin-left: 0; }
.g-0 > * { padding-right: 0; padding-left: 0; }

.h-100   { height: 100%; }
.fw-bold { font-weight: 700; }

.bi {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-style: normal;
}

/* ── Utilidades de visibilidad ──────────────────────────── */
/*
   Sin !important: estas clases son las últimas en el HTML,
   por lo que ganan en especificidad mediante el orden en cascada.
   Si hay conflicto, usa un selector más específico en su sección.
*/
.d-none  { display: none;  }
.d-block { display: block; }

/* Por defecto en móvil */
.d-lg-none  { display: block; }
.d-lg-block { display: none;  }

@media (min-width: 992px) {
  .d-lg-none  { display: none;  }
  .d-lg-block { display: block; }
}

/* ============================================================
   HEADER
============================================================ */
.header-securitas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-securitas .top-header {
  background: #fff;
  /* border-bottom removed */
  padding: 0.8rem 0;
}

.header-securitas .container {
  max-width: var(--max-width);
  padding-right: 0;
  padding-left: 0;
  margin: 0 auto;
}

.header-securitas .row {
  margin-right: 0;
  margin-left: 0;
}

.header-securitas .col-4,
.header-securitas .col-6,
.header-securitas .col-8 {
  padding-right: 0;
  padding-left: 0;
}

.logo-section-securitas {
  display: flex;
  align-items: flex-start;
  height: 100%;
  margin-left: 30px;
  gap: 1.8rem;
  padding-top: 0.5rem;
}

.logo-wrapper-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.logo-wrapper-centered img {
  height: 62px;
  width: auto;
}

.dealer-text-small {
  font-size: 0.5rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.2;
  display: block;
}

.header-title-wrapper {
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
}

.header-title {
  font-family: 'Fira Sans', 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sd-dark);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
}

.header-dealer-logo {
  height: 28px;
  width: auto;
  margin-right: 12px;
  opacity: 0.85;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-top: 0.5rem;
}

/* Botones de teléfono: Nuevos clientes + Ya clientes */
.header__phones {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__phones-divider {
  width: 1px;
  height: 36px;
  background: var(--sd-red);
  opacity: 0.3;
  flex-shrink: 0;
}
.header__phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 32px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 14px rgba(229,9,20,0.30);
}
.header__phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(229,9,20,0.40);
}
.header__phone-btn .header__phone-text {
  text-align: center;
}
.header__phone-btn .header__phone-text small {
  font-size: 12px;
  color: rgba(255,255,255,.85);
}
.header__phone-btn .header__phone-text strong {
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.header__client-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f0f0f0;
  color: var(--sd-dark);
  padding: 14px 24px;
  border-radius: 32px;
  cursor: pointer;
  transition: transform .25s ease;
  border: 1px solid #e0e0e0;
}
.header__client-btn:hover { transform: scale(1.05); }
.header__client-btn .header__phone-text {
  text-align: center;
}
.header__client-btn .header__phone-text small {
  font-size: 12px;
  color: #888;
}
.header__client-btn .header__phone-text strong {
  font-size: 20px;
  color: var(--sd-dark);
  font-weight: 800;
  letter-spacing: 0.3px;
}
.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 2.5rem 0;
  margin-top: 95px;
}

.hero-section .container { max-width: var(--max-width); }

.hero-section .row {
  margin-right: 0;
  margin-left: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-radius: 20px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  max-height: 600px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Sellos de confianza sobre la imagen hero */
.hero-awards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-awards__sellos {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hero-awards__sellos img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.hero-awards__text {
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}
.hero-awards__text strong {
  font-style: italic;
  font-weight: 800;
}

/* Sellos mobile — oculto en desktop, visible cuando hero-image desaparece */
.hero-awards-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
  border-radius: 12px;
  margin-top: 12px;
}
.hero-awards-mobile .hero-awards__sellos img {
  height: 42px;
}
.hero-awards-mobile .hero-awards__text {
  font-size: 0.85rem;
}

.blockclickcall {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.form-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 1.5rem 2rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.form-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-card-header h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sd-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
}

.form-subtitle-h3 {
  color: var(--sd-dark);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.form-mid-text {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.mid-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mid-text-main {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--sd-dark);
}
@media (max-width: 480px) {
  .mid-text-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }
  .mid-text-main {
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
  }
}

.badge-sin-compromiso {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Controles del formulario ───────────────────────────── */
.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 3px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 2px rgba(0,0,0,0.02);
  color: #1a1a1a;
}

.form-control:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 2px rgba(0,0,0,0.02);
  transform: translateY(-1px);
}

.form-control:focus {
  outline: none;
  border-color: var(--sd-red);
  border-width: 3px;
  box-shadow: 0 4px 16px rgba(229,9,20,0.15), 0 0 0 4px rgba(229,9,20,0.08);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: #9ca3af;
  font-weight: 400;
  opacity: 1;
}

.form-control.error {
  border-color: #dc2626;
  border-width: 3px;
  box-shadow: 0 2px 8px rgba(220,38,38,0.15);
}

.field-error {
  display: none;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  align-items: center;
  gap: 0.35rem;
}

.field-error.show {
  display: flex;
}

.field-error i { font-size: 1rem; flex-shrink: 0; }

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 3rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #9ca3af;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e50914' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:valid { color: #1a1a1a; }
.form-select option { padding: 0.75rem; background: #fff; color: #1a1a1a; font-weight: 500; }
.form-select option[value=""] { color: #9ca3af; }

/* ── Botón submit ───────────────────────────────────────── */
.btn-submit {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(229,9,20,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(229,9,20,0.4);
}

.btn-submit:hover::before { left: 100%; }
.btn-submit i { font-size: 1.3rem; }

.consent-text {
  font-size: 0.75rem;
  color: var(--sd-gray);
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}

.consent-text a {
  color: var(--sd-gray);
  font-weight: 700;
  text-decoration: underline;
}

.consent-text a:hover { color: var(--sd-red); }

/* ============================================================
   PANTALLA DE ÉXITO EN EL FORMULARIO
============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

@keyframes successPop {
  0%   { transform: scale(0);   opacity: 0; }
  50%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}

.success-screen {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease;
}

.success-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(16,185,129,0.3);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon-large i { font-size: 3.5rem; color: white; }
.success-title  { font-weight: 900; font-size: 2rem; color: var(--sd-dark); margin-bottom: 0.75rem; line-height: 1.2; }
.success-subtitle { font-weight: 800; font-size: 1.3rem; color: #10b981; margin-bottom: 1.25rem; line-height: 1.3; }
.success-text   { color: var(--sd-gray); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; padding: 0 1rem; }

/* ============================================================
   ATENCIÓN AL CLIENTE (cuando seleccionan "ya soy cliente - ayuda")
============================================================ */
@keyframes slideInFromBottom {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.customer-service-info { animation: slideInFromBottom 0.5s ease; margin-top: 1.5rem; }

.customer-service-info-box {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(229,9,20,0.3);
}

.customer-service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.customer-service-icon i { font-size: 2rem; }
.customer-service-info-box h3 { font-weight: 900; font-size: 1.4rem; margin-bottom: 1rem; color: white; }
.customer-service-info-box p  { font-size: 1rem; margin-bottom: 1.5rem; opacity: 0.95; }

@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

.customer-service-phone {
  background: white;
  color: var(--sd-red);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.customer-service-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: var(--sd-red);
  text-decoration: none;
}

.customer-service-phone i { font-size: 1.5rem; animation: phonePulse 2s ease-in-out infinite; flex-shrink: 0; }

/* ============================================================
   MODALES
============================================================ */
.modal-overlay-new {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay-new.show {
  display: flex;
  opacity: 1;
}

.modal-box-new {
  background: #fff;
  color: #333;
  padding: 0;
  border-radius: 20px;
  max-width: 550px;
  width: 90%;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-overlay-new.show .modal-box-new { transform: scale(1); }

.modal-header-new {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: white;
  padding: 2rem 2.5rem 1.5rem;
  position: relative;
}

.modal-header-new h3 { font-weight: 900; font-size: 1.6rem; margin: 0 0 0.5rem; line-height: 1.3; }
.modal-header-new p  { margin: 0; font-size: 0.95rem; opacity: 0.95; font-weight: 500; }

.modal-body-new { padding: 2rem 2.5rem; }

.modal-close-new {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.5);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 300;
  line-height: 1;
  z-index: 10;
}

.modal-close-new:hover {
  background: rgba(255,255,255,0.42);
  transform: rotate(90deg);
}

/* Close button inside header (llamada modal) */
.llamada-header-close {
  position: absolute;
  top: 1rem; right: 1rem;
}

/* Modales tipo Bootstrap (cookies, privacidad) */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  overflow: auto;
  backdrop-filter: blur(3px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  max-width: 600px;
  width: 90%;
  margin: 2rem auto;
}

.modal-lg { max-width: 800px; }

.modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: white;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 70px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  flex: 1;
}

.btn-close {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.btn-close:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) rotate(90deg);
}

.btn-close::before {
  content: "\00d7";
  font-size: 2rem;
  line-height: 1;
}

.modal-body {
  padding: 2rem 1.5rem;
}

.modal-body--scroll {
  max-height: 70vh;
  overflow-y: auto;
  padding: 2rem;
}

.modal-body--scroll ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.modal-body--scroll li { margin-bottom: 0.4rem; }
.modal-body--scroll p  { margin-bottom: 1rem; }

/* Botón volver dentro del modal tipo Bootstrap */
.btn-back {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.btn-back.show { display: flex; }
.btn-back:hover { background: rgba(255,255,255,0.3); }

/* ── Opciones del modal tipo cliente ────────────────────── */
.customer-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customer-option:hover { border-color: var(--sd-red); background: #fff5f5; }
.customer-option input[type="radio"] { accent-color: var(--sd-red); flex-shrink: 0; }
.customer-option label { cursor: pointer; font-weight: 500; color: var(--sd-dark); }

.response-content {
  display: none;
  background: #f0fdf4;
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
  animation: slideInFromBottom 0.4s ease;
}

.response-content.show { display: block; }
.response-content h4    { color: var(--sd-dark); font-weight: 800; margin-bottom: 0.5rem; }
.response-content p     { color: var(--sd-gray); font-size: 0.9rem; margin-bottom: 0.5rem; }

.contact-info { background: #fff; border-radius: 8px; padding: 1rem; margin-top: 0.75rem; }
.contact-info strong { display: block; margin-bottom: 0.25rem; }
.textotelefono { font-size: 1.3rem; font-weight: 800; color: var(--sd-red); }

/* ── Modales overlay nuevos ─────────────────────────────── */
.modal-options-new { display: flex; flex-direction: column; gap: 0.75rem; }

.modal-option-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-option-new:hover { border-color: var(--sd-red); background: #fff5f5; }
.modal-option-new input[type="radio"] { accent-color: var(--sd-red); flex-shrink: 0; }

.modal-option-content-new strong { display: block; font-weight: 700; color: var(--sd-dark); }
.modal-option-content-new span   { font-size: 0.85rem; color: var(--sd-gray); }

.modal-actions-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modal-back-btn-new {
  background: none;
  border: 2px solid #e5e7eb;
  color: var(--sd-gray);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.modal-back-btn-new:hover { border-color: var(--sd-dark); color: var(--sd-dark); }

.form-submit-btn-new {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: white;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.form-submit-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229,9,20,0.35);
}

.form-group-new { margin-bottom: 1.25rem; }

.form-group-new label {
  display: block;
  font-weight: 700;
  color: var(--sd-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group-new input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  color: var(--sd-dark);
  background: #f8faff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), inset 0 1px 3px rgba(0,0,0,0.04);
}

.form-group-new input:focus {
  outline: none;
  border-color: var(--sd-red);
  box-shadow: 0 0 0 3px rgba(229,9,20,0.08);
}

.form-group-new input.error { border-color: #dc2626; }

.field-error-new {
  display: none;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  align-items: center;
  gap: 0.3rem;
}

.field-error-new.show { display: flex; }

.form-consent-new {
  font-size: 0.75rem;
  color: var(--sd-gray);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

.form-consent-new a { color: var(--sd-red); font-weight: 700; text-decoration: none; }
.form-consent-new a:hover { text-decoration: underline; }

/* ── Uso de información dentro de overlay ───────────────── */
.uso-info-text { color: #555; font-size: 0.88rem; line-height: 1.6; margin: 0 0 16px; }
.uso-info-text a { color: var(--sd-red); font-weight: 700; text-decoration: none; }
.uso-info-text a:hover { text-decoration: underline; }

/* ── Toggles de consentimiento ─────────────────────────── */
.consent-toggles {
  border-top: 1px solid #eee;
  margin-bottom: 16px;
}
.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}
.consent-row:last-child { border-bottom: none; }
.consent-label {
  font-size: 0.9rem;
  color: var(--sd-dark);
  font-weight: 500;
}
.consent-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.consent-switch input { display: none; }
.consent-slider {
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 24px;
  position: relative;
  transition: background 0.25s;
}
.consent-slider::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.consent-switch input:checked + .consent-slider {
  background: #22c55e;
}
.consent-switch input:checked + .consent-slider::after {
  transform: translateX(20px);
}
.consent-switch-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #22c55e;
  min-width: 18px;
}
.consent-switch input:not(:checked) ~ .consent-switch-text {
  color: #999;
}
.consent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.consent-accept-btn {
  background: var(--sd-dark, #0b0b0c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.consent-accept-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ── Modal contacto info ────────────────────────────────── */
.contact-info-modal { text-align: center; padding: 1rem 0; }

.info-icon {
  width: 70px; height: 70px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.info-icon i { font-size: 2rem; color: var(--sd-red); }

.phone-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sd-red);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.phone-display:hover { text-decoration: underline; }

.help-text { color: var(--sd-gray); font-size: 0.9rem; }

/* ── Modal éxito ────────────────────────────────────────── */
.modal-success-new {
  text-align: center;
  padding: 2.5rem 2rem;
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.modal-success-new h3 {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--sd-dark);
  margin-bottom: 0.75rem;
}

.modal-success-new p {
  color: var(--sd-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.modal-success-new strong { color: #10b981; font-size: 1.1rem; display: block; margin-bottom: 0.5rem; }

/* ============================================================
   TOAST NOTIFICATIONS
============================================================ */
.toast-container {
  position: fixed;
  top: 20px; right: 20px;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes slideIn {
  from { transform: translateX(400px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

.toast {
  background: white;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.toast.success { border-left: 4px solid #10b981; }
.toast.success .toast-icon { color: #10b981; }
.toast.error   { border-left: 4px solid #dc2626; }
.toast.error   .toast-icon { color: #dc2626; }

.toast-icon    { font-size: 1.5rem; display: flex; align-items: center; }
.toast-message { flex: 1; font-weight: 600; color: var(--sd-dark); }

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(220,38,38,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(220,38,38,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-section .container { position: relative; z-index: 1; }

.stat-item {
  text-align: center;
  padding: 15px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  height: 100%;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(220,38,38,0.3);
  box-shadow: 0 15px 30px rgba(220,38,38,0.15);
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
  line-height: 1;
}

.stat-number,
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(220,38,38,0.3);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 0 4px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.animate-fade-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

/* ============================================================
   FEATURES SECTION
============================================================ */
.features-section {
  background: #fff;
  padding: 2.5rem 0;
}

.features-section h2 { font-size: 2rem; font-weight: 900; color: var(--sd-dark); margin-bottom: 0.75rem; }

.text-muted { color: var(--sd-gray); }
.features-section .text-muted { font-size: 1rem; font-weight: 600; margin-bottom: 1.75rem; }

.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.75rem 1.5rem;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: var(--sd-red);
}

.feature-image {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 auto 1.25rem;
  display: block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 3px solid #f0f2f5;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
  border-color: var(--sd-red);
  box-shadow: 0 12px 35px rgba(229,9,20,0.2);
}

.feature-card h3 { font-weight: 800; font-size: 1.05rem; color: var(--sd-dark); margin-bottom: 0.75rem; }
.feature-card p  { color: var(--sd-gray); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #f8f9fa;
  padding: 1.5rem 0;
  border-top: 2px solid #e5e7eb;
}

.footer-dealer { font-weight: 800; color: #999; font-size: 0.9rem; display: flex; align-items: center; }
.footer-dealer-logo { height: 32px; width: auto; object-fit: contain; }

.footer-links { display: flex; gap: 1.5rem; align-items: center; justify-content: center; }

.footer-links a {
  color: var(--sd-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--sd-red); }
.footer-links .separator { color: #cbd5e1; }

/* ============================================================
   RESPONSIVE — max 1399px
============================================================ */
@media (min-width: 1400px) {
  .hero-image { min-height: 550px; max-height: 650px; }
  .stat-number, .stat-suffix { font-size: 2.4rem; }
  .stat-label  { font-size: 0.85rem; }
  .stat-item   { min-height: 100px; padding: 18px 12px; }
  .stats-section { padding: 35px 0; }
  .footer { padding: 1.75rem 0; }
}

@media (min-width: 2200px) {
  .container,
  .header-securitas .container,
  .hero-section .container { max-width: 1600px; }
  .logo-wrapper-centered img { height: 75px; }
  .dealer-text-small  { font-size: 0.62rem; }
  .header-title       { font-size: 1.4rem; }

  .header__phone-btn { padding: 10px 22px; }
  .header__phone-btn .header__phone-text strong { font-size: 20px; }
  .header__client-btn { padding: 10px 20px; }
  .header__client-btn .header__phone-text strong { font-size: 20px; }
  .hero-image         { min-height: 650px; max-height: 750px; }
  .form-card-header h2 { font-size: 2rem; }
  .form-subtitle-h3   { font-size: 1.3rem; }
  .mid-text-main      { font-size: 1.15rem; }
  .badge-sin-compromiso { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
  .form-control       { font-size: 1.15rem; padding: 1.2rem 1.4rem; }
  .btn-submit         { font-size: 1.3rem; padding: 1.3rem 2.5rem; }
  .hero-awards__sellos img { height: 62px; }
  .hero-awards__text  { font-size: 1.15rem; }
  .stat-number, .stat-suffix { font-size: 2.8rem; }
  .stat-label  { font-size: 0.95rem; }
  .stat-item   { padding: 20px 16px; min-height: 120px; }
  .stats-section { padding: 40px 0; }
  .feature-image { max-width: 340px; height: 340px; }
  .feature-card  { padding: 2.2rem 2rem; }
  .feature-card h3 { font-size: 1.3rem; }
  .feature-card p  { font-size: 1rem; }
  .footer-dealer   { font-size: 1.1rem; }
  .footer-links a  { font-size: 0.9rem; }
  .footer { padding: 2rem 0; }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .hero-image { min-height: 450px; max-height: 550px; }
  .header-title { font-size: 1rem; }

  .header__phone-btn { padding: 10px 20px; }
  .header__phone-btn .header__phone-text strong { font-size: 18px; }
  .header__phone-btn .header__phone-text small { font-size: 11px; }
  .header__client-btn { padding: 10px 18px; }
  .header__client-btn .header__phone-text strong { font-size: 17px; }
  .header__client-btn .header__phone-text small { font-size: 11px; }
  .form-card-header h2 { font-size: 1.5rem; }
  .form-subtitle-h3 { font-size: 1rem; }
  .stat-number, .stat-suffix { font-size: 1.9rem; }
  .stat-label { font-size: 0.72rem; }
  .stat-item  { min-height: 85px; padding: 14px 10px; }
  .stats-section { padding: 28px 0; }
}

@media (max-width: 991px) {
  .logo-wrapper-centered img { height: 48px; }
  .dealer-text-small  { font-size: 0.45rem; letter-spacing: 0.5px; }
  .header-title       { font-size: 0.9rem;  letter-spacing: 0.25px; }
  .logo-section-securitas { gap: 1.3rem; }
  .header-title-wrapper   { padding-top: 1.2rem; }

  .header__phones { gap: 8px; }
  .header__phone-btn { padding: 8px 14px; }
  .header__phone-btn .header__phone-text strong { font-size: 15px; }
  .header__phone-btn .header__phone-text small { font-size: 10px; }
  .header__client-btn { padding: 8px 12px; }
  .header__client-btn .header__phone-text strong { font-size: 14px; }
  .header__client-btn .header__phone-text small { font-size: 10px; }
  .col-lg-8, .col-lg-4    { flex: 0 0 100%; max-width: 100%; }
  .hero-section { margin-top: 90px; padding: 2rem 0; }
  .hero-section .row { margin: 0 15px; }
  .hero-image { min-height: 400px; max-height: 500px; }
  .features-section { padding: 2rem 0 1.5rem; }
  .feature-image { max-width: 220px; height: 220px; }
  .stat-number, .stat-suffix { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }
  .stat-item  { padding: 12px 8px; min-height: 75px; }
  .stats-section { padding: 25px 0; }
  .footer { padding: 1.25rem 0; }
  .footer-dealer { font-size: 0.85rem; }
  .footer-links a { font-size: 0.7rem; }
}

@media (max-width: 767px) {
  .header-securitas .col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .header-securitas .col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .logo-section-securitas  { margin-left: 15px; gap: 0.6rem; }
  .logo-wrapper-centered img { height: 40px; }
  .dealer-text-small  { font-size: 0.38rem; letter-spacing: 0.4px; }
  .header-title       { font-size: 0.7rem; letter-spacing: 0.2px; }
  .header-title-wrapper { padding-top: 1rem; }
  .header__phones     { display: none; }
  .header-dealer-logo { height: 20px; margin-right: 8px; }
  .hero-section       { padding: 1rem 0 1.5rem; margin-top: 85px; }
  .hero-section .col-lg-8 { display: none; }
  .hero-section .row  { margin: 0 15px; }
  .hero-section .col-lg-4 { flex: 0 0 100%; max-width: 100%; }
  .hero-image         { display: none; }
  .hero-awards-mobile { display: flex; }
  .form-card          { padding: 2rem 1.5rem; border-radius: 20px; }
  .form-card-header   { margin-bottom: 1.2rem; }
  .form-card-header h2 { font-size: 1.4rem; white-space: normal; }
  .form-subtitle-h3   { font-size: 0.95rem; }
  .mid-text-wrapper   { flex-direction: row; }
  .mid-text-main      { font-size: 0.85rem; }
  .badge-sin-compromiso { font-size: 0.6rem; padding: 0.3rem 0.65rem; }
  .features-section   { padding: 1.5rem 0; }
  .features-section h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .features-section .text-muted { font-size: 0.85rem; margin-bottom: 1.25rem; }
  .feature-card  { padding: 1.5rem 1.25rem; margin-bottom: 1.25rem; }
  .feature-image { max-width: 200px; height: 200px; }
  .feature-card h3 { font-size: 0.95rem; }
  .feature-card p  { font-size: 0.8rem; }
  .footer { padding: 1.25rem 0 6rem; }
  .footer .row { flex-direction: column; align-items: center; }
  .footer .col-md-6 { flex: 0 0 100%; max-width: 100%; margin-bottom: 0.6rem !important; text-align: center; }
  .footer .col-md-6:last-child { margin-bottom: 0 !important; }
  .footer-dealer { font-size: 0.8rem; justify-content: center; }
  .footer-dealer-logo { height: 26px; }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.5rem;
    padding-right: 0;
    padding-left: 0;
  }
  .footer-links a { font-size: 0.72rem; white-space: nowrap; }
  .footer-links .separator { display: inline; font-size: 0.72rem; color: #cbd5e1; }
  /* Forzar salto de línea después del 2º separador */
  .footer-links .separator:nth-of-type(2) {
    flex-basis: 100%;
    height: 0;
    width: 0;
    overflow: hidden;
    margin: 0;
    color: transparent;
  }
  .customer-service-info-box { padding: 1.75rem 1.25rem; }
  .customer-service-phone { font-size: 1.6rem; padding: 1rem 1.75rem; }
  .success-icon-large { width: 80px; height: 80px; }
  .success-icon-large i { font-size: 2.75rem; }
  .success-title  { font-size: 1.6rem; }
  .success-subtitle { font-size: 1.1rem; }
  .success-text   { font-size: 0.9rem; }
  .stat-number, .stat-suffix { font-size: 1.5rem; }
  .stat-label { font-size: 0.62rem; }
  .stat-item  { padding: 11px 8px; min-height: 72px; }
  .stats-section { padding: 22px 0; }
}

@media (max-width: 480px) {
  .header-securitas .col-8 { flex: 0 0 70%; max-width: 70%; }
  .header-securitas .col-4 { flex: 0 0 30%; max-width: 30%; }
  .logo-section-securitas  { margin-left: 10px; gap: 0.5rem; }
  .logo-wrapper-centered img { height: 38px; }
  .dealer-text-small  { font-size: 0.36rem; }
  .header-title       { font-size: 0.65rem; }
  .header-title-wrapper { padding-top: 0.9rem; }
  .form-card-header h2 { font-size: 1.3rem; }
  .form-subtitle-h3   { font-size: 0.9rem; }
  .features-section   { padding: 1.25rem 0; }
  .features-section h2 { font-size: 1.35rem; }
  .feature-image { max-width: 180px; height: 180px; }
  .stat-number, .stat-suffix { font-size: 1.4rem; }
  .stat-label { font-size: 0.58rem; }
  .stat-item  { padding: 10px 6px; min-height: 68px; }
  .stats-section { padding: 20px 0; }
}

@media (max-width: 375px) {
  .header-securitas .col-8 { flex: 0 0 68%; max-width: 68%; }
  .header-securitas .col-4 { flex: 0 0 32%; max-width: 32%; }
  .logo-wrapper-centered img { height: 36px; }
  .dealer-text-small  { font-size: 0.34rem; }
  .header-title       { font-size: 0.6rem; }
  .header-title-wrapper { padding-top: 0.85rem; }
  .hero-section       { margin-top: 85px; }
  .features-section   { padding: 1rem 0; }
  .feature-image { max-width: 160px; height: 160px; }
  .stat-number, .stat-suffix { font-size: 1.3rem; }
  .stat-label { font-size: 0.55rem; }
  .stat-item  { padding: 9px 5px; min-height: 65px; }
  .stats-section { padding: 18px 0; }
}

@media (max-width: 320px) {
  .header-securitas .col-8 { flex: 0 0 66%; max-width: 66%; }
  .header-securitas .col-4 { flex: 0 0 34%; max-width: 34%; }
  .logo-section-securitas  { margin-left: 5px; gap: 0.4rem; }
  .logo-wrapper-centered img { height: 34px; }
  .dealer-text-small { font-size: 0.32rem; }
  .header-title      { font-size: 0.58rem; }
  .customer-service-phone { font-size: 1.3rem; padding: 0.85rem 1.25rem; }
  .form-card-header h2 { font-size: 1.1rem; }
  .stat-number, .stat-suffix { font-size: 1.2rem; }
  .stat-label { font-size: 0.52rem; }
  .stat-item  { padding: 8px 4px; min-height: 62px; }
  .stats-section { padding: 16px 0; }
}

/* ============================================================
   FEATURE CARDS — ICON VARIANT
============================================================ */
.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff5f5 0%, #fecaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.feature-icon-wrapper i {
  font-size: 2rem;
  color: var(--sd-red);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
}

.feature-card:hover .feature-icon-wrapper i { color: #fff; }

/* ============================================================
   TABLA COMPARATIVA (TARIFAS)
============================================================ */
.tarifas {
  --color-si:       #27ae60;
  --color-opcional: #f39c12;
  --color-no:       #e74c3c;
  --color-dest-bg:  #fef2f2;
  --color-dest-brd: #f87171;
  padding: 2.5rem 1.5rem;
  background: #fff;
}

.tarifas__container { max-width: 1100px; margin: 0 auto; }

.tarifas__titulo {
  font-size: 1.85rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.tarifas__subtitulo {
  font-size: 1.05rem;
  color: var(--sd-gray);
  text-align: center;
  margin-bottom: 1.5rem;
}

.tarifas__leyenda {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tarifas__leyenda-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #2c3e50;
}

/* Icono check (SI) */
.tarifas__icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  min-width: 26px; min-height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tarifas__icono--si {
  border: 2px solid var(--color-si);
  position: relative;
}

.tarifas__icono--si::before {
  content: '';
  position: absolute;
  width: 10px; height: 6px;
  border-left: 2.5px solid var(--color-si);
  border-bottom: 2.5px solid var(--color-si);
  transform: rotate(-45deg);
  top: 7px;
}

/* Icono opcional (i) */
.tarifas__icono--opcional {
  border: 2px solid var(--color-opcional);
  position: relative;
}

.tarifas__icono--opcional::before {
  content: 'i';
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-opcional);
  font-family: Georgia, serif;
}

/* Icono X (NO) */
.tarifas__icono--no {
  border: 2px solid var(--color-no);
  position: relative;
}

.tarifas__icono--no::before,
.tarifas__icono--no::after {
  content: '';
  position: absolute;
  width: 10px; height: 2px;
  background: var(--color-no);
  border-radius: 1px;
}

.tarifas__icono--no::before { transform: rotate(45deg);  }
.tarifas__icono--no::after  { transform: rotate(-45deg); }

/* Tabla */
.tarifas__tabla-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5rem;
  padding: 0 0.5rem 4px;
}

.tarifas__tabla {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  min-width: 580px;
}

.tarifas__th-caracteristica {
  width: 46%;
  text-align: left;
  padding: 1rem 0.75rem;
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
}

.tarifas__th-compania {
  width: 18%;
  text-align: center;
  padding: 1rem 0.75rem;
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  vertical-align: bottom;
  position: relative;
}

.tarifas__th-compania--destacada {
  background: var(--color-dest-bg);
  border-left:  2px solid var(--color-dest-brd);
  border-right: 2px solid var(--color-dest-brd);
  border-top:   2px solid var(--color-dest-brd);
  border-top-left-radius:  12px;
  border-top-right-radius: 12px;
  padding-top: 2.5rem;
}

.tarifas__th-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sd-red-hover);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.tarifas__th-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 0 auto;
}

.tarifas__th-img {
  max-width: 110px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.tarifas__th-img--destacada {
  max-width: 120px;
  max-height: 58px;
}

.tarifas__th-brand {
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--sd-red);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.tarifas__th-brand--gray { color: #888; font-weight: 700; }

.tarifas__fila { transition: background 0.3s ease; }
.tarifas__fila:nth-child(even) { background: #f0f0f0; }
.tarifas__fila:nth-child(even) .tarifas__td-valor--destacada { background: var(--color-dest-bg); }
.tarifas__fila:hover { background: #e8e8e8; }
.tarifas__fila:hover .tarifas__td-valor--destacada { background: #fce4e4; }

.tarifas__td-caracteristica {
  padding: 0;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.tarifas__td-valor {
  padding: 0.6rem 0.4rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}

.tarifas__td-valor--destacada {
  background: var(--color-dest-bg);
  border-left:  2px solid var(--color-dest-brd);
  border-right: 2px solid var(--color-dest-brd);
}

.tarifas__fila:last-child .tarifas__td-valor--destacada {
  border-bottom: 2px solid var(--color-dest-brd);
  border-bottom-left-radius:  12px;
  border-bottom-right-radius: 12px;
}

.tarifas__fila:last-child .tarifas__td-caracteristica,
.tarifas__fila:last-child .tarifas__td-valor { border-bottom: none; }

/* Desplegable de filas */
.tarifas__desplegable { cursor: pointer; }

.tarifas__desplegable-titulo {
  padding: 0.9rem 2.5rem 0.9rem 1rem;
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.4;
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
}

.tarifas__desplegable-titulo::-webkit-details-marker { display: none; }

.tarifas__desplegable-titulo::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--sd-gray);
  border-bottom: 2px solid var(--sd-gray);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tarifas__desplegable[open] .tarifas__desplegable-titulo::after {
  transform: translateY(-40%) rotate(-135deg);
}

.tarifas__desplegable-titulo:hover { color: var(--sd-red-hover); }
.tarifas__desplegable-titulo:hover::after { border-color: var(--sd-red-hover); }

.tarifas__desplegable-contenido {
  padding: 0 1rem 1rem;
  font-size: 0.88rem;
  color: var(--sd-gray);
  line-height: 1.6;
  border-top: 1px dashed #e0e0e0;
  padding-top: 0.75rem;
  animation: tarifasFadeIn 0.3s ease;
}

@keyframes tarifasFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST — ¿POR QUÉ ELEGIRNOS?
============================================================ */
.trust {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.trust__container { max-width: 1100px; margin: 0 auto; }

.trust__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.trust__subtitulo {
  font-size: 1.1rem;
  color: var(--sd-gray);
  text-align: center;
  margin-bottom: 3rem;
}

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

.trust__card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(185,28,28,0.1);
  border: 1px solid #fecaca;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sd-red), var(--sd-red-hover));
}

.trust__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(185,28,28,0.2);
}

.trust__card-icon {
  width: 90px; height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.trust__card:hover .trust__card-icon {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
}

.trust__card-ico {
  font-size: 2.2rem;
  color: var(--sd-red);
  transition: color 0.3s ease;
}

.trust__card:hover .trust__card-ico { color: #fff; }

.trust__card-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.trust__card-texto {
  font-size: 0.95rem;
  color: var(--sd-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TESTIMONIOS
============================================================ */
.testimonials {
  background: #fff;
  padding: 4rem 1rem;
}

.testimonials__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.testimonials__subtitulo {
  font-size: 1.05rem;
  color: var(--sd-gray);
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 2px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--sd-red);
  box-shadow: 0 8px 30px rgba(229,9,20,0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #2c3e50;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-info strong {
  display: block;
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.9rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--sd-gray);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.faq__container { max-width: 900px; margin: 0 auto; }

.faq__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq__subtitulo {
  font-size: 1.1rem;
  color: var(--sd-gray);
  text-align: center;
  margin-bottom: 3rem;
}

.faq__lista { display: flex; flex-direction: column; gap: 1rem; }

.faq__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq__item:hover  { border-color: #fecaca; box-shadow: 0 8px 25px rgba(185,28,28,0.12); }
.faq__item[open]  { border-color: var(--sd-red); box-shadow: 0 8px 25px rgba(185,28,28,0.12); }

.faq__pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: 0.3s ease;
}

.faq__pregunta::-webkit-details-marker { display: none; }
.faq__pregunta::marker { display: none; }
.faq__pregunta:hover { background: rgba(220,38,38,0.03); }

.faq__item[open] .faq__pregunta {
  background: linear-gradient(135deg, rgba(220,38,38,0.05) 0%, rgba(185,28,28,0.08) 100%);
  border-bottom: 1px solid #e0e0e0;
}

.faq__pregunta-texto {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  flex: 1;
  transition: color 0.3s ease;
}

.faq__item[open] .faq__pregunta-texto { color: var(--sd-red); }

.faq__icono-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  position: relative;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq__icono-toggle::before,
.faq__icono-toggle::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.faq__icono-toggle::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icono-toggle::after  { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq__item[open] .faq__icono-toggle { transform: rotate(180deg); }
.faq__item[open] .faq__icono-toggle::after { opacity: 0; }

.faq__respuesta { padding: 1.25rem 1.5rem 1.5rem; }

.faq__respuesta p {
  font-size: 0.95rem;
  color: var(--sd-gray);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   STICKY CTA — MÓVIL
============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(229,9,20,0.35);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  animation: phonePulse 2.5s ease-in-out infinite;
}

.sticky-cta__btn:hover { color: #fff; text-decoration: none; }
.sticky-cta__btn i { font-size: 1.1rem; }

/* ── Responsive nuevas secciones ────────────────────────── */
@media (max-width: 991px) {
  .tarifas { padding: 2rem 1rem; }
  .tarifas__titulo { font-size: 1.4rem; }
  .tarifas__subtitulo { font-size: 0.9rem; }
  .tarifas__leyenda { gap: 1rem; margin-bottom: 1rem; }
  .tarifas__leyenda-item { font-size: 0.75rem; }
  .tarifas__th-compania { padding: 0.5rem 0.3rem; }
  .tarifas__th-compania--destacada { padding-top: 1.5rem; }
  .tarifas__th-brand { font-size: 0.55rem; }
  .tarifas__th-badge { font-size: 0.5rem; padding: 0.2rem 0.5rem; }
  .tarifas__desplegable-titulo { font-size: 0.8rem; padding: 0.6rem 2rem 0.6rem 0.75rem; }
  .tarifas__desplegable-contenido { font-size: 0.78rem; padding: 0 0.75rem 0.75rem; }
  .tarifas__td-valor { padding: 0.5rem 0.25rem; }
  .tarifas__icono { width: 22px; height: 22px; min-width: 22px; min-height: 22px; }
  .tarifas__icono--si::before { width: 8px; height: 5px; border-width: 2px; top: 6px; }
  .tarifas__icono--no::before,
  .tarifas__icono--no::after { width: 8px; height: 2px; }
  .trust { padding: 3rem 1.5rem; }
  .trust__titulo { font-size: 1.75rem; }
  .trust__cards { gap: 1.5rem; }
  .trust__card { padding: 2rem 1.25rem; }
  .trust__card-icon { width: 72px; height: 72px; }
  .trust__card-ico { font-size: 1.8rem; }
  .testimonials { padding: 3rem 1rem; }
  .testimonials__titulo { font-size: 1.75rem; }
  .faq { padding: 3rem 1.5rem; }
  .faq__titulo { font-size: 1.75rem; }
  .faq__subtitulo { margin-bottom: 2rem; }
}

@media (max-width: 767px) {
  .tarifas { padding: 1.5rem 0.75rem; }
  .tarifas__titulo { font-size: 1.25rem; }
  .tarifas__leyenda { gap: 0.75rem; }
  .tarifas__leyenda-item { font-size: 0.68rem; }
  .tarifas__icono { width: 20px; height: 20px; min-width: 20px; min-height: 20px; border-width: 1.5px; }
  .tarifas__icono--si::before { width: 7px; height: 4px; border-width: 1.8px; top: 6px; }
  .tarifas__icono--no::before,
  .tarifas__icono--no::after { width: 7px; height: 1.8px; }
  .tarifas__desplegable-titulo { font-size: 0.72rem; padding: 0.5rem 1.8rem 0.5rem 0.5rem; }
  .tarifas__desplegable-titulo::after { right: 0.6rem; }
  .tarifas__desplegable-contenido { font-size: 0.7rem; padding: 0 0.5rem 0.5rem; }
  .trust { padding: 2rem 1rem; }
  .trust__titulo { font-size: 1.35rem; }
  .trust__subtitulo { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .trust__cards { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .trust__card { padding: 1.25rem 0.75rem; }
  .trust__card-icon { width: 56px; height: 56px; margin-bottom: 0.75rem; }
  .trust__card-ico { font-size: 1.4rem; }
  .trust__card-titulo { font-size: 0.9rem; }
  .trust__card-texto { font-size: 0.75rem; }
  .testimonials { padding: 2rem 0.75rem; }
  .testimonials__titulo { font-size: 1.35rem; }
  .testimonials__subtitulo { font-size: 0.9rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .testimonial-text { font-size: 0.88rem; }
  .faq { padding: 2rem 0.75rem; }
  .faq__titulo { font-size: 1.35rem; }
  .faq__subtitulo { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .faq__pregunta { padding: 1rem 1.15rem; }
  .faq__pregunta-texto { font-size: 0.88rem; }
  .faq__respuesta { padding: 1rem 1.15rem 1.15rem; }
  .faq__respuesta p { font-size: 0.88rem; }
  .sticky-cta { padding: 0.65rem 0.85rem; }
  .sticky-cta__btn { font-size: 0.9rem; padding: 0.9rem; }
}

@media (max-width: 480px) {
  .trust__cards { gap: 0.5rem; }
  .trust__card { padding: 1rem 0.5rem; border-radius: 12px; }
  .trust__card::before { height: 3px; }
  .trust__card-icon { width: 44px; height: 44px; }
  .trust__card-ico { font-size: 1.1rem; }
  .trust__card-titulo { font-size: 0.8rem; }
  .trust__card-texto { font-size: 0.68rem; }
  .tarifas__icono { width: 18px; height: 18px; min-width: 18px; min-height: 18px; }
  .tarifas__icono--si::before { width: 6px; height: 3px; border-width: 1.5px; top: 5px; }
  .tarifas__icono--opcional::before { font-size: 11px; }
  .tarifas__icono--no::before,
  .tarifas__icono--no::after { width: 6px; height: 1.5px; }
}

/* ============================================================
   HERO — TEXTO ROTATIVO DE BENEFICIOS
============================================================ */
.hero-benefits {
  position: relative;
  height: 1.6rem;
  margin-top: 0.75rem;
  overflow: hidden;
}

.hero-benefit {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sd-gray);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.hero-benefit i { color: var(--sd-red); font-size: 0.85rem; }

.hero-benefit.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-benefit.exit {
  opacity: 0;
  transform: translateY(-12px);
}

/* Rating en el hero */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.hero-rating__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.85rem;
}
.hero-rating__text {
  font-size: 0.8rem;
  color: var(--sd-gray);
}
.hero-rating__text strong {
  color: var(--sd-dark);
  font-weight: 800;
}

/* ============================================================
   SECCIÓN CÓMO FUNCIONA
============================================================ */
.proceso {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 4rem 1rem;
}

.proceso__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.proceso__subtitulo {
  font-size: 1.05rem;
  color: var(--sd-gray);
}

.proceso__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

/* Paso individual */
.proceso__step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}

.proceso__step.visible {
  opacity: 1;
  transform: translateY(0);
}

.proceso__step-num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sd-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.proceso__step { position: relative; }

.proceso__step-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(229,9,20,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proceso__step:hover .proceso__step-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 35px rgba(229,9,20,0.4);
}

.proceso__step-icon i {
  font-size: 2.2rem;
  color: #fff;
}

.proceso__step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.6rem;
}

.proceso__step p {
  font-size: 0.88rem;
  color: var(--sd-gray);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* Paso activo — iluminado y más grande */
.proceso__step--active .proceso__step-icon {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(229,9,20,0.45), 0 0 0 8px rgba(229,9,20,0.1);
}
.proceso__step--active h3 {
  color: var(--sd-red);
}
.proceso__step:not(.proceso__step--active) {
  opacity: 0.5;
}
.proceso__step:not(.proceso__step--active).visible {
  opacity: 0.5;
}
.proceso__step--active.visible {
  opacity: 1;
}
.proceso__step {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.proceso__step-icon {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.proceso__step h3 {
  transition: color 0.5s ease;
}

/* Conector entre pasos */
.proceso__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  padding-top: 0;
  margin-top: 0;
  height: 100px;
}

.proceso__connector-line {
  display: none;
}

.proceso__connector-arrow {
  font-size: 1.5rem;
  color: var(--sd-red);
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.proceso__connector--active .proceso__connector-arrow {
  opacity: 1;
}

/* ============================================================
   TESTIMONIOS — CARRUSEL
============================================================ */
.testimonials__rating-global {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--sd-gray);
}

.testimonials__stars-global {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-right: 0.3rem;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 0 50px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

/* Botones prev/next */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--sd-red);
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-btn:hover {
  background: var(--sd-red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(229,9,20,0.3);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-btn--prev { left: 0; }
.testimonial-btn--next { right: 0; }

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--sd-red);
  transform: scale(1.3);
}

/* Barra de progreso auto-play */
.testimonial-progress {
  height: 3px;
  background: #f0f0f0;
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.testimonial-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sd-red), var(--sd-red-hover));
  border-radius: 2px;
  width: 0;
  transition: width linear;
}

/* ============================================================
   NOTIFICACIONES DE PRUEBA SOCIAL
============================================================ */
.sp-container {
  position: fixed;
  bottom: 170px;
  left: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.sp-notif {
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  pointer-events: auto;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  border-left: 3px solid var(--sd-red);
}

.sp-notif.show {
  transform: translateX(0);
  opacity: 1;
}

.sp-notif.hide {
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sp-notif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sp-notif-body { flex: 1; }

.sp-notif-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #2c3e50;
  display: block;
}

.sp-notif-msg {
  font-size: 0.75rem;
  color: var(--sd-gray);
  display: block;
  margin-top: 1px;
}

.sp-notif-time {
  font-size: 0.68rem;
  color: #9ca3af;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}

/* ── Responsive nuevas secciones dinámicas ──────────────── */
@media (max-width: 991px) {
  .proceso { padding: 3rem 1.5rem; }
  .proceso__titulo { font-size: 1.75rem; }
  .proceso__step-icon { width: 80px; height: 80px; }
  .proceso__step-icon i { font-size: 1.8rem; }
  .proceso__connector { width: 40px; }
  .testimonial-carousel { padding: 0 40px; }
  .testimonial-btn { width: 38px; height: 38px; font-size: 1rem; }
  .sp-container { bottom: 70px; left: 12px; }
  .sp-notif { max-width: 240px; }
}

@media (max-width: 767px) {
  /* Proceso — mantener horizontal como trust */
  .proceso__steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }
  .proceso__step {
    flex: 1;
    max-width: none;
    padding-top: 0.5rem;
  }
  .proceso__step-icon { width: 56px; height: 56px; }
  .proceso__step-icon i { font-size: 1.35rem; }
  .proceso__step h3 { font-size: 0.82rem; margin-bottom: 0.35rem; }
  .proceso__step p { font-size: 0.72rem; line-height: 1.4; }
  .proceso__step-num {
    width: 20px; height: 20px;
    font-size: 0.65rem;
    top: -6px;
  }
  .proceso__connector {
    width: 18px;
    padding-top: 42px;   /* alinea con el centro del icono */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .proceso__connector-line { display: none; }
  .proceso__connector-arrow {
    transform: none;     /* flecha apunta a la derecha */
    font-size: 0.65rem;
    opacity: 0.4;
  }
  .proceso__titulo { font-size: 1.35rem; }
  .proceso__subtitulo { font-size: 0.9rem; }

  /* Features — 3 columnas lado a lado como trust */
  .features-section .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin: 0;
  }
  .features-section .col-lg-4,
  .features-section .col-md-6 {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 0;
  }
  .feature-card {
    padding: 1.1rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .feature-icon-wrapper {
    width: 50px; height: 50px;
    margin-bottom: 0.6rem;
  }
  .feature-icon-wrapper i { font-size: 1.2rem; }
  .feature-card h3 { font-size: 0.8rem; margin-bottom: 0.4rem; }
  .feature-card p  { font-size: 0.72rem; line-height: 1.4; }
  .testimonial-carousel { padding: 0 34px; }
  .testimonial-btn { width: 32px; height: 32px; font-size: 0.9rem; }
  .hero-benefits { height: 1.5rem; }
  .hero-benefit { font-size: 0.75rem; }
  .sp-container { display: none; }
}

@media (max-width: 480px) {
  .proceso__step-icon { width: 46px; height: 46px; }
  .proceso__step-icon i { font-size: 1.1rem; }
  .proceso__step h3 { font-size: 0.75rem; }
  .proceso__step p { font-size: 0.67rem; }
  .proceso__connector { padding-top: 34px; width: 14px; }
  /* Features aún más compactas en pantallas muy pequeñas */
  .features-section .row { gap: 0.4rem; }
  .feature-card { padding: 0.9rem 0.4rem; }
  .feature-icon-wrapper { width: 42px; height: 42px; }
  .feature-icon-wrapper i { font-size: 1rem; }
  .feature-card h3 { font-size: 0.72rem; }
  .feature-card p  { font-size: 0.65rem; }
  .testimonials__rating-global { font-size: 0.8rem; }
}

/* ══════════════════════════════════════════════════════
   EXIT INTENT MODAL
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   HERO — 2 BOTONES CTA (llamar / contratar)
══════════════════════════════════════════════════════ */
.hero-cta-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
  .hero-cta-btns {
    margin-top: 0.75rem;
  }
}

.hero-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
}
.hero-cta-btn i {
  font-size: 2rem;
  line-height: 1;
}
.hero-cta-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  display: block;
}
.hero-cta-sub {
  font-size: 0.75rem;
  opacity: 0.75;
  display: block;
  font-weight: 500;
  transition: opacity 0.18s;
}
.hero-cta-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(255,255,255,0.20);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Botón primario — Quiero que me llamen */
.hero-cta-call {
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(229,9,20,0.25);
}
.hero-cta-call:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(229,9,20,0.35);
}

/* Botón secundario — Contratar ahora (gris claro + borde rojo) */
.hero-cta-contract {
  background: #f0f0f0;
  color: var(--sd-red);
  border: 2px solid var(--sd-red);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.hero-cta-contract:hover {
  background: #e6e6e6;
  color: var(--sd-red-hover);
  border-color: var(--sd-red-hover);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 22px rgba(229,9,20,0.15);
}

/* Badges */
.hero-cta-call .hero-cta-badge {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
.hero-cta-contract .hero-cta-badge {
  background: var(--sd-red);
  color: #fff;
}
.hero-cta-call:hover .hero-cta-badge { background: rgba(255,255,255,0.32); }
.hero-cta-contract:hover .hero-cta-badge { background: var(--sd-red-hover); }

.hero-cta-call:hover .hero-cta-sub { opacity: 0.9; }
.hero-cta-contract .hero-cta-sub { color: #777; opacity: 1; }
.hero-cta-contract:hover .hero-cta-sub { color: #555; }

/* Phone reveal (desliza hacia abajo al hacer clic en "me llamen") */
.hero-phone-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.hero-phone-reveal.visible {
  max-height: 200px;
  opacity: 1;
}
.hero-phone-reveal .btn-submit {
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════
   SELF-SERVICE STRIP
══════════════════════════════════════════════════════ */
.selfservice-strip {
  background: linear-gradient(135deg, #c4070f 0%, var(--sd-red) 40%, #ff1a25 100%);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
/* Patrón diagonal sutil */
.selfservice-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.03) 18px,
    rgba(255,255,255,0.03) 20px
  );
  pointer-events: none;
}
/* Brillo lateral animado */
.selfservice-strip::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: strip-shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes strip-shine {
  0%, 100% { left: -60%; }
  50%      { left: 100%; }
}
.selfservice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ss-icon {
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-text {
  flex: 0 1 auto;
  text-align: center;
}
.ss-text strong {
  display: block;
  color: #fff;
  font-family: 'Fira Sans', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.ss-text span {
  color: rgba(255,255,255,0.8);
  font-family: 'Fira Sans', 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
}
.ss-badge {
  display: none;
}
/* Botón con shimmer */
.ss-btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--sd-dark);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Fira Sans', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ss-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229,9,20,0.12), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%   { left: -100%; }
  100% { left: 100%; }
}
.ss-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
  .selfservice-inner { justify-content: center; text-align: center; gap: 14px; }
  .ss-text { min-width: unset; width: 100%; }
  .ss-text strong { font-size: 0.92rem; }
  .ss-btn { width: 100%; justify-content: center; padding: 14px 24px; }
  .ss-icon { display: none; }
  .hero-cta-title { font-size: 0.88rem; }
  .hero-cta-btn i { font-size: 1.6rem; }
  .hero-cta-btn { padding: 20px 12px; }
}

/* ══════════════════════════════════════════════════════
   BOTÓN "CONTRATAR DIRECTAMENTE" (hero, legado)
══════════════════════════════════════════════════════ */
.btn-contratar {
  width: 100%;
  background: transparent;
  color: var(--sd-red);
  border: 2px solid var(--sd-red);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-contratar:hover {
  background: var(--sd-red);
  color: #fff;
}

/* ══════════════════════════════════════════════════════
   MODAL AUTO-CONTRATACIÓN — flujo multi-paso
══════════════════════════════════════════════════════ */

/* Ocultar pasos por defecto, mostrar solo el activo */
.contra-step         { display: none; }
.contra-step.active  { display: block; }

/* Barra de progreso (en la cabecera roja) */
.contra-progress {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  padding-right: 44px; /* espacio para el botón de cierre */
}
.contra-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.contra-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}
.contra-dot.done {
  background: rgba(255,255,255,0.75);
}

/* Grid de tarjetas (tipo / franja) */
.contra-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.contra-franja-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contra-type-opt { cursor: pointer; }
.contra-type-opt input[type="radio"] { display: none; }
.contra-type-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 8px 12px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.contra-type-card i {
  font-size: 1.5rem;
  color: var(--sd-red);
  margin-bottom: 4px;
}
.contra-type-card strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sd-dark);
  display: block;
}
.contra-type-card span {
  font-size: 0.72rem;
  color: #888;
  display: block;
}
.contra-type-card:hover {
  border-color: rgba(229,9,20,0.4);
}
.contra-type-opt input[type="radio"]:checked + .contra-type-card {
  border-color: var(--sd-red);
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(229,9,20,0.12);
}

/* Botones de navegación */
.contra-btn-next,
.contra-finalize {
  width: 100%;
  background: var(--sd-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.contra-btn-next:hover,
.contra-finalize:hover {
  background: var(--sd-red-hover);
  transform: translateY(-1px);
}
.contra-btn-next:disabled,
.contra-finalize:disabled {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}

.contra-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}
.contra-nav .contra-btn-next,
.contra-nav .contra-finalize {
  flex: 1;
  margin-top: 0;
  width: auto;
}
.contra-btn-back {
  background: none;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  color: #666;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.contra-btn-back:hover { border-color: #999; color: #333; }

/* Spinner de carga */
.contra-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contraSpin 0.65s linear infinite;
}
@keyframes contraSpin { to { transform: rotate(360deg); } }

/* Paso de éxito */
.contra-success {
  text-align: center;
  padding: 8px 0 12px;
}
.contra-success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 14px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.contra-success h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--sd-dark);
  margin-bottom: 14px;
}
.contra-ref-label {
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contra-ref {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--sd-red);
  letter-spacing: 0.05em;
  background: #fff5f5;
  border: 1.5px dashed rgba(229,9,20,0.3);
  border-radius: 8px;
  padding: 10px 24px;
  margin: 0 auto 16px;
  display: inline-block;
}
.contra-success-msg {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 20px;
}
.contra-close-btn {
  background: #f3f4f6 !important;
  color: #333 !important;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  /* override .modal-close-new position */
  position: static !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
}
.contra-close-btn:hover { background: #e5e7eb !important; }

/* ══════════════════════════════════════════════════════
   MODAL LLAMADA — flujo ¿cliente o no?
══════════════════════════════════════════════════════ */
.llamada-step { display: none; }
.llamada-step.active { display: block; }

.llamada-opts {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.llamada-opts-2 { grid-template-columns: 1fr 1fr; }
.llamada-opts-3 { grid-template-columns: repeat(3, 1fr); }

.llamada-opt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 18px 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.llamada-opt-btn:hover {
  border-color: var(--sd-red);
  background: #fff5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229,9,20,0.12);
}
.llamada-opt-btn i {
  font-size: 1.6rem;
  color: var(--sd-red);
}
.llamada-opt-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.llamada-opt-sub {
  display: block;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.3;
}

.llamada-back-btn {
  background: none;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #777;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  transition: border-color 0.18s, color 0.18s;
}
.llamada-back-btn:hover { border-color: #999; color: #333; }

.llamada-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(229,9,20,0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.llamada-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(229,9,20,0.38);
}

.llamada-atencion {
  text-align: center;
  padding: 12px 0;
}
.llamada-atencion-icon {
  font-size: 2.8rem;
  color: var(--sd-red);
  margin-bottom: 10px;
}
.llamada-atencion h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.llamada-atencion p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}
.llamada-horario {
  font-size: 0.78rem !important;
  color: #888 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 14px !important;
}
.llamada-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sd-red);
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(229,9,20,0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.llamada-phone-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(229,9,20,0.4);
  color: #fff;
}

.llamada-success {
  text-align: center;
  padding: 16px 0;
}
.llamada-success-icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 12px;
}
.llamada-success h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
.llamada-success p  { font-size: 0.88rem; color: #666; margin-bottom: 20px; }
.llamada-close-btn {
  background: #22c55e !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(34,197,94,0.3) !important;
}
.llamada-close-btn:hover { background: #16a34a !important; }

@media (max-width: 480px) {
  .llamada-opts-3 { grid-template-columns: 1fr; }
  .llamada-opts-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contra-type-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .contra-type-card { padding: 10px 4px 8px; }
  .contra-type-card i { font-size: 1.2rem; }
  .contra-type-card strong { font-size: 0.72rem; }
  .contra-type-card span { display: none; }
  .contra-franja-grid { grid-template-columns: repeat(2, 1fr); }
  .contra-franja-grid .contra-type-card span { display: block; }
}

/* ══════════════════════════════════════════════════════
   GRID DE PLANES — paso 0 del modal de contratación
══════════════════════════════════════════════════════ */

/* ── Modal contratación más ancho en desktop ──── */
.modal-box-contratacion {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

/* ── Cuerpo con scroll ─────────────────────────── */
.contra-body {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  flex: 1;
}

/* ── Carrusel de planes (3 visibles, flechas) ─── */
.cpc-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 14px;
}
.cpc-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.cpc-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.cpc-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 5px;
  /* width set dynamically by JS */
}
.cpc-arrow {
  flex-shrink: 0;
  width: 34px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  transition: border-color 0.18s, color 0.18s, background 0.18s, opacity 0.18s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.cpc-arrow:hover:not(:disabled) {
  border-color: var(--sd-red);
  color: var(--sd-red);
  background: #fff5f5;
}
.cpc-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ── Lista vertical de planes ─────────────────── */
.contra-plan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contra-plan-opt {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contra-plan-opt input[type="radio"] { display: none; }

.contra-plan-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contra-plan-card:hover {
  border-color: rgba(229,9,20,0.35);
}
.contra-plan-opt input[type="radio"]:checked + .contra-plan-card {
  border-color: var(--sd-red);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(229,9,20,0.1);
}

/* Tick verde — sólo visible cuando el plan está seleccionado */
.contra-plan-tick {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.4rem;
  color: #22c55e;
  line-height: 1;
}
.contra-plan-opt input[type="radio"]:checked + .contra-plan-card .contra-plan-tick {
  display: block;
}

/* Badge "más popular" */
.contra-plan-popular {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--sd-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.03em;
}

/* Cabecera del plan: nombre + precio en la misma fila */
.contra-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.contra-plan-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sd-dark);
}
.contra-plan-price strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--sd-red);
}
.contra-plan-price span {
  font-size: 0.78rem;
  color: #888;
}

/* Features list */
.contra-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contra-plan-features li {
  font-size: 0.82rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-plan-features li i {
  color: #22c55e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Instalación gratuita */
.contra-plan-install {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* ── Chips de tipo de instalación ────────────── */
.contra-tipo-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.contra-chip { cursor: pointer; }
.contra-chip input[type="radio"] { display: none; }
.contra-chip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 0.82rem;
  transition: all 0.18s;
  white-space: nowrap;
  color: #444;
}
.contra-chip span:hover { border-color: var(--sd-red); }
.contra-chip input:checked + span {
  border-color: var(--sd-red);
  background: #fff5f5;
  color: var(--sd-red);
  font-weight: 600;
}

/* ── Selector de productos ──────────────────── */
.contra-products-section {
  margin-bottom: 18px;
}
.contra-section-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sd-dark);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-section-title i {
  color: var(--sd-red);
  font-size: 1rem;
}
.contra-section-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
  text-transform: none;
  letter-spacing: 0;
}
/* ── Secciones colapsables ──────────────────── */
.contra-collapsible {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.contra-collapsible > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  margin: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-collapsible > summary::-webkit-details-marker { display: none; }
.contra-collapsible > summary .contra-chevron {
  margin-left: auto;
  font-size: 0.85rem;
  color: #999;
  transition: transform 0.25s;
}
.contra-collapsible[open] > summary .contra-chevron {
  transform: rotate(180deg);
}
.contra-collapsible-body {
  padding: 8px 14px 14px;
}
.contra-collapsible-sub {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
}
.contra-collapsible-sub:last-child { margin-bottom: 0; }
.contra-subsection-toggle {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fafafa;
  transition: background 0.15s;
}
.contra-subsection-toggle:hover { background: #f3f3f3; }
.contra-subsection-toggle::-webkit-details-marker { display: none; }
.contra-chevron-sm {
  margin-left: auto;
  font-size: 0.72rem;
  color: #bbb;
  transition: transform 0.25s;
}
.contra-collapsible-sub[open] > .contra-subsection-toggle .contra-chevron-sm {
  transform: rotate(180deg);
}
.contra-collapsible-sub > .contra-product-grid {
  padding: 8px 10px 10px;
}

/* ── Info adicional vivienda (opcional) ───── */
.contra-extra-info {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
.contra-extra-toggle {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fafafa;
  transition: background 0.15s;
}
.contra-extra-toggle:hover { background: #f3f3f3; }
.contra-extra-toggle::-webkit-details-marker { display: none; }
.contra-extra-toggle small { color: #aaa; font-weight: 400; margin-left: 4px; }
.contra-extra-toggle .contra-chevron-sm { margin-left: auto; }
.contra-extra-info[open] > .contra-extra-toggle .contra-chevron-sm {
  transform: rotate(180deg);
}
.contra-extra-body {
  padding: 10px 14px 14px;
}
.contra-select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.contra-select:focus { border-color: var(--sd-red); }
.contra-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.contra-product-grid--extras {
  gap: 6px;
}
/* Products hidden by tipo filter */
.contra-product-opt.contra-hidden {
  display: none;
}
.contra-product-opt {
  cursor: pointer;
  display: block;
}
.contra-product-opt input[type="checkbox"],
.contra-product-opt input[type="radio"] { display: none; }
.contra-product-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contra-product-card:hover {
  border-color: rgba(229,9,20,0.35);
}
.contra-product-opt input[type="checkbox"]:checked + .contra-product-card,
.contra-product-opt input[type="radio"]:checked + .contra-product-card {
  border-color: var(--sd-red);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(229,9,20,0.1);
}
.contra-product-card--extra {
  padding: 10px 14px;
  border-radius: 10px;
}
.contra-product-tick {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2rem;
  color: #22c55e;
  line-height: 1;
}
.contra-product-opt input[type="checkbox"]:checked + .contra-product-card .contra-product-tick,
.contra-product-opt input[type="radio"]:checked + .contra-product-card .contra-product-tick {
  display: block;
}
.contra-product-badge {
  position: absolute;
  top: -1px; right: 14px;
  background: #22c55e;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.contra-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.contra-product-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sd-dark);
}
.contra-product-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
}
.contra-products-counter {
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  padding: 8px 0;
  font-weight: 600;
}
.contra-products-counter span {
  color: var(--sd-red);
  font-weight: 800;
}

/* ── Productos en la pantalla de éxito ───────── */
.contra-success-products {
  margin-bottom: 16px;
}
.contra-success-products-title {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 6px;
  font-weight: 600;
}
.contra-success-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contra-success-products-list li {
  font-size: 0.85rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contra-success-products-list li i {
  color: #22c55e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cpc-arrow { width: 28px; border-radius: 8px; }
}
@media (max-width: 540px) {
  .contra-body { padding: 1.2rem 1.2rem; }
  .contra-product-grid { grid-template-columns: 1fr; }
  .contra-product-card { padding: 10px 12px; }
}

/* EXIT INTENT — badge + offer strip + submit btn */
.exit-intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.exit-intent-offer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.exit-offer-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--sd-dark);
}

.exit-offer-item i {
  color: #22c55e;
  font-size: 0.9rem;
}

.exit-submit-btn {
  width: 100%;
  background: var(--sd-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}

.exit-submit-btn:hover {
  background: var(--sd-red-hover);
  transform: translateY(-1px);
}

.exit-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .exit-intent-offer { flex-direction: column; gap: 6px; }
}

/* ══════════════════════════════════════════════════════
   HERO — TARJETAS DE TIPO DE CLIENTE (.ct-card)
══════════════════════════════════════════════════════ */
.ct-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.ct-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-align: center;
  line-height: 1.3;
}
.ct-card i {
  font-size: 1.25rem;
  display: block;
}
.ct-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
}
.ct-card.active {
  background: var(--sd-red);
  border-color: var(--sd-red);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(229,9,20,0.35);
}

@media (max-width: 400px) {
  .ct-cards { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .ct-card  { padding: 8px 4px; font-size: 0.72rem; }
  .ct-card i { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — DETALLES EXPANDIBLES DE PLAN
══════════════════════════════════════════════════════ */
.contra-plan-wrap {
  display: flex;
  flex-direction: column;
}

/* ── Flip card effect ───────────────────────────────── */
.contra-plan-flipper {
  position: relative;
}
.contra-plan-front {
  display: block;
}
.contra-plan-back {
  display: none;
  flex-direction: column;
}
/* Cuando está volteado: oculta front, muestra back con animación */
.contra-plan-card.is-flipped .contra-plan-front {
  display: none;
}
.contra-plan-card.is-flipped .contra-plan-back {
  display: flex;
  animation: flipFadeIn 0.35s ease;
}
@keyframes flipFadeIn {
  0%   { opacity: 0; transform: rotateY(90deg) scale(0.95); }
  50%  { opacity: 0.5; transform: rotateY(0deg) scale(0.98); }
  100% { opacity: 1; transform: rotateY(0deg) scale(1); }
}
.contra-plan-conditions {
  flex: 1;
  padding: 4px 0 8px;
}
.contra-plan-conditions p {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}
.contra-plan-conditions p:last-child { margin-bottom: 0; }
.contra-plan-flip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 7px 0;
  margin-top: auto;
  border: none;
  border-top: 1px solid #f0f0f0;
  background: none;
  color: var(--sd-red);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.contra-plan-flip-btn:hover {
  background: #fdf2f2;
}
.contra-plan-flip-btn i {
  font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — TABLA RESUMEN (paso 2)
══════════════════════════════════════════════════════ */
.contra-summary {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.contra-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 0.85rem;
  gap: 8px;
}
.contra-summary-row:nth-child(odd)  { background: #f9fafb; }
.contra-summary-row:nth-child(even) { background: #fff; }

.contra-summary-row span {
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.contra-summary-row span i {
  color: var(--sd-red);
  font-size: 0.82rem;
}
.contra-summary-row strong {
  color: var(--sd-dark);
  font-weight: 700;
  text-align: right;
}

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — CONDICIONES LEGALES EXPANDIBLES
══════════════════════════════════════════════════════ */
.contra-legal-details {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.contra-legal-details summary {
  cursor: pointer;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #444;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  user-select: none;
  background: #f9fafb;
  transition: background 0.15s;
}
.contra-legal-details summary::-webkit-details-marker { display: none; }
.contra-legal-details summary:hover { background: #f3f4f6; }
.contra-legal-details summary i {
  margin-left: auto;
  transition: transform 0.25s;
  font-size: 0.78rem;
  color: #999;
}
.contra-legal-details[open] summary i {
  transform: rotate(180deg);
}
.contra-legal-body {
  padding: 12px 14px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
.contra-legal-body p {
  font-size: 0.79rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 6px;
}
.contra-legal-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   CONTRATACIÓN — CHECKBOXES ACEPTACIÓN
══════════════════════════════════════════════════════ */
.contra-check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.contra-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}
.contra-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sd-red);
  cursor: pointer;
}
.contra-check span {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.5;
}
.contra-check a {
  color: var(--sd-red);
  text-decoration: underline;
}

/* ── Fila de 2 columnas (teléfono + CP) ─────────── */
.contra-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 400px) {
  .contra-form-row { grid-template-columns: 1fr; }
}

/* ── Aviso de horario fuera de atención ─────────── */
.contra-hours-notice {
  display: none;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.78rem;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  line-height: 1.5;
}
.contra-hours-notice i {
  flex-shrink: 0;
  color: #f59e0b;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════
   PANTALLAS ULTRAANCHAS (≥ 1920px)
══════════════════════════════════════════════════════ */
@media (min-width: 1920px) {
  /* Ampliar el contenedor principal para aprovechar el espacio */
  .container { max-width: 1400px; }

  /* Hero */
  .hero-section { padding: 4rem 0; }
  .hero-image    { min-height: 620px; max-height: 700px; }

  /* Tipografía hero */
  .hero-title      { font-size: 3.2rem; }
  .hero-subtitle   { font-size: 1.2rem; }

  /* Features */
  .feature-card    { padding: 2.5rem 2rem; }
  .feature-card h3 { font-size: 1.25rem; }
  .feature-card p  { font-size: 1rem; }
  .feature-icon-wrapper { width: 90px; height: 90px; }
  .feature-icon-wrapper i { font-size: 2.2rem; }

  /* Proceso */
  .proceso__step-icon { width: 120px; height: 120px; }
  .proceso__step-icon i { font-size: 2.8rem; }
  .proceso__step h3 { font-size: 1.4rem; }
  .proceso__step p  { font-size: 1rem; }
  .proceso__step-num { width: 32px; height: 32px; font-size: 0.95rem; }

  /* Trust */
  .trust__card      { padding: 3rem 2.5rem; }
  .trust__card-icon { width: 110px; height: 110px; }
  .trust__card-ico  { font-size: 2.8rem; }
  .trust__card-titulo { font-size: 1.5rem; }
  .trust__card-texto  { font-size: 1.05rem; }

  /* Tarifas */
  .tarifas__tabla    { font-size: 1rem; }

  /* Header */
  .header-securitas  { padding: 0.75rem 0; }

  /* Testimonios */
  .testimonial-card { padding: 2.5rem; }

  /* FAQ */
  .faq__pregunta { font-size: 1.1rem; }
  .faq__respuesta { font-size: 1rem; }
}

@media (min-width: 2560px) {
  .container { max-width: 1800px; }
  .hero-title { font-size: 4rem; }
}

/* ══════════════════════════════════════════════════════
   HEADER — ocultar al bajar, mostrar al subir
══════════════════════════════════════════════════════ */
.header-securitas {
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.32s ease;
}
.header-securitas.header--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════
   BOTÓN VOLVER ARRIBA
══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sd-red) 0%, var(--sd-red-hover) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(229,9,20,.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: 0 8px 24px rgba(229,9,20,.50);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════
   BOTÓN WHATSAPP FLOTANTE
══════════════════════════════════════════════════════ */
/* ── Widget flotante de contacto (ovalado) ──── */
.float-widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.float-widget.is-hidden-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
@media (max-width: 767px) {
  .float-widget { bottom: 80px; }
}
.sticky-cta.is-visible ~ .float-widget { bottom: 80px; }

/* Pill buttons */
.float-widget__buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 6px;
  border: 2px solid var(--sd-red);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  animation: sdGlowPulse 2.5s ease-in-out infinite;
}
@keyframes sdGlowPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
  50%      { box-shadow: 0 2px 16px rgba(229,9,20,.18), 0 4px 12px rgba(0,0,0,.08); }
}
.float-widget__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s;
  text-decoration: none;
  background: transparent;
}
.float-widget__btn:hover { transform: scale(1.08); }
.float-widget__btn--wa svg {
  width: 26px; height: 26px; fill: #25d366;
}
.float-widget__btn--wa:hover { background: rgba(37,211,102,.1); }
.float-widget__btn--phone svg {
  width: 24px; height: 24px; fill: var(--sd-red);
}
.float-widget__btn--phone:hover { background: rgba(229,9,20,.1); }
.float-widget__buttons.is-hidden { display: none; }

/* Mini C2C panel */
.float-widget__panel {
  display: none;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  width: 280px;
  box-shadow: 0 0 12px rgba(229,9,20,.3), 0 4px 16px rgba(0,0,0,.12);
  animation: sdGlowPulse 2.5s ease-in-out infinite, fadeSlideUp .25s ease;
  position: relative;
}
.float-widget__panel.is-open { display: block; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.float-widget__panel-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; font-size: 22px; color: #999; cursor: pointer; line-height: 1;
}
.float-widget__panel-title {
  font-size: 16px; margin: 0 0 12px; text-align: center; color: var(--sd-dark);
}
.float-widget__input {
  width: 100%; padding: 10px 14px; border: 2px solid #ddd; border-radius: 24px;
  font-size: 15px; outline: none; transition: border-color .2s; box-sizing: border-box; margin-bottom: 6px;
}
.float-widget__input::placeholder { color: #b0b0b0; }
.float-widget__input:focus { border-color: var(--sd-red); }
.float-widget__input.has-error,
.c2c-form__input.has-error {
  border-color: #dc2626;
  background: #fef2f2;
}
.float-widget__check {
  display: flex; align-items: flex-start; font-size: 11px; margin-bottom: 8px; position: relative;
}
.float-widget__check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.float-widget__check label {
  display: inline; font-size: 11px; cursor: pointer; line-height: 1.4;
}
.float-widget__check label::before {
  content: ''; display: inline-block; width: 14px; height: 14px; min-width: 14px;
  border: 1px solid #999; border-radius: 3px; margin-right: 6px; vertical-align: middle;
  background: #fff; transition: background .2s;
}
.float-widget__check input:checked + label::before {
  background: var(--sd-red); border-color: var(--sd-red);
}
.float-widget__check input:checked + label::after {
  content: ''; position: absolute; left: 4px; top: 2px;
  width: 5px; height: 9px; border: solid #fff 0 2px 2px 0; transform: rotate(45deg);
}
.float-widget__submit {
  width: 100%; padding: 10px; background: var(--sd-red); color: #fff;
  border: none; border-radius: 24px; font-size: 15px; font-weight: 800;
  cursor: pointer; transition: background .2s;
}
.float-widget__submit:hover { background: var(--sd-red-hover, #c7080f); }
.float-widget__panel .c2c-form__msg {
  margin: 0 0 6px;
  font-size: 11px;
  color: #dc2626;
  font-weight: 600;
  min-height: 14px;
  text-align: center;
}
.float-widget__panel .c2c-form__response { margin-top: 8px; padding: 20px 16px; }
.float-widget__panel .c2c-form__response::before { width: 36px; height: 36px; }
.float-widget__panel .c2c-form__response-title { font-size: 18px; }

/* ============================================================
   PRODUCT WHEEL — Rueda de productos estilo selector radial
============================================================ */
.sd-wheel-section {
  background: #fff;
  padding: 50px 0 60px;
}
@media (max-width: 767px) {
  .sd-wheel-section { display: none; }
}
.sd-wheel-section h2 {
  color: var(--sd-dark);
  font-size: 2rem;
  font-weight: 900;
}
.sd-wheel-section .text-muted {
  color: var(--sd-gray) !important;
  font-size: 1rem;
  font-weight: 500;
}

/* Wrapper — centra la rueda y recorta en móvil */
.sd-wheel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Disco principal */
.sd-wheel {
  position: relative;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #f5f5f5 0%, #e8e8e8 55%, #ddd 100%);
  box-shadow:
    0 0 0 3px rgba(0,0,0,0.04),
    0 0 0 20px rgba(0,0,0,0.02),
    0 30px 80px rgba(0,0,0,0.12);
}

/* SVG superpuesto para líneas de sector */
.sd-wheel__sectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Ítems del producto */
.sd-wheel__item {
  position: absolute;
  width: 110px;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  outline: none;
}
.sd-wheel__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 8px 8px;
  border-radius: 14px;
  background: #e8e8e8;
  border: none;
  transition:
    background  0.25s ease,
    border-color 0.25s ease,
    transform   0.28s cubic-bezier(.34,1.4,.64,1),
    box-shadow  0.25s ease,
    filter      0.25s ease,
    opacity     0.25s ease;
  will-change: transform, filter, opacity;
}
.sd-wheel__img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: filter 0.25s ease;
  pointer-events: none;
  display: block;
}
.sd-wheel__label {
  color: rgba(0,0,0,0.55);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  transition: color 0.2s ease;
}

/* — Ítem activo (hover/focus) — */
.sd-wheel__item--active .sd-wheel__item-inner {
  background: rgba(229,9,20,0.08);
  border-color: rgba(229,9,20,0.35);
  box-shadow: 0 0 20px rgba(229,9,20,0.2), 0 0 8px rgba(229,9,20,0.1);
  transform: scale(1.25);
}
.sd-wheel__item--active .sd-wheel__img {
  filter: drop-shadow(0 0 10px rgba(229,9,20,0.55));
}
.sd-wheel__item--active .sd-wheel__label {
  color: var(--sd-red);
}

/* — Ítems en segundo plano — */
.sd-wheel__item--dim .sd-wheel__item-inner {
  filter: blur(1.5px);
  opacity: 0.3;
}

/* Agujero central — muestra la descripción */
.sd-wheel__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0%, #f5f5f5 100%);
  border: 1.5px solid rgba(0,0,0,0.06);
  box-shadow: inset 0 0 25px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  overflow: hidden;
}
.sd-wheel__center-inner {
  padding: 20px 22px;
  animation: wheel-fade-in 0.2s ease both;
}
@keyframes wheel-fade-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1);    }
}
.sd-wheel__center-hint {
  color: rgba(0,0,0,0.35);
  font-size: 1rem;       /* 16px */
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}
.sd-wheel__center-name {
  color: #e50914;
  font-size: 1.15rem;    /* 18.4px — título principal */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 9px;
}
.sd-wheel__center-lead {
  color: var(--sd-dark);
  font-size: 1rem;       /* 16px — texto principal accesible */
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 7px;
}
.sd-wheel__center-desc {
  color: rgba(0,0,0,0.55);
  font-size: 0.875rem;   /* 14px — texto secundario */
  line-height: 1.55;
  margin: 0;
}

/* Escala de la rueda en pantallas pequeñas (solo entre 768 y 660px) */
@media (max-width: 767px) and (min-width: 620px) {
  .sd-wheel {
    transform: scale(0.72);
    transform-origin: center top;
  }
  .sd-wheel-wrapper {
    height: 447px; /* 620 * 0.72 ≈ 447 */
  }
}

/* ══════════════════════════════════════════════════════════════
   CHATBOT — Asistente virtual
══════════════════════════════════════════════════════════════ */
.chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  z-index: 2500;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot.is-open { display: flex; }

.chatbot__header {
  background: var(--sd-red);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot__header-info { display: flex; align-items: center; gap: 10px; }
.chatbot__avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.chatbot__name { display: block; font-weight: 800; font-size: 15px; }
.chatbot__status { display: block; font-size: 12px; opacity: .8; }
.chatbot__close {
  background: rgba(255,255,255,.15);
  border: none; border-radius: 50%;
  width: 30px; height: 30px;
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chatbot__close:hover { background: rgba(255,255,255,.3); }

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fef2f2;
  min-height: 200px;
  max-height: 360px;
}

.chatbot__msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
  animation: chatFadeIn .3s ease;
}
@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chatbot__msg--bot {
  background: #fff;
  color: #222;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.chatbot__msg--user {
  background: var(--sd-red);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-end;
  max-width: 85%;
  animation: chatFadeIn .3s ease;
}
.chatbot__opt {
  background: #fff;
  border: 2px solid var(--sd-red);
  color: var(--sd-red);
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background .2s, color .2s;
}
.chatbot__opt:hover {
  background: var(--sd-red);
  color: #fff;
}

.chatbot__product-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 90%;
  align-self: flex-start;
  animation: chatFadeIn .3s ease;
  padding: 4px 0;
}
.chatbot__product-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 12px;
  transition: border-color .2s, background .2s;
}
.chatbot__product-opt:hover { border-color: rgba(229,9,20,0.35); }
.chatbot__product-opt input[type="checkbox"],
.chatbot__product-opt input[type="radio"] {
  accent-color: var(--sd-red);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.chatbot__product-opt input[type="checkbox"]:checked ~ .chatbot__product-label,
.chatbot__product-opt input[type="radio"]:checked ~ .chatbot__product-label {
  color: var(--sd-red); font-weight: 700;
}
.chatbot__product-label { font-size: 13px; color: #333; font-weight: 500; }
.chatbot__product-confirm {
  margin-top: 6px;
  background: var(--sd-red) !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity .2s;
}
.chatbot__product-confirm:disabled { opacity: 0.4; cursor: default; }
/* ── Grupos colapsables de productos ───────── */
.chatbot__product-group {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 5px;
}
.chatbot__product-group:last-of-type { margin-bottom: 0; }
.chatbot__product-group-title {
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  padding: 7px 10px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s;
}
.chatbot__product-group-title:hover { background: #f0f0f0; }
.chatbot__product-group-title::-webkit-details-marker { display: none; }
.chatbot__product-group-list {
  padding: 4px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chatbot__product-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.chatbot__product-actions .chatbot__product-confirm { flex: 1; }
.chatbot__product-back {
  background: #f3f4f6 !important;
  color: #555 !important;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.chatbot__product-back:hover { background: #e5e7eb !important; }

.chatbot__typing {
  display: flex; gap: 4px; padding: 10px 14px;
  align-self: flex-start;
  background: #fff;
  border-radius: 16px; border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  animation: chatFadeIn .3s ease;
}
.chatbot__typing span {
  width: 8px; height: 8px;
  background: #bbb; border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chatbot__typing span:nth-child(2) { animation-delay: .2s; }
.chatbot__typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1); }
}

.chatbot__input-area {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  background: #fff;
}
.chatbot__name-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  margin-bottom: 8px;
}
.chatbot__name-input:focus { border-color: var(--sd-red); }
.chatbot__privacy {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: #666; margin-bottom: 10px;
}
.chatbot__privacy input { margin-top: 2px; }
.chatbot__privacy-link { color: var(--sd-red); cursor: pointer; text-decoration: underline; }
.chatbot__send-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.chatbot__send-btn:hover { background: #1da851; }
.chatbot__send-btn::before {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center/contain;
}

@media (max-width: 480px) {
  .chatbot {
    bottom: 0; right: 0;
    width: 100%; max-width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
  }
}

