/* Este es el contenedor que agrupa los enlaces */
.menu-redes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* o 'space-around' o 'center' según prefieras */
    gap: 10px; /* Añade un pequeño espacio entre los enlaces */
}


/* Sobreescribe el estilo del botón del chat de Botmaker */

/* 1. Oculta el fondo blanco y el texto */
.wc-button-2, .wc-button-2-anim {
    background-color: transparent !important; /* Elimina el fondo blanco */
    border: none !important; /* Elimina el borde */
    box-shadow: none !important; /* Elimina la sombra */
    padding: 0 !important; /* Elimina el padding para que el ícono ocupe todo el espacio */
    width: 40px !important; /* Fija el tamaño del botón para tu ícono */
    height: 40px !important;
}

/* 2. Oculta el elemento que contiene el texto del botón */
.wc-button-2 .wc-button-2-text, .wc-button-2-anim .wc-button-2-text {
    display: none !important;
}

/* 3. Agrega el ícono de WhatsApp usando un pseudo-elemento */
.wc-button-2::after, .wc-button-2-anim::after {
    content: '';
    background-image: url('assets/img/whatsapp.svg'); /* REEMPLAZA esta URL con la ruta de tu ícono */
    background-size: cover; /* Ajusta el ícono para que cubra el espacio */
    background-position: center; /* Centra la imagen */
    width: 100%;
    height: 100%;
    display: block;
}


/* Estilos para el nuevo modal */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% desde arriba y centrado */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Ancho de la modal, ajusta según necesidad */
  max-width: 600px; /* Tamaño máximo para escritorio */
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.modal-title-fam {
  color: #303030; /*#b50000;*/
  text-align: center;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.modal-legal-text {
  background-color: #f0f0f0;
  padding: 10px;
  margin-top: 20px;
  border-left: 5px solid #b50000;
}

.modal-action-btn {
  text-align: center;
  margin-top: 20px;
}

.btn-solicitar {
  background-color: #b50000;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-solicitar:hover {
  background-color: #899094;
}

@media (max-width: 768px) {
  .modal-info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}



/* ========================================================================================================= */
/* ========== Reset & Base ========== */
/*
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; line-height:1.5; background:#fff; color:#333; }
a { text-decoration:none; }
ul { list-style:none; }
*/

/* ========== Reset & Base ========== */
* { margin:0; padding:0; box-sizing:border-box; }

/* Definimos la fuente AvantGardes */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/AvantGardes.woff2') format('woff2'),
       url('../fonts/AvantGardes.woff') format('woff'),
       url('../fonts/AvantGardes.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body { 
  font-family: 'Poppins', Arial, sans-serif; /* ✅ AvantGardes como oficial */
  line-height:1.5; 
  background:#fff; 
  color: #303030; /*#899094; #333;*/ 
}

a { text-decoration:none; }
ul { list-style:none; }

/* ========== Topbar ========== */
.topbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0.5rem 2rem;
    background:#f5f5f5;
    font-size:0.85rem;
}
.topbar .left a, 
.topbar .right a {
    margin-right:1rem;
    color:#303030; /* #899094 #333;*/
}
.topbar .right a:last-child {
    font-weight:bold; /*bold;*/
}

    /* ========== Navbar ========== */
    .navbar {
      display:flex;
      align-items:center;
      justify-content:space-between; /* 👈 para que logo/nav a la izq y toggle a la der */
      padding:1rem 2rem;
      background:#CC0000;
      color:#fff;
      position:sticky;
      top:0;
      z-index:1000;
    }

    .logo img {
      height: 40px; /* Ajusta según el tamaño que necesites */
      vertical-align: middle;
    }
    
    .logo {
        font-weight:bold;
        font-size:1.6rem;
    }

    .menu {
        display:flex;
        align-items: center; /* 🔹 Alinea verticalmente todos los elementos */
        gap:1.5rem;
    }
    
    /* Busca el estilo para los elementos de la lista del menú */
    .menu > li {
        position: relative; /* Este es el cambio clave */
        background-color: #CC0000; /* Color plomo de la barra de menú */
    }

    .menu li a {
        color:#303030;
        font-weight:500;
        padding:0.5rem;
    }

    /* Dropdown oculto */
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;   /* solo el fondo del dropdown */
        color: #fff;
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* ✅ varias columnas (ajusta a 2 o 3 según quieras) */
        gap: 2rem;
        padding: 1.5rem;
        min-width: 600px;      /* ancho fijo, no 100% */
        max-width: 900px;      /* límite opcional */
        z-index: 2000;
    }

    /* Mostrar solo cuando se hace hover */
    .dropdown:hover > .dropdown-content {
        display: grid;position: absolute;
    }

    .dropdown-content h4 {
        margin-bottom:0.5rem;
        font-size:1rem;
        border-bottom:1px solid rgba(255,255,255,0.3);
        padding-bottom:0.3rem;
        color:#B50000;
    }
    .dropdown-content a {
        display:block;
        color:#B50000;
        margin-bottom:0.3rem;
        font-size:0.9rem;
    }

    .dropdown-content > div {
        min-width: 180px;
    }

    /* ====== Ajustes Navbar Dropdown ====== */

    /* En escritorio: dropdowns en columnas, no en vertical */
    @media (min-width: 993px) {
      .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        background: #b50000; /* solo fondo del dropdown, no el del menú */
        grid-template-columns: repeat(3, 1fr); /* ✅ varias columnas */
        gap: 2rem;
        padding: 1.5rem;
        min-width: 600px;
        max-width: 900px;
        border-radius: 0 0 6px 6px; /* opcional, bordes suaves */
      }

      .dropdown:hover > .dropdown-content {
        display: grid;
      }

      /* Espaciado de las columnas internas */
      .dropdown-content > div {
        min-width: 180px;
      }
    }


/* ====== CARRUSEL / SLIDER ====== */
.slider {
  position: relative;
  width: 100%;
  height: 450px;       /* ✅ Altura fija (puedes ajustar: 300px, 450px, etc.) */
  overflow: hidden;
  background: #f3f3f3;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;  /* top/right/bottom/left: 0 */
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}
.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ✅ Mantiene proporción, rellena el espacio */
  display: block;
}

/* Controles */
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
}
.control.prev { left: 12px; }
.control.next { right: 12px; }
.control:focus { outline: 2px solid rgba(255,255,255,.7); }

/* Dots */
.dots {
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  display: flex; gap: 8px; justify-content: center; z-index: 5;
}
.dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.5); cursor: pointer;
}
.dots button.active { background: #fff; }

/* ✅ Responsive */
@media (max-width: 768px) {
  .slider {
    height: 250px; /* más bajo en móvil */
  }
}



/* ========== Services ========== */
.services {
    padding:2rem;
    text-align:center;
}
.services h2 {
    margin-bottom:1.5rem;
    font-size:1.8rem;
    color:#e60000;
}
.services .grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:1.5rem;
}

