/* =========================================================
  VARIABLES
========================================================= */
:root {
  /* Colores principales */
  --color-primary:      #019df4;
  --color-primary-dark: #0085d1;
  --color-dark:         #0b2739;
  --color-light-bg:     #f5f7fa;
  --color-text:         #1f2d3d;
  --color-muted:        #6c757d;
  --color-white:        #ffffff;
  --color-verde:        #5CB615;

  --plan-azul:    #0b2d4f;
  --plan-naranja: #f28c00;
  --plan-coral:   #f05a45;
  --plan-magenta: #e13b86;

  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-soft:  0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* =========================================================
  RESET BASE
========================================================= */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Telefonica-Regular', sans-serif;
  background-color: var(--color-light-bg);
  color: var(--color-text);
  margin: 0;
}


/* =========================================================
  FUENTES PERSONALIZADAS
========================================================= */
@font-face {
  font-family: 'GuthenBlootsBasic';
  src: url('../fonts/guthen-bloots.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telefonica-Regular';
  src: url('../fonts/Telefonica-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telefonica-Bold';
  src: url('../fonts/Telefonica-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}


/* =========================================================
  ANIMACIONES GLOBALES
========================================================= */
@keyframes brillo {
  0%   { box-shadow: 0 0 0px rgba(37, 211, 102, 0); }
  50%  { box-shadow: 0 0 18px 6px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 0 0px rgba(37, 211, 102, 0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
  TOPBAR
========================================================= */
.topbar {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

/* =========================================================
  HEADER
========================================================= */
.main-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.main-header.scrolled .logo img {
  max-height: 36px;
  transition: max-height 0.3s ease;
}

.logo img {
  max-height: 45px;
  height: auto;
}

/* CONTENEDOR BOTONES */
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
  BOTÓN ATENCIÓN
========================================================= */
.btn-atencion {
  background: transparent;
  border: 1.5px solid #d8d8d8;
  color: #555;
  border-radius: 50px;
  padding: 11px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-atencion:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(1, 157, 244, 0.05);
}

/* =========================================================
  BOTÓN LLAMAR
========================================================= */
.nav__cta-primary {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s ease;
}

.nav__cta-primary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: white;
}

.nav__cta-primary i {
  font-size: 1rem;
}

.nav__cta-primary span {
  line-height: 1.1;
}

.nav__cta-primary small {
  font-size: 0.65rem;
  text-transform: uppercase;
  opacity: .8;
  letter-spacing: .05em;
}


/* =========================================================
  CARRUSEL
========================================================= */
.carousel-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 18px;
  background-size: 60%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--color-primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Botón WhatsApp superpuesto en el carrusel */
.carousel-slide-wrapper {
  position: relative;
  display: block;
  line-height: 0;
}

.carousel-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}

.carousel-wsp-btn {
  margin-bottom: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-verde);
  color: #fff;
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  animation: brillo 2s infinite;
}

.carousel-wsp-btn:hover {
  background: var(--color-verde);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-wsp-btn i {
  font-size: 1.2rem;
}


/* =========================================================
  SECCIÓN PLANES — ENCABEZADO
========================================================= */
.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.planes-title {
  font-size: 42px;
  font-weight: 600;
}

.font-plan {
  font-family: 'GuthenBlootsBasic', cursive;
  font-size: 52px;
  color: var(--color-primary);
  font-weight: normal;
}

.planes-description {
  font-size: 20px;
  color: var(--color-muted);
}

.planes-description strong {
  color: var(--color-primary);
}

/* Tabs mensuales / anuales */
.planes-tabs {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.planes-tabs .tab-active {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 25px;
  border: none;
  font-weight: 600;
}

.planes-tabs .tab-button {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 10px 25px;
  border: none;
  font-weight: 600;
}


/* =========================================================
  CARD DE PLAN — BASE
========================================================= */
.plan-card {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card a.uso-justo {
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-verde);
  text-decoration: none;
}

/* Header de la card (icono + nombre) */
.plan-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.plan-header h5 {
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0;
  text-align: left;
  line-height: 1.2;
}

.icon-plan {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}


/* =========================================================
  COLORES DE PLANES (textos y cajas)
========================================================= */
.plan-azul-tx    { color: var(--plan-azul); }
.plan-naranja-tx { color: var(--plan-naranja); }
.plan-coral-tx   { color: var(--plan-coral); }
.plan-magenta-tx { color: var(--plan-magenta); }

.box-azul    { background: var(--plan-azul); }
.box-naranja { background: var(--plan-naranja); }
.box-coral   { background: var(--plan-coral); }
.box-magenta { background: var(--plan-magenta); }

.azul    { color: var(--plan-azul); }
.naranja { color: var(--plan-naranja); }
.coral   { color: var(--plan-coral); }
.magenta { color: var(--plan-magenta); }

.txt-azul   { color: var(--color-primary-dark); }
.txt-blanco { color: #fff; }


/* =========================================================
  CAJA INTERNA DE PLAN (rectángulo con los GB)
========================================================= */
.plan-box {
  border-radius: 16px;
  padding: 18px 14px;
  color: #fff;
  margin-bottom: 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.plan-box h2 {
  font-size: 3.8rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.plan-box small {
  font-size: 1.8rem;
  font-weight: 900;
}

.plan-box p {
  margin: 0;
  line-height: 1.2;
  font-size: 20px;
}

.plan-box p.mes {
  font-size: 13px;
  margin-top: 2px;
  opacity: 0.9;
}

.plan-box p.ilimitados {
  margin-top: 14px;
  font-family: 'GuthenBlootsBasic', cursive;
  font-size: 60px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}

.plan-box p.plusGB {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.3;
  opacity: 0.9;
}

.old-gb {
  text-decoration: line-through;
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 2px;
}

/* Bloque especial GB ilimitado */
.gb-ilimitado {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.square-celeste {
  width: 85px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 35px;
}

.gb-big {
  font-size: 52px;
  font-weight: 700;
}


/* =========================================================
  PRECIO
========================================================= */
.plan-price {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  line-height: 1;
}

.plan-price h3 {
  margin: 4px 0 2px;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

.plan-price small {
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #aaa;
  font-size: 15px;
  font-weight: 600;
  display: block;
}


/* =========================================================
  COMPARTE TUS GIGAS
========================================================= */
.share-text {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  margin: 0;
  line-height: 1.3;
}

.share-text.azul    { color: var(--plan-azul); }
.share-text.naranja { color: var(--plan-naranja); }
.share-text.coral   { color: var(--plan-coral); }
.share-text.magenta { color: var(--plan-magenta); }


/* =========================================================
  BENEFICIOS (YouTube Premium + Apps)
========================================================= */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

[class^="benefit-item-"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  margin: 0;
}

.benefit-item-azul,
.benefit-item-naranja,
.benefit-item-coral {
  border-bottom: 1px solid #dee2e6;
}

[class^="benefit-item-"] img {
  height: 30px;
  flex-shrink: 0;
}

.small-benefit {
  font-size: 11px;
  line-height: 1.2;
  color: var(--color-muted);
  margin: 0;
  text-align: center;
}

/* Apps row */
.apps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 6px 0;
}

.apps img {
  height: 24px;
  width: 24px;
}

.apps p {
  width: 100%;
  margin: 4px 0 0;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-muted);
}

/* Apps especiales Plan Pro 18 */
.apps-p18 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 6px 0;
}

.apps-p18 img {
  height: 24px;
  width: 24px;
}

.apps-p18 p {
  width: 100%;
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-muted);
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 6px;
}


/* =========================================================
  ROAMING INTERNACIONAL
========================================================= */
.gb-roaming {
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  text-align: center;
}

.gb-big-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--color-text);
  line-height: 1;
}

.txt-roaming {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 6px;
}

.flags {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.flags img {
  width: 28px;
}

p.countries {
  font-size: 11px;
  color: var(--color-muted);
  margin: 0;
}


/* =========================================================
  BOTONES DE PLAN
========================================================= */
.plan-card .btn-contratar {
  margin-top: auto;
}

.btn-contratar {
  background: var(--color-verde);
  border: none;
  color: #fff;
  padding: 11px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 30px;
  transition: 0.3s ease;
  width: 100%;
}

.btn-contratar:hover {
  background: var(--color-verde);
  transform: translateY(-2px);
}

/* =========================================================
  PLAN ANUAL
========================================================= */
.anual-tag-top {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-text);
}

.badge-magenta {
  background: var(--plan-magenta);
  color: var(--color-white);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
}

.badge-magenta-sm {
  background: var(--plan-magenta);
  color: var(--color-white);
  border-radius: 20px;
  padding: 4px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.plan-card-anual {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.anual-header {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
}

.anual-gb-box {
  background: var(--plan-azul);
  color: var(--color-white);
  text-align: center;
  padding: 28px 20px;
}

.anual-gb {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
}

.anual-plus {
  font-size: 2rem;
  font-weight: 700;
  margin: 4px 0;
}

.anual-nav {
  font-size: 1rem;
  margin: 6px 0 0;
  opacity: 0.85;
}

.anual-apps {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
}

.anual-apps img {
  height: 36px;
  width: 36px;
}

.anual-divider {
  margin: 0 20px;
  border-color: #e6e6e6;
}

.anual-minutos {
  padding: 14px 20px;
  text-align: center;
}

.anual-minutos p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.anual-minutos strong {
  color: var(--color-text);
}

.anual-flags {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.anual-flags img {
  width: 28px;
}

.anual-precio-box {
  background: var(--color-primary);
  padding: 20px;
  text-align: center;
  color: var(--color-white);
}

.anual-precio-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.anual-old-price {
  text-decoration: line-through;
  font-size: 1.1rem;
  opacity: 0.75;
  font-weight: 600;
}

.anual-precio {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  color: #fff;
}

.anual-precio sup {
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: super;
}

.anual-precio-texto {
  font-size: 0.9rem;
  margin: 10px 0 0;
  line-height: 1.4;
  opacity: 0.9;
}

.plan-card-anual .btn-contratar {
  margin: 16px 20px;
  width: calc(100% - 40px);
  border-radius: 50px;
}

.anual-footer-txt {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.anual-footer-txt a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.anual-footer-txt a:hover {
  text-decoration: underline;
}


/* =========================================================
  MODAL — PLANES (formulario de contacto)
========================================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-muted);
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-icon {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 3rem;
  line-height: 1;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1rem 0 1.5rem;
  line-height: 1.4;
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}

.modal-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.modal-input.error {
  border-color: var(--plan-coral);
}

.modal-hint {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-align: left;
  margin: 6px 0 1.5rem;
}

.modal-btn {
  background: var(--color-verde);
  color: var(--color-white);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
  transition: background 0.15s;
}

.modal-btn:hover  { filter: brightness(1.1); }
.modal-btn:active { transform: scale(0.98); }

.modal-success {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-verde);
  display: none;
}


/* =========================================================
  MODAL — ATENCIÓN AL CLIENTE
========================================================= */
.atencion-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.atencion-overlay.open {
  display: flex;
}

.atencion-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.atencion-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--color-muted);
  cursor: pointer;
}

.atencion-close:hover {
  color: var(--color-text);
}

.atencion-icon {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.atencion-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 28px;
}

.atencion-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.atencion-si {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.atencion-si:hover {
  filter: brightness(1.1);
}

.atencion-no {
  background: transparent;
  color: var(--color-muted);
  border: 2px solid #ddd;
  border-radius: 50px;
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.atencion-no:hover {
  border-color: var(--color-muted);
  color: var(--color-text);
}

.atencion-msg {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.atencion-wsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.2s;
}

.atencion-wsp-btn:hover {
  background: #1ebe5d;
  color: #fff;
}


/* =========================================================
  SECCIÓN BENEFICIOS EXTRA
========================================================= */
.beneficios-extra {
  background: #f7f7f7;
}

/* Tu plan incluye */
.incluye-section {
  background: linear-gradient(135deg, #0b2739 0%, #066eb8 100%);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.incluye-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(1, 157, 244, 0.12);
  pointer-events: none;
}

.incluye-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.incluye-header {
  text-align: center;
  margin-bottom: 36px;
}

.incluye-tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.incluye-header h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.incluye-header h3 strong {
  color: var(--color-primary);
  font-weight: 700;
}

.incluye-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.incluye-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 280px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.incluye-card:hover {
  background: rgba(1, 157, 244, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.incluye-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.incluye-card-body h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.incluye-card-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}


/* =========================================================
  CONOCE MÁS (toggle desplegable)
========================================================= */
.conoce-section {
  text-align: center;
  margin: 40px 0;
  border-bottom: 1px solid #d3d4d3 !important;
}

.conoce-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.conoce-script {
  font-family: 'GuthenBlootsBasic', cursive;
  font-size: 2rem;
  color: var(--color-primary);
}

.conoce-text {
  font-family: 'Telefonica-Regular', sans-serif;
  font-size: 20px;
  color: var(--color-muted);
}

.conoce-icon {
  font-size: 14px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.conoce-link.active .conoce-icon {
  transform: rotate(180deg);
}

/* Contenido colapsable */
.conoce-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: var(--color-light-bg);
}

.conoce-content.active {
  max-height: 3000px;
  padding: 40px 0;
}

.conoce-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.conoce-wrapper ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.conoce-wrapper li {
  margin-bottom: 8px;
}

.conoce-wrapper h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--color-primary);
}


/* =========================================================
  MÁS VENTAJAS
========================================================= */
p.ventajas-txt {
  font-size: 20px;
  color: var(--color-muted);
}

h6.ventajas-txt-titulo {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.ventaja-card {
  border: 2px solid #009ee3;
  border-radius: 20px;
  padding: 22px 28px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  width: 420px;
  min-height: 120px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.ventaja-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ventaja-icon {
  width: 55px;
  flex-shrink: 0;
}


/* =========================================================
  MINI BENEFICIOS (módulos, protección, pantallas)
========================================================= */
.mini-beneficio {
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 300px;
  min-height: 80px;
  height: 100px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.mini-beneficio:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.col-auto img {
  width: 55px;
  height: 42px;
}

p.beneficios-txt {
  font-size: 1rem;
  color: var(--color-muted);
  margin-top: revert;
}

/* =========================================================
  CALL TO ACTION
========================================================= */
/* =========================================================
  CALL TO ACTION
========================================================= */
.cta-box {
  text-align: center;
  padding-bottom: 20px;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
}

/* Botones principales grandes */
.cta-btns-principales {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-cta-wsp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-verde);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 18px;
  transition: filter 0.2s;
  animation: brillo 2s infinite;
}

.btn-cta-wsp:hover {
  filter: brightness(1.08);
  color: #fff;
}

.btn-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 18px;
  transition: filter 0.2s;
}

.btn-cta-tel:hover {
  filter: brightness(1.2);
  color: #fff;
}

/* Sección secundaria — mucho más discreta */
.cta-secundario {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-secundario-label {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.cta-form-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.input-numero-sm {
  width: 200px;
  border-radius: 30px;
  border: 1.5px solid #ccc;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s;
}

.input-numero-sm:focus {
  border-color: var(--color-primary);
}

.btn-solicitar {
  background: transparent;
  color: var(--color-muted);
  border: 1.5px solid #ccc;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-solicitar:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cta-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 8px !important;
}

.cta-check small {
  font-size: 11px;
  color: #aaa;
}

/* =========================================================
  BOTÓN FLOTANTE WHATSAPP
========================================================= */
#wsp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-verde);
  height: 54px;
  border-radius: 50px;
  padding: 0 20px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 99999;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.2s ease,
              opacity 0.2s ease;
  animation: brillo 2s infinite;
}

#wsp-btn img {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.wsp-label {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

#wsp-btn:hover {
  transform: scale(1.04);
  opacity: 0.95;
}

#wsp-btn.banner-open {
  bottom: 100px;
}

/* =========================================================
  BANNER MODAL DESLIZANTE (¿Querés que te llamemos?)
========================================================= */
.banner-modal {
  position: fixed;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 860px;
  background: #0b2739;
  border-radius: 14px 14px 0 0;
  padding: 14px 22px;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.25);
}

.banner-modal.visible { bottom: 0; }
.banner-modal.oculto  { bottom: -160px; }

.banner-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.banner-texto {
  flex: 1;
  min-width: 140px;
}

.banner-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 2px;
}

.banner-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

.banner-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-verde);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.2s;
}

.banner-call-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}

/* =========================================================
  FOOTER
========================================================= */
.footer-movistar {
  background: #f1f1f1;
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #0b2d3c;
}

.footer-logo {
  width: 40px;
}

.footer-right {
  font-size: 13px;
  color: #666;
}