*{
    font-family: 'arkibal_display_ltlight';
}

html {
  scroll-behavior: smooth;
}

.nav-link,
.dropdown-item,
.dropdown-menu h6{
    font-family: 'arkibal_displayregular';
    font-weight: lighter;

}

.mt-50{
    margin-top: 50px !important;
}

.mb-50{
    margin-bottom: 50px !important;
}

.mt-100{
    margin-top: 100px !important;
}

.mb-100{
    margin-bottom: 100px !important;
}

.iconos-descrip{
    width: 100%;
    max-width: 10%;
}

/*TITULO PLANES*/


.contenedor-banner-titulo{
    width: 100%;
    max-width: 80%;

    margin: auto;

    display: flex;

    justify-content: center;
}


.contenedor-banner-titulo img{
    width: 100%;
    max-width: 95%;

    margin: auto;

    border-radius: 35px;
}

.contenedor-titulo-planes-xgs-pon{
    width: 100%;
    max-width: 50%;

    margin: auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.contenedor-titulo-planes-xgs-pon h1 {
    font-family: 'arkibal_displayheavy';
}

.contenedor-titulo-planes-xgs-pon p {
    font-family: 'arkibal_display_ltlight';
    font-weight: bolder;

    color: #868686;

    text-align: center;
}

/*TITULO PLANES*/


/*ESTILO PLANES*/

/* ===== CONTENEDOR GENERAL ===== */

.contenedor-planes-xgs-pon{
    max-width: 1200px;
    margin: 80px auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

/* ===== CARD BASE (SIN FONDO) ===== */
.item-xgs{
    position: relative;
    width: 320px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    z-index: 1;
}

/* ===== CAPA BLANCA REAL DE LA CARD ===== */
.item-xgs::after{
    content: "";
    position: absolute;
    inset: 0;

    background: #fff;
    border-radius: 30px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);

    z-index: 1;
}

/* ===== TODO EL CONTENIDO ARRIBA ===== */
.item-xgs > *{
    position: relative;
    z-index: 2;
}

/* ===== PLAN DESTACADO (ELEVAR CARD) ===== */
.item-xgs:nth-child(2){
    transform: translateY(-20px);
}

/* ===== BADGE "MÁS POPULAR" ATRÁS DE TODO ===== */
.item-xgs:nth-child(2)::before{
    content: "★ Más popular";

    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);


    width: calc(100% + 0px);
    height: 100px;

    background: #EFF5FC;
    color: #4A6485;

    display: flex;
    align-items: top;
    justify-content: center;

    padding: 15px;
    border-radius: 30px 30px 0 0;

    font-size: 16px;
    font-weight: 700;

    z-index: 0;

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ===== HEADER GRIS DEL PLAN ===== */
.contenedor-info-planes{
    background-color: #F1F1F1;
    border-radius: 22px;
    padding: 10px 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.item-xgs:nth-child(2) .contenedor-info-planes{
    background: linear-gradient(180deg,rgba(241, 241, 241, 1)0%, rgba(239, 245, 252, 1) 80%);
}


.titulo-plan{
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;

    background-color: #fff;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 20px;
}

.monto-plan{
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.periodo{
    color: #555;

    font-size: 12px;
}

/* ===== TOGGLE REPETIDOR ===== */
.toggle-repetidor{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 20px 0;
  border-top: 1px solid #ccc;
  padding-top: 16px;
}

.toggle-info{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 80%;
}

.toggle-info p {
    font-size: 12px !important;
}

.contenedor-img-repetidor{
    background-color: #00365f;
    border-radius: 50%;
}

.img-repetidor{
    width: 100%;
    margin: auto;

    padding: 10px;
}

/* ===== BOTÓN ===== */
.btn-contratar{
    background-color: #00365f;

    padding: 8px 50px 8px 50px;
    margin: 0px 0 20px 0;
    border-radius: 30px;
    border: none;

    width: 100%;
    max-width: 100%;

    text-align: center;
    text-decoration: none;

    color: #fff;
    font-weight: bolder;

    transition: transform 0.3s;
}

/* ===== ACCORDION ===== */
.acordion{
    width: 100%;
}

.accordion-button{
    background: transparent;
    box-shadow: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #00365f;
}

.accordion-button:not(.collapsed){
    background: transparent;
    box-shadow: none;
}

/* ===== DETALLES ===== */
.texto-detalles{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-to-mesh{
    text-decoration: none;
    color: #000;

    margin-bottom: 16px;

    transition: 
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.link-to-mesh:hover{
    transform: translateY(-5px);
    color: #00365f;
}

/* ===== CAROUSEL MOBILE ===== */

.contenedor-btn-carousel{
    display: flex;
    flex-direction: row;

    justify-content: end;
}

.carousel-button {
    background-color: #E0E0E3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #6A6A6C;

    border: 1px solid #ccc;
    border-radius: 50%;

    width: 40px;
    height: 40px;

    margin: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 1;

    transition: background-color 0.3s, transform 0.3s;
}


/*ESTILO PLANES*/


/*ESTILO CARACTERISTICAS*/

.contenedor-caracteristicas-destacadas{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    background-color: #EFF5FC;
    padding: 50px 100px;
}

.contenedor-caracteristicas-destacadas h2{
    margin-bottom: 25px;
    font-size: 43px;
}

.letras-bold{
    font-family: 'arkibal_displayheavy';
}

.parrafos-xgs{
    width: 100%;
    max-width: 55%;
}

.parrafos-xgs p{
    border-bottom: 1px solid #aaa;
    margin: 15px;
}

.contenedor-img-caracteristicas{
    display: flex;
    justify-content: end;

    width: 100%;
    max-width: 45%;
}

.contenedor-img-caracteristicas img{
    width: 100%;
    max-width: 90%;

}

/*ESTILO CARACTERISTICAS*/


/*ESTILO RECOMENDACIONES*/

.contenedor-recomendaciones{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 80%;

    margin: auto;
}


.contenedor-box{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap; /* responsive */
}


.box{
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    width: 320px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    display: flex;
    flex-direction: column;
    gap: 15px;
}


.box h3{
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000;

    margin-bottom: 20px;
}


.box p{
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

/*ESTILO RECOMENDACIONES*/


/*ESTILO REVOLUCION*/

.contenedor-revolucion{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    background-color: #EFF5FC;
    padding: 50px 100px;
}

.contenedor-revolucion h2{
    margin-bottom: 25px;
    font-size: 43px;
}

.letras-bold{
    font-family: 'arkibal_displayheavy';
}

.parrafos-xgs{
    width: 100%;
    max-width: 60%;
}

.parrafos-revolucion p{
    margin: 0 !important;
}

.contenedor-img-revolucion{
    display: flex;
    justify-content: end;

    width: 100%;
    max-width: 40%;
}

.contenedor-img-revolucion img{
    width: 100%;
    max-width: 100%;
}

/*ESTILO REVOLUCION*/


/* ESTILOS FORMULARIOS CONTRATACIÓN */
.contenedor-cuerpo-btn{
    display: flex;
    flex-direction: column;

    justify-content: center;
}

.contenedor-btn-close{
    width: 100%;

    display: flex;
    justify-content: flex-end;
}

.titulo-opc-btn-contratar{
    color: #00365f;
    text-align: center;
    font-weight: bolder;
}

.grupo-btn-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 50px 0px 50px 0px;
}

.contenedor-dataclient{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
    width: 100%;
    max-width: 80%;

    text-align: start;
}

.contenedor-dataclient label{
    width: 100%;
    max-width: 90%;

    font-size: 12px;

    font-family: 'arkibal_display_ltlight';
    font-weight: bold;

    margin: 0 !important;

    color: #868686;
}

.contenedor-dataclient input{
    width: 100%;
    max-width: 10%;
}

.input-error-data{
    color: red !important;
}


.btn-forms-llamada{
    background-color: #00365f;

    padding: 8px 50px 8px 50px;
    margin: 0px 0 20px 0;
    border-radius: 30px;
    border: none;

    color: #fff;

    transition: transform 0.3s;
}

.btn-contratar:hover,
.btn-forms-llamada:hover{
    transform: translateY(-8px);
}

.contenedor-titulo-form-llamada{
    width: 100%;
    max-width: 85%;
}

.contenedor-form-llamada{

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: start;

    width: 100%;

}

.label-form-llamada{
    font-size: 1rem;

    font-family: 'arkibal_display_ltlight';
    font-weight: bolder;

    padding: 10px 0;

    color: #002942;

    margin-top: 30px;

}

.input-form-llamada{
    border: none;
    background-color: #ECECEC;

    padding: 10px;

    width: 100%;

    margin-bottom: 30px;
}

.contenedor-form-planes{
    margin: 20px;
    margin-top: 0px;
    text-align: center;
}

.titulo-form {
    font-size: 25px;
    font-family: 'arkibal_displayheavy';
    color: #00365f;

    line-height: 1 !important;

    margin-bottom: 0;
  }
  

.form-planes{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenedor-inputs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 16px;
    width: 100%;
    max-width: 80%;
}

.contenedor-inputs label{
    color: #868686;
}

.contenedor-inputs input{
    width: 100%;
    border: none;
    background: none;
    outline: 0;
    border-bottom: 1px solid #002942;
}

.boton-enviar{
    color: #fff;
    font-size: 1em;
    background-color: #00365f;
    border-radius: 30px;
    border: none;
    padding: 0.5em 2em;
    text-decoration: none;
    justify-content: flex-end!important;

}

.boton-enviar:hover{
    background-color: #00365f;
}


.boton-enviar {
    cursor: pointer;
    position: relative;
    padding: 5px 40px;
    font-size: 16px;
    color: #00365f;
    border: 2px solid #00365f;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.boton-enviar::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #00365f;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.boton-enviar:hover::before {
    scale: 3;
}

.boton-enviar:hover {
    color: #fff;
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(0, 54, 95,0.4);
}

.boton-enviar:active {
    scale: 1;
}

.input-error{
    border-bottom: 1px solid red !important;
}

.error-message{
    color: red;
}
  
.style-select{
    margin-top: 16px;
    width: 100%;
    border: none;
    background: none;
    outline: 0;
    text-align: center;
    border-bottom: 1px solid #002942;
    color: #00365f;
}

.style-modal-success{
    border: none !important;
    background-color: #F1F1F1 !important;
}

.btn-cerrar-success {
    cursor: pointer;
    position: relative;
    padding: 5px 40px;
    font-size: 16px;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.btn-cerrar-success::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #ff0000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-cerrar-success:hover::before {
    scale: 3;
}

.btn-cerrar-success:hover {
    color: #fff;
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(255, 0, 0,0.4);
}

.btn-cerrar-success:active {
    scale: 1;
}

.msj-recibido{
    font-size: 25px ;
    color: #002942;
    font-family: 'arkibal_displayheavy';
}

.responder{
    font-size: 18px;
    color: #002942;
    font-family: 'arkibal_display_ltlight';
    font-weight: bold;
}

.banner-success{
    width: 100%;
    max-width: 20%;
}

/* Toggle Switch Estilo */

.toggle-repetidor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 20px 0;
  padding-top: 16px;
}

.toggle-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 80%;
}

.body-duo .toggle-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 80%;
}

.toggle-info p {
    font-size: 15px;
    margin: 0px;

    font-family: 'arkibal_display_ltlight';
    font-weight: bolder;
}

.contenedor-img-repetidor{
    border-radius: 50%;
    background-color: #00365f;
}


.img-repetidor {
  width: 100%;
  margin: auto;

  padding: 10px;
}

/* Toggle Switch Estilo */
.body-duo .contenedor-switch{
    width: 100%;
    max-width: 20%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #BABABA;
  transition: 0.4s;
  border-radius: 34px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #00365f;
}


input:checked + .slider::before {
  transform: translateX(20px);
}

.body-duo .contenedor-btn-carousel{
    display: none;
}


/* ============================= */
/* ======== RESPONSIVE ========= */
/* ============================= */

/* Tablets grandes y hacia abajo */
@media (max-width: 1024px) {
    .contenedor-planes-xgs-pon {
        gap: 40px;
        padding: 0 20px;
    }
}

/* Tablets / móviles grandes */
@media (max-width: 768px) {
    .contenedor-planes-xgs-pon {
        display: flex;
        flex-wrap: nowrap;

        margin: auto;
        padding-bottom: 50px;

        max-width: 90%;
        gap: 50px; 

        justify-content: flex-start;
    }

    .contenedor-carousel-planes{
        width: 100%;
        max-width: 90%;

        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;

        /* esconder scrollbar */
        scrollbar-width: none;
        margin: auto auto 10px auto;
    }

    .item-xgs {
        width: 100%;
        max-width: 380px;

        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .contenedor-banner-titulo{
        max-width:90%;

        margin: auto;
        padding: 0px;
    }

    .contenedor-banner-titulo img{
        max-width: 100%;
    }

    .contenedor-titulo-planes-xgs-pon {
        max-width: 100%;
    }

    .contenedor-titulo-planes-xgs-pon h1 {
        text-align: center;

        margin-bottom: 25px;
    }

    .monto-plan {
        font-size: 24px;
    }

    .texto-detalles {
        font-size: 13px;
    }

    .contenedor-caracteristicas-destacadas{
        max-width: 100%;
        flex-direction: column;

        gap: 50px;
        padding: 25px;
    }

    .contenedor-caracteristicas-destacadas h2{
        font-size: 30px;

        text-align: center;
    }

    .parrafos-xgs{
        max-width: 100%;
    }

    .contenedor-img-caracteristicas{
        max-width: 100%;
    }

    .contenedor-revolucion{
        max-width: 100%;
        flex-direction: column;

        gap: 50px;
        padding: 25px;
    }

    .contenedor-revolucion h2{
        font-size: 30px;

        text-align: center;
    }

    .parrafos-xgs{
        max-width: 100%;
    }

    .contenedor-img-revolucion{
        max-width: 100%;
    }

    .contenedor-recomendaciones{
        max-width: 100%;

        flex-direction: column;
    }

    .contenedor-recomendaciones h2{
        font-size: 30px !important;
        text-align: center;
    }
}

/* Móviles medianos */
@media (max-width: 560px) {

    .contenedor-banner-titulo,
    .contenedor-banner-titulo img{
        max-width:100%;
        
        border-radius: 0;
    }

    .item-xgs {
        padding: 16px;
    }

    .monto-plan {
        font-size: 28px;
    }

    .btn-contratar {
        padding: 10px 0;
    }

    .item-xgs:nth-child(2)::before {
        font-size: 14px;
        height: 80px;
    }
}

/* ================================
   MOBILE MINI (320px)
   ================================ */
@media (max-width: 320px) {

}