.card {
  position: relative;
  width: 280px;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  /*box-shadow: 0 6px 14px rgba(0,0,0,0.2);*/
  box-shadow: 0 1px 1px rgba(0,0,0,0.9);
  cursor: pointer;
  background: #000;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  color: #fff;
}

.card-text {
  position: absolute;
  left: 20px;
  right: 20px;
  transition: all 0.4s ease;
}

.default-text {
  bottom: 20px;
  opacity: 1;
}

.default-text h3 {
  font-size: 20px;
  margin: 0;
}

.default-text .line {
  display: block;
  width: 40px;
  height: 4px;
  background: #CC0000;/*#ffcc00; /* franja amarilla */
  margin-top: 5px;
  border-radius: 2px;
}

.hover-text {
  bottom: -120px; /* oculto */
  opacity: 0;
}

.hover-text h3 {
  margin: 0;
  font-size: 20px;
}

.hover-text p {
  margin: 5px 0;
  font-size: 16px;
}

.hover-text a {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 0px solid #fff;
  transition: color 0.3s;
}

.hover-text a:hover {
  color: #CC0000; /*#ffcc00;*/
}

.card:hover .default-text {
  bottom: 70%;
  opacity: 0;
}

.card:hover .hover-text {
  bottom: 20px;
  opacity: 1;
}
/*
.card {
    background:#fff;
    border-radius:10px;
    padding:1rem;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    transition:transform 0.2s;
}
.card:hover {
    transform:translateY(-5px);
}
.card img {
    width:100%;
    border-radius:10px;
    margin-bottom:1rem;
}
.card h3 {
    margin-bottom:0.5rem;
}
*/

/* ========== Plans ========== */
.plans {
    padding:2rem;
    background:#fafafa;
    text-align:center;
}
.plans h2 {
    margin-bottom:1.5rem;
    font-size:1.8rem;
    color:#e60000;
}
.plans .grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:1.5rem;
}
.plan-card {
    background:#fff;
    border-radius:10px;
    padding:1.5rem;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    transition:transform 0.2s;
}
.plan-card:hover {
    transform:translateY(-5px);
}
.plan-card h3 {
    margin-bottom:0.5rem;
}
.plan-card .price {
    display:block;
    margin:1rem 0;
    font-size:1.5rem;
    color:#e60000;
}
.btn-primary {
    display:inline-block;
    background:#e60000;
    color:#fff;
    padding:0.7rem 1.5rem;
    border-radius:5px;
    text-decoration:none;
    transition:background 0.3s;
}
.btn-primary:hover {
    background:#b50000;
}

/* ========== Footer ========== */
.footer {
    background:#303030;
    color:#FFFFFF;
    padding:2rem;
}
.footer-content {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
    gap:1.5rem;
}
.footer h4 {
    margin-bottom:0.3rem;
    font-weight: bold;
}
.footer ul {
    list-style:none;
}
.footer ul li {
    margin-bottom:0.3rem;
}
.footer ul li a {
    color:#303030; /* ddd */
    text-decoration:none;
    transition:color 0.3s;
}
.footer ul li a:hover {
    color:#303030; /* fff */
}
.social a {
    margin-right:0.5rem;
    color:#FFFFFF; /* fff */
}
.copy {
    text-align:center;
    margin-top:1rem;
    font-size:0.9rem;
}

/* ========== Hamburguesa ========= */
/* Botón hamburguesa (oculto en escritorio) */
.menu-toggle{
  display:none; /* oculto en escritorio */
  color:#fff;
  font-size:2rem;
  cursor:pointer;
}

/* ========== Responsive ========== */
@media(max-width:992px){
    .dropdown-content {
        position:static;
        grid-template-columns:1fr;
        gap:1rem;
        padding:1rem;
        min-width:auto;
    }
}

@media(max-width:768px){
  /* Menú móvil: oculto por defecto y desplegable a todo el ancho */
    .menu{
    display:none;
    flex-direction:column;
    background:#e60000;
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    padding:1rem;
    z-index:1500;
  }
  .menu.active{ display:flex; }

  .menu-toggle{ display:block; }
}

  /* Dropdowns dentro del menú en móvil (clic, no hover) */
  .dropdown-content{
    position:static;          /* ya no absolute */
    display:none;             /* oculto hasta que se “abra” */
    background:#b50000;
    grid-template-columns:1fr;
    gap:1rem;
    padding:1rem;
    min-width:auto;
  }
  .dropdown.open > .dropdown-content{
    display:grid;             /* se muestra cuando el padre tiene .open */
  }

  /* Animación del ícono hamburguesa / X */
    .menu-toggle i {
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.rotate i {
      transform: rotate(180deg); /* rota al abrir */
    }


/* ===================== MODAL ===================== */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* Fondo oscuro */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Caja blanca centrada */
.modal-dialog {
  background: #fff;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  padding: 25px 30px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: modalFadeIn .3s ease;
}

/* Animación suave de entrada */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Botón de cierre (X) */
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: #c00;
}

/* Bloque gris de condiciones */
.modal-conditions {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 6px;
  margin: 20px 0;
}
.modal-conditions h4 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.modal-conditions p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* Secciones internas */
.modal-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.modal-section.grid-2 > div {
  flex: 1;
  padding-right: 15px;
}
.modal-section.grid-2 > div:last-child {
  padding-right: 0;
}

.modal-label {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}
.modal-value {
  font-size: 14px;
  color: #666;
}

/* Precio */
.price-box {
  font-size: 16px;
  margin: 20px 0;
}
.modal-price {
  font-size: 22px;
  font-weight: bold;
  color: #c00;
}

/* Acciones */
.modal-actions {
  text-align: right;
  margin-top: 15px;
}
.modal-actions .btn-primary {
  background: #c00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background .3s;
}
.modal-actions .btn-primary:hover {
  background: #900;
}

/* Responsive */
@media (max-width: 600px) {
  .modal-dialog {
    width: 95%;
    padding: 20px;
  }
  .modal-section {
    flex-direction: column;
    gap: 10px;
  }
}


/* ============== Boton VENTAS ================ */
/* Contenedor general */
.flotante-ventas-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100; /* siempre por encima del resto */
}

/* Botón "Ventas" (naranja, fijo al costado) */
.boton-flotante-ventas {
    background-color: #899094;
    color: #FFF;
    /*font-size: 0.90rem;*/
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(360deg);
    z-index: 1200; /* por encima incluso del menú */
}

/* Caja del menú */
.menu-flotante-ventas {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #fff;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000; /* debajo del botón */
}

