/* ******** Generales ********** */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

/* ********** Banner Principal ********** */
.banner img{
    width: 100%;
}


.header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f6f6;
  border-bottom: 1px solid #2309031f;
    z-index: 1000;
  }
  .header img {
    width: 170px;
  }

/* ********** Botón de llamada ********** */
.formContainer{
    min-height: 130px;
    background-color: #230903;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -5px;
}
.formulario{
    display: flex;
    justify-content: center;
    align-items: center;
}
.form__label label{
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
}
.form__label label span{
    color: #0578FF;
    font-weight: 600;
}
.form__input input{
    padding: 15px;
    font-size: 18px;
    margin-left: 30px;
    border: none;
    color: #230903;
    outline: none;
    border-radius: 5px;
}
.form__input input:focus{
    border-bottom: 1px solid #0578FF;
}
.form__input input:active{
    border:none;
}
.form__btn button{
    background-color: #0578FF;
    border: none;
    padding: 15px;
    font-size: 18px;
    margin-left: 20px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
    border-radius: 5px;
}
.form__btn button:hover{
    background-color: #0578FFe5;
}

.form__llamar h4{
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(0.75rem, 0.6779rem + 0.2685vw, 1rem);
    padding: 10px;
    text-align: center;
}
.form__llamar h4 a{
    color: #230903;
    font-weight: 600;
    cursor: pointer;

}

/* ********** Paquetes Cards ********* */
.paquetes__title{
 text-align: center;
 margin-top: 100px;
 margin-bottom: 50px;
 font-size: clamp(1.75rem, 1.2178rem + 1.9802vw, 3rem);
}
.paquetes__title span{
    color: #0578FF;
}
.paquetes{
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
/* Card */
.paquetes__card{
    max-width: 300px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 1px #56565640;
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 30px;
    border: 2px solid #0578FF;
}
/* Megas Section */
.paquetes_megas{
    color: #0578FF;
    text-align: center;
    /* border-top: 7px solid #0578FF; */
    border-radius: 30px 30px 0 0;
    border-bottom: 1px solid #0578FF;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 0;
}
.paquetes_megas h2{
    font-weight: 500;
    font-size: 20px;
}
.paquetes_megas h4{
    font-size: 36px;
    font-weight: 600;
}
.paquetes_megas p{
    font-size: 18px;
    font-weight: 500;
}
/* Xview section */
.paquetes__xview{
    width: 90%;
    margin: auto;
    margin-top: 25px;
}
.xview__logo{
    text-align: center;
    margin-top: 15px;
}
.xview__logo img{
    width: 70%;
}
/* Xview list Section*/
.xview__list{
    margin-top: 20px;
}
.xview__item{    
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
}
.xview__list ul{
    margin-left: 40px;
    list-style: none;
    list-style-image: url(assets/check-img2.png);
}

/*.xview__item::before{
    content: "✓";
    margin-right: 5px;
    color: #A200AF;
    font-size: 16px;
    position: relative;
    left: 0;
}*/

/* Xview  Max Section*/
.promo_paquete{
    text-align: center;
    margin-top: 20px;
    margin: 0 7px;
    border-bottom: 1px solid #0578FF;
    padding: 10px 0 30px 0;
    margin-top: 20px;
}



.xview__max img{
    width: 100%;
}
.promo_paquete img{
    width: 100%;
    margin-top: 20px;
}
sup{
    font-size: 12px;
}

/*  Megamovile Section */
.paquetes__megamovil img{
    width: 100%;
}

/* Precio Section */
.paquetes__precio{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.precio__num{
    font-size: 40px;
    margin-right: 10px;
    font-weight: 600;
}
.precio__mes{
    font-size: 12px;
    font-weight: 500;
}

/* BTN POPUP */
.btn_pop{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.btn_popup{
    background-color: #0578FF;
    border: 1px solid #0578FF;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.btn_popup:hover{
    background-color: #000000;
    border: 1px solid #000000;
}

/* ********** Botón de llamada 2 ********* */
.formContainer__f{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 170px;
    margin-bottom: 100px;
    padding-left: 15px;
    padding-right: 15px;
}
.formulario__f{
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
}
.label__f{
    font-size: clamp(1.75rem, 1.6436rem + 0.396vw, 2rem);
    font-weight: 600;
    margin-bottom: 15px;
}
.label__f span{
    color: #0578FF;
    font-weight: 600;
}

.btn__f input{ 
    padding: 15px;
    outline: none ;
    font-size: 16px;
    width: 100%;
    border: 1px solid #230903;
    border-radius: 5px;

}
.btn__f input:focus{
    border: 1px solid #0578FF;
}
.btn__f{
    display: flex;
}
.btn__f button{
    background-color: #230903;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease;
}
.btn__f button:hover{
    background-color: #000000df;
}

.btn_cont{
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 1px #56565640;
    width: 700px;
    margin: auto;
    border-radius: 15px;
    margin-top: 130px;
    margin-bottom: 130px;
    padding: 20px;
}
.btn_cont .formulario__f{
    width: 100%;
}

/* Estilos para el popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
    position: relative;
}
.formulario__pop{
    text-align: left;
}

/* Estilo para el botón de cerrar */
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
}



/* ********** Footer ********* */
.footer__container{
    margin-top: 50px;
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
}
.footer__megaImg img{
    width: 80px;
}
.footer__social{
    margin-top: 20px;
}
.footer__social a{
     font-size: 24px;
     margin-left: 5px;
     margin-right: 5px;
     color: #ffffff;
}
.footer__social a:hover{
    opacity: 0.7;
}
.footer__atencion{
    width: 80%;
}
.footer__atencion h4{
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    color: #ffffff;
}
.footer__atencion h4 a{
    font-weight: 600;
    color: #ffffff;
}

.footer__legal{
    width: 80%;
    border-top: 1px solid #ffffff;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.footer__legal a{
    display: inline-block;
    margin: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    margin: 10px 20px; 
}
.footer__legal a:hover{
    text-decoration: underline;
}
.img-wifiultra{
    width: 75%;
}
.velocidad-promo-txt{
    font-size: 20px;
    font-weight: 500;
    margin-top: 5px;
}
/* Responsive */
@media screen and (max-width:767px){
    .formulario{
        flex-direction: column;
        padding: 30px 20px;
        width: 100%;
    }
    .form__label label{
        display: inline-block;
        margin: 0;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    .form__input{
        width: 100%;
        text-align: center;
    }
    .form__input input{
        width: 90%;
        margin: 0 ;
        
    }
    .form__btn{
        width: 100%;
        text-align: center;
    }
    .form__btn button{ 
        width: 90% ;
        margin: 0;
        margin-top: 10px;
    }

    .footer__legal{
        padding-top: 15px;
    }
    .footer__legal a{
        margin-top: 0;
    }
    .footer_atencion h4{
        font-size: 14px;
    }
    .paquetes__card{
        margin-left: 0;
        margin-right: 0;
    }
    .paquetes{
        max-width: 89% !important;
    }
    .formContainer__f{
        margin-top: 80px ;
        margin-bottom: 80px;
    }
    .paquetes__title{
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .footer__legal{
        flex-wrap: wrap;
    }
    .btn__f button{
        margin-left: 0;
        margin-top: 10px;
    }
    .btn__f input{
        width: 100%;
    }
    .btn__f{
        flex-direction: column;
    }
    .popup-content{
        margin: 0 10px;
    }
    .btn_cont{
        width: 90%;
        padding: 0;
    }
    .banner-pc{
        display: none;
    }    
    
}


@media screen and (min-width:768px){
    .banner-mov{
        display: none;
    }
    
}





