﻿@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Quicksand:wght@300;400;500;600;700&display=swap');
html {
    scroll-behavior: smooth;
}
textarea:focus, input:focus {
    outline: none !important;
}
*:focus {
    outline: none !important;
    border-color: inherit !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.OverFlowHidden {overflow:hidden !important;}
button {
    outline: none;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}
.Lato {
    font-family: 'Lato', sans-serif;
}
.QuickSand {
    font-family: 'Quicksand', sans-serif;
}
.Normal {
font-weight:normal;
}
.Bold {
font-weight:bold;
}
.Extra_Bold {
    font-weight: bolder;
}
.SemiBold {
    font-weight: 600;
}
.Light {
    font-weight:300;
}
.Blanco {
    color: #ffffff !important;
}
.Amarillo {
    color: #e8c203 !important;
}
.Negro {
    color: #191919 !important;
}
.Violeta{
    color: #292346 !important;
}
.Celeste {
    color: #00acfb !important;
}
.GrisOscuro {
    color: #605a88 !important;
}
.GrisClaro {
    color: #7c7c7c !important;
}
.Naranja {
    color: #f89c1a !important;
}
.Azul {
    color: #0173ae !important;
}
.AzulOscuro {
    color: #070d81 !important;
}
.FondoGrisClaro {
    background-color: #f4f7f9;
}
.FondoGrisOscuro {
    background-color: #e5e8e9;
}
.FondoGris3Btns {
    background-color: #f4f7f9;
}
.TextoLineaHeader {
    font-size: 14px;
    line-height: 18px;
    letter-spacing:1px;
}
.TextoMenuHeader {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
}
.TextoForm {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
}
.TextoDetalleForm {
    font-size: 11px;
    line-height: 15px;
}
.TextoTitulares {
    font-size: 40px;
    line-height: 44px;
}
.TextoSubtitulos {
    font-size: 28px;
    line-height: 32px;
}
.TextoCostoPlan {
    font-size: 52px;
    line-height: 56px;
}
.TextoContenidoPlanes {
    font-size: 16px;
    line-height: 20px;
}
.TextoBtnContratar {
    font-size: 20px;
    line-height: 24px;
}
.TextoCanalesPremium {
    font-size: 50px;
    line-height: 54px;
}
.TextoContenido {
    font-size: 24px;
    line-height: 28px;
}
.TextoContenidoChico {
    font-size: 18px;
    line-height: 22px;
}



/*NAV*/
.custom-navbar {
    background-color: #333; /* Cambia el color de fondo del navbar según tu preferencia */
}

    .custom-navbar .navbar-brand {
        color: white; /* Cambia el color del texto del logo */
    }

    .custom-navbar .navbar-nav .nav-link {
        color: white; /* Cambia el color del texto de los enlaces del navbar */
    }

/* Estilos para hacer el navbar sticky cuando se hace scroll */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Elimina el margen superior del body */
body {
    margin: 0;
    padding: 0;
}

/*Generales*/
.full-height {
    height: 100vh;
}
/* Clase personalizada para el primer slide con imagen de fondo */
.first-slide {
    /*background-image: url('../images/Slider1_v2.webp');*/
    background-image: url('../images/Slider1_v4.webp'); /* Ruta a tu imagen de fondo */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white; /* Cambia el color del texto para que sea legible en la imagen de fondo */
    min-height: 100vh; /* Establece un mínimo de alto del 100% de la pantalla */
}
.Logo_Header {
    padding: 20px 0 20px 0;
}
.FondoAzul_Header {
    background-color: #0173ae;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}
.navbar-dark{
    background-color:#000000;
}
/* Aplicar efecto de subrayado animado al pasar el mouse y al elemento con la clase MenuActivo */
.navbar-nav .nav-item .nav-link {
    position: relative;
    text-decoration: none;
}

    .navbar-nav .nav-item .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 4px;
        background-color: #0173ae;
        transition: width 0.5s ease;
    }

    /* Efecto de subrayado al pasar el mouse */
    .navbar-nav .nav-item .nav-link:hover::before {
        width: 97%;
    }

    /* Efecto de subrayado para el elemento con la clase MenuActivo */
    .navbar-nav .nav-item .nav-link.MenuActivo::before {
        width: 97%;
    }

.RecuadroForm {
    background-color: rgba(224, 224, 234, 0.8); /* Ajusta el valor alfa (0.8) para la transparencia */
    border-radius: 25px;
}
.inputForm {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 10px 25px 10px 25px;
    border: 2px solid transparent; /* Establece un borde inicial transparente */
}

    .inputForm:focus {
        border: 2px solid #0173ae; /* Cambia el borde al color deseado cuando el campo está activo */
    }
.form-label {
    margin-left: 25px; /* Ajusta el valor según el margen que desees */
}
.BtnForm {
    background-color: #000000;
    border-radius: 25px;
    padding: 10px 50px;
    color: #ffffff;
    border: solid 2px transparent;
    transition: background-color 1s, color 1.5s; /* Agregamos la propiedad de transición */
}
    .BtnForm:hover {
        background-color: #ffffff;
        color: #000000;
        border: solid 2px #000000;
    }

    .BtnForm:focus {
        outline: none; /* Para quitar el borde predeterminado del enfoque */
        background-color: #ffffff;
        color: #000000;
        border: solid 2px #000000;
    }

    .BtnForm:active {
        background-color: #ffffff;
        color: #000000;
        border: solid 2px #000000;
    }


.BtnContratar {
    background-color: #ffc60c;
    border-radius: 25px;
    padding: 10px 50px;
    color: #000000;
    border: solid 2px transparent;
    transition: background-color 1s, color 1.5s; /* Agregamos la propiedad de transición */
}

    .BtnContratar:hover {
        background-color: #ffffff;
        border: solid 2px #ffc60c;
    }

    .BtnContratar:focus {
        outline: none; /* Para quitar el borde predeterminado del enfoque */
        background-color: #ffffff;
        border: solid 2px #ffc60c;
    }

    .BtnContratar:active {
        background-color: #ffffff;
        border: solid 2px #ffc60c;
    }
.TextoConSombra {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Ajusta los valores según tu preferencia */
}
.TextoTitulares {
    font-size: 30px;
    line-height: 34px;
}

.TextoSubtitulos {
    font-size: 22px;
    line-height: 26px;
}
.separador {
    height: 2px;
    background-color: #0173ae;
    width: 10%;
    margin-left: auto;
    margin-right: auto;
}
.zoom-hover {
    transition: transform 0.2s ease; /* Transición para el agrandamiento */
}
.zoom-hover:hover {
    transform: scale(1.1); /* Agrandamos el elemento al 110% */
    transition: transform 0.2s ease; /* Transición para el agrandamiento */
}
.DegradePlanes {
    background: rgb(34, 34, 97);
    background: linear-gradient( 180deg, rgba(34, 34, 97, 1) 0%, rgba(0, 89, 146, 1) 100% );
    border-radius: 25px;
    height: 100%; /* Ajusta la altura según tus necesidades */
    position: relative; /* Permite posicionar el div interno con respecto a este contenedor */
}
.ImgCucarda {
    background-image: url('../images/Img_Cucarda.png');
    background-repeat: no-repeat;
    background-size: contain; /* Ajusta el tamaño de la imagen */
    background-position: top left; /* Alinea la imagen arriba y a la izquierda */
    width: 192px;
    height: 194px;
    position: absolute; /* Permite posicionar la imagen dentro del contenedor */
left:-21px;
top:-18px;
}
.ImgCucarda_2 {
    background-image: url('../images/Img_Cucarda_v2.png');
    background-repeat: no-repeat;
    background-size: contain; /* Ajusta el tamaño de la imagen */
    background-position: top left; /* Alinea la imagen arriba y a la izquierda */
    width: 140px;
    height: 140px;
    position: absolute; /* Permite posicionar la imagen dentro del contenedor */
    left: -16px;
    top: -13px;
}
.DivRelativo {
position:relative;
}
.Shadow-Planes {
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.Redondeado {
border-radius:25px;
}
.RedondeadoChico {
    border-radius: 10px;
}
.FondoCanalesPremium {
    background: rgb(72,72,71);
    background: radial-gradient(circle, rgba(72,72,71,1) 0%, rgba(0,0,0,1) 100%);
}

.FondoPorQue {
    background: rgb(2,91,149);
    background: linear-gradient(120deg, rgba(2,91,149,1) 0%, rgba(0,144,195,1) 100%);
}
.IconoWhatsApp {
    width: 149px;
}
#BtnWhatsApp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999 !important;
}
.PromoDestacada {
    transform: scale(1.1); /* Agrandamos el elemento al 110% */
}
.PromoChica {
    transform: scale(0.9); /* Agrandamos el elemento al 110% */
}


@media (max-width: 1440px) {
}
@media (max-width: 1280px) {
    .first-slide {
        background-position: 35% 100%;
    }
    .TextoBtnContratar {
        font-size: 16px;
        line-height: 20px;
    }
    .BtnContratar {
        padding: 10px 30px;
    }
            
}
@media (max-width: 1263px) {

    .full-height {
        height: 115vh;
    }
    .first-slide {
        min-height: 115vh; /* Establece un mínimo de alto del 100% de la pantalla */
    }
}
@media (max-width: 1190px) {
    .first-slide {
        min-height: 100vh; /* Establece un mínimo de alto del 100% de la pantalla */
    }
}
@media (max-width: 992px) {
    
}
@media (max-width: 850px) {
       
}
@media (max-width: 768px) {
    .Logo_Header {
        padding: 5px 0;
    }    
.navbar-expand-lg .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #343a40; /* Color de fondo para el menú */
    }

    .navbar-toggler {
        position: absolute !important; /* Usa !important para asegurarte de que se apliquen tus estilos */
        right: 15px; /* Alinear a la derecha */
        top: 50%; /* Centrar verticalmente */
        transform: translateY(-50%); /* Centrar verticalmente */
    }
    .TextoLineaHeader {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: .5px;
    }
    .separador {
        width: 70%;
    }
    .TextoCostoPlan {
        font-size: 54px;
        line-height: 58px;
    }
    .TextoCanalesPremium {
        font-size: 30px;
        line-height: 34px;
    }
    .TextoContenido {
        font-size: 20px;
        line-height: 24px;
    }
    .TextoContenidoChico {
        font-size: 14px;
        line-height: 18px;
    }
    .IconoWhatsApp {
        width: 100px;
    }
    .PromoDestacada {
        transform: scale(1); /* Agrandamos el elemento al 110% */
    }

    .PromoChica {
        transform: scale(1); /* Agrandamos el elemento al 110% */
    }
    .TextoConSombra {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ajusta los valores según tu preferencia */
    }
    
}
@media (max-width: 500px) {
    .first-slide {
        min-height: 820px; /* Establece un mínimo de alto del 100% de la pantalla */
        background-position: 40% 50%;
    }
    .full-height {
        height: 820px;
    }
    .IconoWhatsApp {
        width: 70px;
    }
    #BtnWhatsApp {
        bottom: 0px;
        right: -10px;
    }
}
@media (max-width: 411px) {
    
    
}

@media (max-width: 280px) {

    .first-slide {
        min-height: 820px; /* Establece un mínimo de alto del 100% de la pantalla */
        background-position: 41% 50%;
    }
}