/* Visible */
.menu-flotante-ventas.visible {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* Encabezado */
.menu-flotante-ventas .menu-header {
    background: #899094;
    color: #fff;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-flotante-ventas .cerrar-menu {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Cada tarjeta interna */
.enlace-flotante {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #f0f0f0;
    color: #333;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;

    width: 48%; /* Esto hace que cada enlace ocupe casi la mitad de la fila */
    box-sizing: border-box; /* Asegura que el padding no desborde el ancho */
}

.enlace-flotante:hover {
    background-color: #f9f9f9;
}

/* Ícono a la izquierda */
.enlace-flotante i {
    font-size: 22px;
    color: #899094;
}

/* Texto */
.enlace-flotante .content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.enlace-flotante .title {
    font-size: 0.95rem;
    font-weight: bold;
    margin: 0;
    color: #111;
}

.enlace-flotante .info-text {
    font-size: 0.85rem;
    color: #555;
    margin: 2px 0 0;
}

.cardiPlanTitleRow {
  display: flex;        /* ✅ íconos + texto en la misma fila */
  align-items: baseline;  /* ✅ centrados verticalmente */
  gap: 0.5em;           /* espacio entre íconos y texto */
}

.cardiPlanIcons {
  display: flex;
  gap: 0.4em;           /* espacio entre los íconos */
  margin-top: 2px;         /* ✅ microajuste fino si aún quedan bajos */
}

.responsive-icon {
  font-size: clamp(14px, 1.8vw, 22px); /* un poco más grande y responsivo */
  color: #303030;  /* puedes cambiar a #303030 si prefieres oscuro */
  line-height: 1;          /* ✅ evita que ocupe más alto que el texto */
  vertical-align: middle;  /* ✅ asegura misma altura visual */
}

.cardiPlanTitleIco span {
  font-size: 1.1rem;       /* ajusta según necesidad */
  font-weight: 600;
  color: #303030;
  line-height: 1.2;        /* para que se vea centrado si el texto es alto */
}


    /* ===== Servicios Slider/Grilla ===== 
    .services {
      position: relative;
      padding: 2rem;
      overflow: hidden;
      text-align: center;
    }
    .services h2 {
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      color: #e60000;
    }

    .services-track {
      display: flex;
      gap: 1rem;
      transition: transform 0.5s ease;
    }

    .services .card {
      min-width: 250px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 1rem;
      flex: 0 0 auto;
      text-align: center;
    }
    .services .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    ========== Botones del slider
    .services button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: rgba(0,0,0,0.5);
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
    }
    .services-prev { left: 10px; }
    .services-next { right: 10px; }

    ========== 🖥️ Escritorio = grilla fija 
    @media (min-width: 992px) {
      .services-track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        transform: none !important;
      }
      .services button {
        display: none;
      }
    }*/

    .cardiPlan {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      border-radius:24px;
      box-shadow:0 4px 8px 0px rgba(0,0,0,0.15);
      position:relative;
      width:320px;
      min-height:460px
    }
    .cardiPlan .cardiPlanLabel {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      position:absolute;
      transform:translateX(-50%);
      left:50%;
      font-size:12px;
      font-size:.75rem;
      font-weight:700;
      color:#006E7A;
      text-align:center;
      text-transform:none;
      width:100%;
      min-width:180px;
      max-width:230px;
      padding:5px 12px;
      background-color:#899094;
      border-radius:0px 0px 12px 12px;
      box-shadow:0px -1px 4px 0px #005C66 inset
    }
    .cardiPlan .cardiPlanTitle {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      color:#fff;
      text-align:center;
      width:100%;
      height:170px;
      padding:32px 10px 16px;
      /*background:linear-gradient(121deg, #018B9A 1.63%, #09BCC4 100%);*/
      background:linear-gradient(121deg, #899094 1.63%, #CC0000 100%);
      border-radius:24px 24px 0px 0px
    }
    .cardiPlan .cardiPlanTitle i {
      font-size:40px;
      font-size:2.5rem;
      margin-bottom:8px
    }
    .cardiPlan .cardiPlanTitle h3 {
      font-size:16px;
      font-size:1rem;
      font-family:"Poppins",sans-serif;
      font-weight:500
    }
    .cardiPlan .cardiPlanTitle p {
      font-size:24px;
      font-size:1.5rem;
      font-family:"Poppins",sans-serif;
      font-weight:700
    }
    .cardiPlan .cardiPlanTitle span {
      font-size:18px;
      font-size:1.125rem;
      font-family:"Poppins",sans-serif;
      font-weight:400
    }
    .cardiPlan .cardiPlanInitFeat {
      display:flex ;
      height:40px;
      border-bottom:#e8e8e8 1px solid
    }
    .cardiPlan .cardiPlanInitFeat p {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      font-size:14px;
      font-size:.875rem;
      line-height:1.2;
      position:relative;
      width:50%;
      height:100%;
      padding:6px 12px
    }
    .cardiPlan .cardiPlanInitFeat p i {
      font-size:20px;
      font-size:1.25rem;
      left:12px;
      margin-right:12px
    }
    .cardiPlan .cardiPlanInitFeat p span {
      font-weight:500
    }
    .cardiPlan .cardiPlanInitFeat p+p {
      border-left:#e8e8e8 1px solid
    }
    .cardiPlan .cardiPlanActMore {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      position:relative;
      width:100%;
      height:40px;
      padding:6px 16px;
      border-bottom:#e8e8e8 1px solid;
      cursor:pointer
    }
    .cardiPlan .cardiPlanActMore span {
      font-size:14px;
      font-size:.875rem;
      font-weight:500;
      color:#0097A9
    }
    .cardiPlan .cardiPlanActMore:after {
      transition:all .5s ease;
      content:"\e956" ;
      font-family:"claroicons";
      font-size:18px;
      font-size:1.125rem;
      color:#0097A9;
      position:absolute;
      top:12px;
      right:16px
    }
    .cardiPlan .cardiPlanActMore.opened:after {
      transform:rotate(180deg)
    }
    .cardiPlan .cardiPlanInfoLink {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      justify-content:space-between;
      font-size:14px;
      font-size:.875rem;
      gap:12px;
      position:relative;
      width:100%;
      height:40px;
      padding:6px 16px;
      border-bottom:#e8e8e8 1px solid
    }
    .cardiPlan .cardiPlanInfoLink span,
    .cardiPlan .cardiPlanInfoLink a {
      font-size:inherit
    }
    .cardiPlan .cardiPlanPrice {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      text-align:center;
      width:100%;
      padding:20px;
      padding-bottom:0
    }
    .cardiPlan .cardiPlanPrice .cippTitle {
      font-size:16px;
      font-size:1rem;
      font-weight:700
    }
    .cardiPlan .cardiPlanPrice .cippPrice {
      font-size:14px;
      font-size:.875rem;
      font-weight:500
    }
    .cardiPlan .cardiPlanPrice .cippPrice strong {
      font-size:30px;
      font-size:1.875rem;
      color:#DA291C;
      display:block
    }
    .cardiPlan .cardiPlanPrice .cippExtra {
      font-size:14px;
      font-size:.875rem;
      color:#6c6c6c;
      margin-top:8px
    }
    .cardiPlan .cardiPlanPrice .cippExtra.labeled {
      border-radius:4px;
      font-family:"Poppins",sans-serif;
      font-weight:500;
      color:#2d2d2d;
      display:inline-block;
      padding:2px 10px;
      background-color:#F4D327
    }
    .cardiPlan .cardiPlanPrice .cippLighted {
      font-size:14px;
      font-size:.875rem;
      font-family:"Poppins",sans-serif;
      font-weight:500;
      font-style:italic;
      color:#DA291C;
      margin-top:8px
    }
    .cardiPlan .cardiPlanPrice+.cardiPlanActMore {
      border-top:#e8e8e8 1px solid;
      margin-top:20px
    }
    .cardiPlan .cardiPlanPrice+.cardiPlanActMore+.cardiPlanDetail {
      border-bottom:none
    }
    .cardiPlan .cardiPlanPromo {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      width:100%;
      padding:12px 20px;
      margin-top:20px;
      border-top:#e8e8e8 1px solid;
      border-bottom:#e8e8e8 1px solid;
      overflow:hidden
    }
    .cardiPlan .cardiPlanPromo p {
      font-size:12px;
      font-size:.75rem;
      color:#3C3C3C;
      text-align:center;
      padding-bottom:12px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems {
      display:flex ;
      justify-content:center;
      align-items:center
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems i {
      font-size:30px;
      font-size:1.875rem;
      line-height:30px;
      margin:0 5px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems img {
      margin:0 5px;
      object-fit:contain;
      height:30px;
      width:70px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems [class*="cIco"] {
      margin:0 5px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems [class*="cIco"]:before {
      height:30px;
      width:70px;
      object-fit:contain
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider {
      padding:0 20px;
      margin-bottom:12px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider.slick-slider {
      width:100% !important;
      display:block !important
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-list {
      padding-left:0 !important;
      padding-right:0 !important
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-slide {
      margin:0;
      margin-left:5px;
      margin-right:5px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-slide i {
      margin:0
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-slide img {
      margin:0
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-slide [class*="cIco"] {
      margin:0
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev,
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      transition:all .5s ease;
      border-radius:50%;
      width:16px;
      height:16px;
      border:#BBB 2px solid;
      z-index:1;
      cursor:pointer
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev:before,
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next:before {
      transition:all .5s ease;
      position:absolute;
      transform:translate(-50%, -50%);
      top:50%;
      left:50%;
      font-size:10px;
      font-size:.625rem;
      color:#BBB;
      opacity:1
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev {
      left:-8px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev:before {
      content:"\e910" ;
      font-family:"claroicons"
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next {
      right:-8px
    }
    .cardiPlan .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next:before {
      content:"\e912" ;
      font-family:"claroicons"
    }
    .cardiPlan .cardiPlanAdsForm {
      margin-top:20px
    }
    .cardiPlan .cardiPlanAdsForm .cardiPlanAdsFormInner {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      padding:20px;
      background:#fff;
      background:linear-gradient(90deg, #fff 0%, rgba(224,231,246,0.8) 100%)
    }
    .cardiPlan .cardiPlanAdsForm .cardiPlanAdsFormInner span {
      font-size:12px;
      font-size:.75rem;
      line-height:1.2;
      padding-right:16px
    }
    .cardiPlan .cardiPlanAdsForm.noBtnBottom {
      padding-bottom:24px
    }
    .cardiPlan .cardiPlanBtn {
      padding:20px 0
    }
    .cardiPlan .cardiPlanBtn [class*="btn"] {
      margin:0 auto;
      min-width:120px;
      max-width:160px
    }
    .cardiPlan .cardiPlanCompare {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      justify-content:center;
      padding:0 20px 20px
    }
    .cardiPlan .cardiPlanCompare label {
      font-size:16px;
      font-size:1rem;
      line-height:20px
    }
    .cardiPlan .cardiPlanDetail {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      padding:4px 0;
      border-bottom:#e8e8e8 1px solid;
      display:none
    }
    .cardiPlan .cardiPlanDetail+.cardiPlanPromo {
      margin-top:0
    }
    .cardiPlan .cardiPlanDetail .cardiPlanDetInfo {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      position:relative;
      height:100%;
      padding-bottom:50px
    }
    .cardiPlan .cardiPlanDetail dl {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      line-height:1.2;
      width:100%;
      padding:0 8px
    }
    .cardiPlan .cardiPlanDetail dl dt {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      font-size:14px;
      font-size:.875rem;
      width:50%;
      padding:8px
    }
    .cardiPlan .cardiPlanDetail dl dd {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      font-size:14px;
      font-size:.875rem;
      font-weight:500;
      text-align:right;
      width:50%;
      padding:8px
    }
    .cardiPlan .cardiPlanDetail dl dd .ddExtra {
      font-size:12px;
      font-size:.75rem;
      font-weight:400;
      display:inline-block
    }
    .cardiPlan .cardiPlanDetail dl .rsInc {
      display:flex ;
      flex-wrap:wrap;
      justify-content:flex-end;
      margin-top:-5px
    }
    .cardiPlan .cardiPlanDetail dl .rsInc li {
      margin:5px
    }
    .cardiPlan .cardiPlanDetail dl .rsInc li i:before {
      font-size:20px;
      font-size:1.25rem;
      width:20px;
      height:20px
    }
    .cardiPlan .cardiPlanDetail dl .rsInc li img {
      width:auto;
      max-height:20px
    }
    .cardiPlan .cardiPlanDetail dl.iconEle dt {
      display:flex ;
      align-items:center;
      position:relative;
      padding-left:40px
    }
    .cardiPlan .cardiPlanDetail dl.iconEle dt i {
      position:absolute;
      transform:translateY(-50%);
      top:50%;
      font-size:24px;
      font-size:1.5rem;
      left:8px
    }
    .cardiPlan .cardiPlanDetail dl.incServ {
      align-items:center
    }
    .cardiPlan .cardiPlanDetail dl.incServ [class*="cIco"]:before {
      max-width:100px;
      max-height:20px
    }
    .cardiPlan .cardiPlanDetail dl.incServ img {
      width:auto;
      max-height:20px
    }
    .cardiPlan .cardiPlanDetMoreInfo {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      text-align:center;
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      padding:8px 20px 20px
    }
    .cardiPlan.alter1 .cardiPlanLabel {
      font-size:16px;
      font-size:1rem;
      font-family:"Poppins",sans-serif;
      font-weight:500;
      color:#fff;
      text-transform:none;
      max-width:180px;
      padding:4px 12px;
      background-color:#899094;
      box-shadow:0px -1px 4px 0px #b52217 inset
    }
    .cardiPlan.alter1 .cardiPlanTitle {
      color:#3C3C3C;
      border-bottom:#e8e8e8 1px solid;
      background:#C0C0C0; /*#E0E7F6;*/
      /*background:linear-gradient(180deg, #E0E7F6 0%, rgba(224,231,246,0) 100%)*/
      background:linear-gradient(180deg, #C0C0C0 0%, rgba(192,192,192,0) 100%)
    }
    .cardiPlan.alter1 .cardiPlanTitle i {
      font-size:28px;
      font-size:1.75rem;
      /*background:linear-gradient(180deg, #F65041 12.49%, #B52217 100%);
      background:-webkit-linear-gradient(180deg, #F65041 12.49%, #B52217 100%);*/
      background-clip:text;
      -webkit-background-clip:text;
      text-fill-color:text;
      -webkit-text-fill-color:transparent
    }
    .cardiPlan.alter1 .cardiPlanTitle span {
      font-family:"Poppins",sans-serif;
      font-weight:400
    }
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems i {
      font-size:32px;
      font-size:2rem;
      margin:0 12px
    }
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems [class*="cIco"]:before {
      max-height:32px
    }
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems img {
      max-height:32px;
      margin:0 12px
    }
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      width:calc(100% - 8px) !important;
      margin-left:auto;
      margin-right:auto;
      padding:0 36px
    }
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev,
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next {
      border:#6c6c6c 1px solid
    }
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev:before,
    .cardiPlan.alter1 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next:before {
      color:#6c6c6c
    }
    .cardiPlan.recommended {
      position:relative;
      border:#DA291C 1px solid
    }
    .cardiPlan.recommended .cardiPlanRecommLabel {
      position:absolute;
      width:24px;
      height:120px;
      top:30px;
      right:-48px
    }
    .cardiPlan.recommended .cardiPlanRecommLabel .cardiPlanRecommLabelInner {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      font-size:12px;
      font-size:.75rem;
      font-weight:500;
      color:#fff;
      white-space:nowrap;
      width:120px;
      height:24px;
      padding:6px 12px;
      background:#DA291C;
      /*background:linear-gradient(180deg, #F65041 12.49%, #B52217 100%);*/
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      transform:rotate(90deg);
      transform-origin:left top
    }
    .cardiPlan.recommended .cardiPlanRecommLabel .cardiPlanRecommLabelInner i {
      margin-right:4px
    }
    .cardiPlanV2 {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      border-radius:24px;
      box-shadow:1px 0 1px 0.3px rgba(204,0,0,0.8); /*0 4px 8px 0px rgba(0,0,0,0.15);*/
      position:relative;
      width:320px;
      min-height:460px
    }
    .cardiPlanV2 .cardiPlanLabel {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      position:absolute;
      transform:translateX(-50%);
      left:50%;
      font-size:12px;
      font-size:.75rem;
      font-weight:700;
      color:#fff;
      text-align:center;
      text-transform:none;
      width:auto;
      min-width:180px;
      max-width:230px;
      padding:5px 12px;
      background-color:#CC0000; /*color etiqueta*/
      border-radius:0px 0px 12px 12px;
      box-shadow:0px -1px 4px 0px #720000 inset
    }
    .cardiPlanV2 .cardiPlanInfo {
      /*background:linear-gradient(180deg, #EBF0F9 0%, rgba(255,255,255,0) 100%);*/
      border-radius:24px 24px 0px 0px
    }
    .cardiPlanV2 .cardiPlanTitle {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      width:100%;
      padding:40px 10px 8px
    }
    .cardiPlanV2 .cardiPlanTitle .cardiPlanTitleIco {
      display:flex ;
      justify-content:center;
      align-items:center;
      margin-bottom:8px
    }
    .cardiPlanV2 .cardiPlanTitle .cardiPlanTitleIco i {
      font-size:32px;
      font-size:2rem
    }
    .cardiPlanV2 .cardiPlanTitle .cardiPlanTitleIco span {
      font-size:18px;
      font-size:1.125rem;
      font-family:"Poppins",sans-serif;
      display:block;
      margin-left:12px
    }
    .cardiPlanV2 .cardiPlanTitle h3 {
      font-size:16px;
      font-size:1rem;
      font-family:"Poppins",sans-serif;
      font-weight:500
    }
    .cardiPlanV2 .cardiPlanTitle p {
      font-size:24px;
      font-size:1.5rem;
      font-family:"Poppins",sans-serif;
      font-weight:700
    }
    .cardiPlanV2 .cardiPlanTitle span {
      font-size:18px;
      font-size:1.125rem;
      font-family:"Poppins",sans-serif;
      font-weight:500
    }
    .cardiPlanV2 .cardiPlanPrice {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      text-align:center;
      width:100%;
      padding:4px 20px 16px
    }
    .cardiPlanV2 .cardiPlanPrice .cippTitle {
      font-size:16px;
      font-size:1rem;
      font-weight:700
    }
    .cardiPlanV2 .cardiPlanPrice .cippPrice {
      font-size:16px;
      font-size:1rem;
      font-weight:500
    }
    .cardiPlanV2 .cardiPlanPrice .cippPrice strong {
      font-size:36px;
      font-size:2.25rem;
      color:#DA291C;
      display:block
    }
    .cardiPlanV2 .cardiPlanPrice .cippExtra {
      font-size:14px;
      font-size:.875rem;
      color:#6c6c6c;
      margin-top:8px
    }
    .cardiPlanV2 .cardiPlanPrice+.cardiPlanActMore {
      border-top:#e8e8e8 1px solid
    }
    .cardiPlanV2 .cardiPlanPriceAdds {
      margin-top:12px
    }
    .cardiPlanV2 .cardiPlanPriceAdds .cippaCat {
      font-family:"Poppins",sans-serif;
      font-weight:700;
      color:#DA291C
    }
    .cardiPlanV2 .cardiPlanPriceAdds .cippaSubjet {
      font-size:14px;
      font-size:.875rem
    }
    .cardiPlanV2 .cardiPlanPriceAdds .fcLogoImg {
      width:100%;
      max-width:64px;
      height:auto;
      display:inline-block;
      margin-bottom:-2px
    }
    .cardiPlanV2 .cardiPlanPriceAdds .fcLogo {
      font-family:"Poppins",sans-serif;
      font-weight:400;
      color:#fff;
      padding:0 4px;
      background-color:#DA291C
    }
    .cardiPlanV2 .cardiPlanPriceAdds .fcLogo strong {
      font-family:"Poppins",sans-serif;
      font-weight:700
    }
    .cardiPlanV2 .cardiPlanActMore {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      justify-content:center;
      position:relative;
      width:100%;
      height:40px;
      padding:6px 16px;
      border-top:#e8e8e8 1px solid;
      border-bottom:#e8e8e8 1px solid;
      cursor:pointer
    }
    .cardiPlanV2 .cardiPlanActMore span {
      font-size:14px;
      font-size:.875rem;
      font-weight:500;
      color:#0097A9
    }
    .cardiPlanV2 .cardiPlanActMore:after {
      transition:all .5s ease;
      content:"\e90b" ;
      font-family:"claroicons";
      font-size:18px;
      font-size:1.125rem;
      color:#0097A9;
      position:relative;
      margin-left:8px
    }
    .cardiPlanV2 .cardiPlanActMore.opened:after {
      transform:rotate(180deg)
    }
    .cardiPlanV2 .cardiPlanPromo {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      width:100%;
      padding:12px 20px;
      background-color:rgba(0,151,169,0.1);
      overflow:hidden
    }
    .cardiPlanV2 .cardiPlanPromo p {
      font-size:12px;
      font-size:.75rem;
      color:#3C3C3C;
      text-align:center;
      padding-bottom:12px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems {
      display:flex ;
      justify-content:center;
      align-items:center
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems i {
      font-size:20px;
      font-size:1.25rem;
      line-height:20px;
      margin:0 8px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems img {
      margin:0 8px;
      object-fit:contain;
      height:30px;
      width:70px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems [class*="cIco"] {
      margin:0 8px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems [class*="cIco"]:before {
      height:30px;
      width:70px;
      object-fit:contain
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider {
      padding:0 12px;
      margin-bottom:12px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider.slick-slider {
      width:100% !important;
      display:block !important
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-list {
      padding-left:0 !important;
      padding-right:0 !important
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-slide {
      margin:0;
      margin-left:12px;
      margin-right:12px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-slide img {
      margin:0
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev,
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      transition:all .5s ease;
      border-radius:50%;
      width:16px;
      height:16px;
      border:#6c6c6c 2px solid;
      z-index:1;
      cursor:pointer
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev:before,
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next:before {
      transition:all .5s ease;
      position:absolute;
      transform:translate(-50%, -50%);
      top:50%;
      left:50%;
      font-size:10px;
      font-size:.625rem;
      color:#6c6c6c;
      opacity:1
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev {
      left:-8px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-prev:before {
      content:"\e910" ;
      font-family:"claroicons"
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next {
      right:-8px
    }
    .cardiPlanV2 .cardiPlanPromo .cPlanPromoItems.cPlanPromoItemsSlider .slick-next:before {
      content:"\e912" ;
      font-family:"claroicons"
    }
    .cardiPlanV2 .cardiPlanBtn {
      padding:20px 0
    }
    .cardiPlanV2 .cardiPlanBtn [class*="btn"] {
      margin:0 auto;
      min-width:120px;
      max-width:160px
    }
    .cardiPlanV2 .cardiPlanCompare {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      justify-content:center;
      padding:0 20px 20px
    }
    .cardiPlanV2 .cardiPlanCompare label {
      font-size:16px;
      font-size:1rem;
      line-height:20px
    }
    .cardiPlanV2 .cardiPlanDetail {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      padding:4px 0;
      border-bottom:#e8e8e8 1px solid;
      display:none
    }
    .cardiPlanV2 .cardiPlanDetail .cardiPlanDetInfo {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      position:relative;
      height:100%;
      padding-bottom:50px
    }
    .cardiPlanV2 .cardiPlanDetail dl {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      line-height:1.2;
      width:100%;
      padding:0 8px
    }
    .cardiPlanV2 .cardiPlanDetail dl dt {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      font-size:14px;
      font-size:.875rem;
      width:50%;
      padding:8px
    }
    .cardiPlanV2 .cardiPlanDetail dl dd {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      font-size:14px;
      font-size:.875rem;
      font-weight:500;
      text-align:right;
      width:50%;
      padding:8px
    }
    .cardiPlanV2 .cardiPlanDetail dl dd .ddExtra {
      font-size:12px;
      font-size:.75rem;
      font-weight:400;
      display:inline-block
    }
    .cardiPlanV2 .cardiPlanDetail dl .rsInc {
      display:flex ;
      flex-wrap:wrap;
      justify-content:flex-end;
      margin-top:-5px
    }
    .cardiPlanV2 .cardiPlanDetail dl .rsInc li {
      margin:5px
    }
    .cardiPlanV2 .cardiPlanDetail dl .rsInc li i:before {
      font-size:20px;
      font-size:1.25rem;
      width:20px;
      height:20px
    }
    .cardiPlanV2 .cardiPlanDetail dl .rsInc li img {
      width:auto;
      max-height:20px
    }
    .cardiPlanV2 .cardiPlanDetail dl.iconEle dt {
      display:flex ;
      align-items:center;
      position:relative;
      padding-left:40px
    }
    .cardiPlanV2 .cardiPlanDetail dl.iconEle dt i {
      position:absolute;
      transform:translateY(-50%);
      top:50%;
      font-size:24px;
      font-size:1.5rem;
      left:8px
    }
    .cardiPlanV2 .cardiPlanDetail dl.incServ {
      align-items:center
    }
    .cardiPlanV2 .cardiPlanDetail dl.incServ [class*="cIco"]:before {
      max-width:100px;
      max-height:20px
    }
    .cardiPlanV2 .cardiPlanExtras li {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      font-size:14px;
      font-size:.875rem;
      padding:10px 16px
    }
    .cardiPlanV2 .cardiPlanExtras li img {
      width:auto;
      max-height:14px;
      display:inline-block;
      margin-left:4px
    }
    .cardiPlanV2 .cardiPlanExtras li+li {
      border-top:#e8e8e8 1px solid
    }
    .cardiPlanV2 .cardiPlanDetMoreInfo {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      text-align:center;
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      padding:8px 20px 20px
    }
    .cardiPlanV2.recommended {
      position:relative;
      border:#DA291C 1px solid
    }
    .cardiPlanV2.recommended .cardiPlanRecommLabel {
      position:absolute;
      width:24px;
      height:120px;
      top:30px;
      right:-48px
    }
    .cardiPlanV2.recommended .cardiPlanRecommLabel .cardiPlanRecommLabelInner {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      display:flex ;
      align-items:center;
      font-size:12px;
      font-size:.75rem;
      font-weight:500;
      color:#fff;
      white-space:nowrap;
      width:120px;
      height:24px;
      padding:6px 12px;
      background:#DA291C;
      /*background:linear-gradient(180deg, #F65041 12.49%, #B52217 100%);*/
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      transform:rotate(90deg);
      transform-origin:left top
    }
    .cardiPlanV2.recommended .cardiPlanRecommLabel .cardiPlanRecommLabelInner i {
      margin-right:4px
    }

    /* ================= Btn Rojo ================== */
    .btn {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      -webkit-transition:all .5s ease;
      -moz-transition:all .5s ease;
      -ms-transition:all .5s ease;
      transition:all .5s ease;
      -webkit-border-radius:20px;
      -moz-border-radius:20px;
      border-radius:20px;
      font-size:16px;
      font-size:1rem;
      font-family:"Poppins",sans-serif;
      font-weight:500;
      color:#fff;
      text-align:center;
      width:auto;
      height:40px;
      position:relative;
      display:inline-block;
      padding:11px 20px;
      background-color:transparent;
      border:#899094 1px solid;
      cursor:pointer
    }
    .btn.btnPrimario {
      color:#fff;
      background-color:#899094
    }
    .btn.btnPrimario:hover {
      background-color:#B52217;
      border-color:#B52217
    }
    .btn.btnTransAzul {
      color:#fff;
      background-color:transparent;
      border-color:#fff
    }
    .btn.btnTransAzul:hover {
      color:#0097A9;
      background-color:#fff;
      border-color:#0097A9
    }
    .btn.btnTransRojo {
      color:#fff;
      background-color:transparent;
      border-color:#fff
    }
    .btn.btnTransRojo:hover {
      color:#899094;
      background-color:#fff;
      border-color:#899094
    }
    .btn.btnTransRojo5 {
      color:#fff;
      background-color:#f65041;
      border-color:#f65041
    }
    .btn.btnTransRojo5:hover {
      color:#f65041;
      background-color:#fff
    }
    .btn.btnTransRojo8 {
      color:#fff;
      background-color:transparent;
      border-color:#fff
    }
    .btn.btnTransRojo8:hover {
      color:#B52217;
      background-color:#fff;
      border-color:#B52217
    }
    .btn.btnTransRojoRojo {
      color:#899094;
      background-color:transparent;
      border-color:#899094
    }
    .btn.btnTransRojoRojo:hover {
      color:#fff;
      background-color:#899094
    }
    .btn.btnTransGris {
      color:#3C3C3C;
      background-color:transparent;
      border-color:#3C3C3C
    }
    .btn.btnTransGris:hover {
      color:#fff;
      background-color:#3C3C3C
    }
    .btn.btnTransNegro {
      color:#3C3C3C;
      background-color:transparent;
      border-color:#3C3C3C
    }
    .btn.btnTransNegro:hover {
      color:#fff;
      background-color:#3C3C3C;
      border-color:#3C3C3C
    }
    .btn.btnTransNegroBlanco {
      color:#3C3C3C;
      background-color:transparent;
      border-color:#3C3C3C
    }
    .btn.btnTransNegroBlanco:hover {
      color:#3C3C3C;
      background-color:#fff;
      border-color:#fff
    }
    .btn.btnTransBlancoNegro {
      color:#fff;
      background-color:transparent;
      border-color:#fff
    }
    .btn.btnTransBlancoNegro:hover {
      color:#3C3C3C;
      background-color:#fff
    }
    .btn.btnTransBlancoAzul {
      color:#fff;
      background-color:transparent;
      border-color:#fff
    }
    .btn.btnTransBlancoAzul:hover {
      color:#0097A9;
      background-color:#fff;
      border-color:#0097A9
    }
    .btn.btnBlancoRojo {
      color:#899094;
      background-color:transparent;
      border-color:#899094
    }
    .btn.btnBlancoRojo:hover {
      color:#fff;
      background-color:#899094
    }
    .btn.btnBlancoNegro {
      color:#3C3C3C;
      background-color:#fff;
      border-color:transparent
    }
    .btn.btnBlancoNegro:hover {
      color:#fff;
      background-color:#3C3C3C;
      border-color:transparent
    }
    .btn.btnBlancoNegroOut {
      color:#3C3C3C;
      background-color:transparent;
      border-color:#3C3C3C
    }
    .btn.btnBlancoNegroOut:hover {
      color:#fff;
      background-color:#3C3C3C
    }
    .btn.btnBlancoOut {
      color:#fff;
      background-color:transparent;
      border-color:#fff
    }
    .btn.btnBlancoOut:hover {
      color:#3C3C3C;
      background-color:#fff
    }
    .btn.btnNegro {
      color:#fff;
      background-color:#313131;
      border-color:transparent
    }
    .btn.btnNegro:hover {
      color:#fff;
      background-color:#6c6c6c;
      border-color:transparent
    }
    .btn.btnGrisRojo {
      color:#899094;
      background-color:#fff;
      border-color:#fff
    }
    .btn.btnGrisRojo:hover {
      color:#fff;
      background-color:#B52217;
      border-color:#B52217
    }
    .btn.btnGris {
      color:#3C3C3C;
      background-color:#F4F4F4;
      border-color:transparent
    }
    .btn.btnGris:hover {
      color:#3C3C3C;
      background-color:#F4F4F4;
      border-color:transparent
    }
    .btn.withIco {
      padding-left:50px;
      padding-right:20px
    }
    .btn.withIco span {
      display:inline-block
    }
    .btn.withIco i {
      font-size:22px;
      font-size:1.375rem;
      position:absolute;
      top:8px;
      margin-left:-32px
    }
    .btn.disabled {
      pointer-events:none;
      cursor:not-allowed;
      background-color:#F0F0F0 !important;
      color:#bfc2c7;
      border-color:transparent
    }
    .btn.disabled2 {
      pointer-events:none;
      cursor:not-allowed;
      background-color:#BBB !important;
      color:#6c6c6c;
      border-color:transparent
    }
    button.btn {
      padding:9px 20px
    }
    .btni {
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      -webkit-transition:all .3s ease;
      -moz-transition:all .3s ease;
      -ms-transition:all .3s ease;
      transition:all .3s ease;
      display:-webkit-box ;
      display:-moz-box ;
      display:-ms-flexbox ;
      webkit-display:-webkit-flex ;
      display:-webkit-flex ;
      display:flex ;
      align-items:center;
      -webkit-align-items:center;
      -ms-flex-align:center;
      justify-content:center;
      -webkit-justify-content:center;
      -ms-flex-pack:center;
      -webkit-border-radius:40px;
      -moz-border-radius:40px;
      border-radius:40px;
      font-size:16px;
      font-size:1rem;
      cursor:pointer;
      font-family:"Poppins",sans-serif;
      color:#fff;
      position:relative;
      width:100%;
      height:40px;
      max-width:200px;
      min-width:160px;
      padding:0 20px;
      overflow:hidden;
      border:none;
      background:#899094;
      background:linear-gradient(270deg, #b52217 0%,#899094 100%);
      box-shadow:0px -4px 10px 0px rgba(45,45,45,0.1) inset,4px 4px 14px 0px rgba(255,255,255,0.1) inset,0px 4px 12px 0px rgba(131,23,15,0.5)
    }
    .btni i {
      position:relative;
      margin-right:8px
    }
    .btni span {
      position:relative;
      white-space:nowrap
    }
    .btni:before {
      -webkit-transition:all .3s ease;
      -moz-transition:all .3s ease;
      -ms-transition:all .3s ease;
      transition:all .3s ease;
      -moz-box-sizing:border-box;
      -webkit-box-sizing:border-box;
      box-sizing:border-box;
      -webkit-border-radius:40px;
      -moz-border-radius:40px;
      border-radius:10px;
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:100%;
      height:100%;
      display:block;
      /*background-color:#fff;*/
      border:#CC0000 2px solid;
      opacity:0
    }
    .btni:hover {
      color:#CC0000;
      /*box-shadow:0px -4px 10px 0px rgba(45,45,45,0.1) inset,4px 4px 14px 0px rgba(255,255,255,0) inset,0px 4px 12px 0px rgba(131,23,15,0)*/
    }
    .btni:hover:before {
      opacity:1
    }
    .btni.disabled,
    .btni[disabled] {
      color:#989898 !important;
      background:#DBDBDB !important;
      border:none !important;
      pointer-events:none !important;
      cursor:not-allowed !important;
      box-shadow:none !important
    }
    .btni.disabled:before,
    .btni[disabled]:before {
      display:none !important
    }
    .btni.bcoRojo {
      color:#CC0000;
      background:none;
      border:#CC0000 2px solid;
      box-shadow:0px 4px 12px 0px rgba(131,23,15,0)
    }
    .btni.bcoRojo:before {
      /*background:linear-gradient(270deg, #899094 0%,#899094 100%);*/
      border:#CC0000 2px solid;
      /*box-shadow:0px -4px 10px 0px rgba(45,45,45,0.1) inset,4px 4px 14px 0px rgba(255,255,255,0) inset;*/
      opacity:0
    }
    .btni.bcoRojo:hover {
      color:#CC0000;
      border:none;
      /*box-shadow:0px 1px 2px 0px rgba(45,45,45,0.5);
      box-shadow:0px 4px 12px 0px rgba(131,23,15,0.5)*/
    }
    .btni.bcoRojo:hover:before {
      opacity:1
    }
    .btni.bcoNegro {
      color:#3C3C3C;
      background:none;
      border:#3C3C3C 2px solid;
      box-shadow:0px 2px 6px 0px rgba(45,45,45,0)
    }
    .btni.bcoNegro:before {
      background:#6c6c6c;
      border:none;
      box-shadow:0px -4px 10px 0px rgba(45,45,45,0.6) inset,4px 4px 14px 0px rgba(255,255,255,0.4) inset;
      opacity:0
    }
    .btni.bcoNegro:hover {
      color:#fff;
      border:none;
      box-shadow:0px 2px 6px 0px rgba(45,45,45,0.4)
    }
    .btni.bcoNegro:hover:before {
      opacity:1
    }
    .btni.bcoBco {
      color:#fff;
      background:none;
      border:#fff 2px solid;
      box-shadow:0px 2px 6px 0px rgba(45,45,45,0)
    }
    .btni.bcoBco:before {
      background:#fff;
      border:none;
      opacity:0
    }
    .btni.bcoBco:hover {
      color:#3C3C3C;
      border:none;
      box-shadow:0px 2px 6px 0px rgba(45,45,45,0.4)
    }
    .btni.bcoBco:hover:before {
      opacity:1
    }
    .btni.amarillo {
      color:#3C3C3C;
      background:#FFC721;
      box-shadow:4px 4px 14px 0px rgba(255,193,28,0.6) inset,0px -4px 10px 0px rgba(255,157,17,0.6) inset,0px 2px 6px 0px rgba(45,45,45,0)
    }
    .btni.amarillo:hover {
      color:#3C3C3C;
      background:#ffad17;
      box-shadow:4px 4px 14px 0px #ffc11c inset,0px -4px 10px 0px rgba(255,157,17,0.6) inset,0px 2px 6px 0px rgba(45,45,45,0.6)
    }
    .btni.amarillo:hover:before {
      opacity:0
    }
    .btni.bcoNegroTer {
      color:#3C3C3C;
      box-shadow:0px 2px 6px 0px rgba(45,45,45,0)
    }
    .btni.bcoNegroTer:before {
      opacity:1;
      border-color:transparent
    }
    .btni.bcoNegroTer:hover {
      color:#899094;
      box-shadow:0px 2px 6px 0px rgba(45,45,45,0.4)
    }
}

/* ================== Selector de LENGUAJE ===================== */
.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-selector button {
  background: transparent;
  border: none;
  color: #899094; /*  #899094; color igual al topbar */
  font-size: 0.85rem;
  cursor: pointer;
}

.lang-menu {
  display: none;              /* 🔴 inicialmente oculto */
  position: absolute;
  right: 0;
  top: 120%;
  background: #303030;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  min-width: 120px;
  z-index: 9999 !important; /*z-index: 2000;               que quede por encima */
}

.lang-menu li {
  padding: 8px 12px;
}

.lang-menu li a {
  color: #303030;
  font-size: 0.85rem;
  display: block;
}

.lang-menu li:hover {
  background: #B50000;
}

.lang-selector.open .lang-menu {
  display: block;             /* ✅ se muestra cuando el div.lang-selector tenga .open */
}

.topbar .right .lang-menu {
  display: none !important;
  color: #303030;
  background: #d8d7d7; !important;
}

.topbar .right .lang-selector.open .lang-menu {
  display: block !important;
}




/* Estilos para nueva barra responsiva */
.menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu > li {
  position: relative;
}
.menu > li > a {
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
}
.menu > li > a:hover,
.menu > li.open > a {
  background: #cc0000;
  color: #FFF;
  border-radius: 7px 7px 0 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  color: #303030;
  min-width: 180px;
  border-radius: 0 0 7px 7px;
  z-index: 10;
}
.dropdown.open .dropdown-content {
  display: block;
}
.dropdown-content li a {
  display: block;
  color: #303030;
  padding: 0.65rem 1.2rem;
  font-weight: 500;
}
.dropdown-content li a:hover {
  background: #a00000;
}
.menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #cc0000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 88vw;
    z-index: 4000;
    border-radius: 0 0 12px 0;
    padding: 1rem 0.5rem;
  }
  .navbar .menu.active {
    display: flex;
  }
  .menu-toggle {
    display: block !important;
  }
  .navbar-brand {
    margin-right:0 !important;
    padding-right: 1rem !important;
  }
  .menu > li {
    width: 100%;
  }
  .menu > li > a {
    width: 100%;
    border-radius: 8px;
  }
  .dropdown-content {
    position: static;
    min-width: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    margin-bottom: 0.6rem;
  }
}
