/* -----------------FUENTES---------------- */
@font-face{
    font-family:'HelveticaLT';
    src: url("../fonts/HelveticaLTStd-Roman.otf") format("opentype");
    src: url("../fonts/Helvetica-LT-Std-Roman.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/* --------------COLORES----------------- */
.primario{
    color: #40a6d4;
}

.secundario{
    color: #fcf473;
}
.azul{
    color:#4899ff;
}
.verde{
    color:rgb(9, 250, 61);
}
html, body {
    height: 100% !important;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh !important;
    font-family: 'HelveticaLT';
    font-size: 1rem;
}

main {
    flex: 1; /* Esto hace que el contenido crezca y empuje el footer */
}

footer {
    margin-top: auto; /* Esto fija el footer abajo */
}
header{
    background: -prefix-linear-gradient(top bottom, #6d9dd9, #386ab0); 
    background: linear-gradient(to bottom, #6d9dd9, #386ab0);
    position: relative;
    z-index: 1000;
}
.fixed{
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    z-index: 200;
}

#logo{
    width: 100px !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
}

.navbar{
    height: 100%;
    padding: 0px;
    background: none;
    align-items: center;
}
#navbarSupportedContent{
    height: 100%;
}
.navbar-nav{
    height: 100%;
}

/* En desktop, mantener flex */
@media (min-width: 768px) {
    #navbarSupportedContent{
        display: flex;
        align-items: center;
    }
    .navbar-nav{
        display: flex;
        align-items: center;
    }
}
.navbar ul li a{
    color:#fff !important;
    font-size: 0.8rem;
    text-align: center;
    font-weight:400;
    height: auto;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-right: 10px;
}
.navbar ul li a:hover{
    background: #6898D5;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 500ms ease;
}
 .navbar-toggler{
    border-color: rgb(240, 240, 240);
    color:#fff; 
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(240,240,240, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

#telefono{
    display:none;
}

.navbar-nav h5{
    display: block;
    text-align: center;
    border-top:1px solid #ccc;
    padding-top:10px;
    color: yellow;
}

.navbar-nav a{
    color:#fff;
}

/* Asegurar que el dropdown tenga z-index apropiado */
.dropdown-menu {
    z-index: 1001 !important;
}

/* Estilo simple para "Paga tu servicio" */
.navbar-nav .nav-link[title="Paga tu servicio"] {
    background: #28a745 !important;
    color: #fff !important;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #20c997;
}

.navbar-nav .nav-link[title="Paga tu servicio"]:hover {
    background: #218838 !important;
    color: #fff !important;
    border-color: #1e7e34;
}

.navbar-nav .nav-item {
    isolation: isolate;
    position: relative;
}

/* Estilo específico para el último elemento (Contactanos) */
.navbar-nav .nav-item:last-child .nav-link {
    margin-left: 1rem;
    border: 1px solid transparent;
}

/* Animación de pulso sutil */
@keyframes subtle-pulse {
    0% {
        box-shadow: 0 2px 8px rgba(40, 167, 69, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 3px 12px rgba(40, 167, 69, 0.4);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 2px 8px rgba(40, 167, 69, 0.25);
        transform: scale(1);
    }
}

/* Animación de rebote para el badge */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Efecto de brillo que pasa por el botón */
.navbar-nav .special-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
    border-radius: 25px;
}

.navbar-nav .special-service:hover::before {
    left: 100%;
}


#banner{
    background: #fff;
    position: relative;
    width: 100% !important;
    margin-bottom: 50px;
    height: 400px; /* Altura fija para el banner */
    overflow: hidden;
    z-index: 1; /* Muy bajo para que el dropdown aparezca encima */
}

/* Estilos para el carrusel con altura fija */
#carouselExampleIndicators {
    height: 100%;
}

#carouselExampleIndicators .carousel-inner {
    height: 100%;
}

#carouselExampleIndicators .carousel-item {
    height: 100%;
}

#carouselExampleIndicators .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene aspecto y cubre todo el contenedor */
    object-position: center; /* Centra la imagen */
}

/* Estilos para los controles del carrusel */
#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

#carouselExampleIndicators .carousel-control-prev:hover,
#carouselExampleIndicators .carousel-control-next:hover {
    opacity: 1;
}

/* Estilos para los indicadores */
#carouselExampleIndicators .carousel-indicators {
    bottom: 20px;
}

#carouselExampleIndicators .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
}

#carouselExampleIndicators .carousel-indicators .active {
    background-color: #fff;
}

.carousel-caption h5{
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Mejor legibilidad del texto */
}

/* .banner-content{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: rgb(0, 22, 40, .5);
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
}
.banner-content h1{
    font-family: 'Oswald';
    margin: 0;
    padding: 0;
    font-size: 1.9rem;
    text-align: center;
} */

#canales{
    /*padding: 100px 0px;*/
    /* position:absolute;
    top:200px; */
}
#paquetes{
    text-align: center;
    background: #e6e6e6;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 1rem;
}
#paquetes h2{
    font-family: Oswald;
}
#paquetes h3{
    font-weight: 400;
}
.paquetes{
    margin: 20px 0px;
}
.precio{
    font-weight: 600;
    font-size: 2.5rem;
}
.precio .peso{
    font-size: 1rem;
    vertical-align:super;
}
.precio .min{
    font-size: 1rem;
    bottom:0px;    
}
#basicotv{
    position: relative;
    background: #ecbd1a;
    height: 260px;
    padding:20px 5px 5px 5px;
    color:#fff;
    border-top-left-radius: .65rem!important;
    border-top-right-radius: .65rem!important;
    text-align: center;
}
#basicotv a{
    color: #ecbd1a;
}
#basicotv p{
    margin-bottom: 0px;
}

#basicointernet{
    position: relative;
    background: #40a6d4;
    height: 260px;
    padding:20px 5px 5px 5px;
    color:#fff;
    border-top-left-radius: .65rem!important;
    border-top-right-radius: .65rem!important;
}
#basicointernet a{
    color: #40a6d4;
}
#basicointernet p{
    margin-bottom: 0px;
}

#basicotvinternet{
    position: relative;
    background:#2b3946;
    height: 260px;
    padding:20px 5px 5px 5px;
    color:#fff;
    border-top-left-radius: .65rem!important;
    border-top-right-radius: .65rem!important;
}
#basicotvinternet a{
    color: #2b3946;
}
#basicotvinternet p{
    margin-bottom: 0px;
}

#plustvinternet{
    position: relative;
    background:#3e6ebc;
    height: 260px;
    padding:20px 5px 5px 5px;
    color:#fff;
    border-top-left-radius: .65rem!important;
    border-top-right-radius: .65rem!important;
}
#plustvinternet a{
    color: #3e6ebc;
}
#plustvinternet p{
    margin-bottom: 0px;
}

.btnquiero{
    bottom: 10px !important;
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0px 5px 2.5px;
    display: block;
    width: 95%;
    background: #fff;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(145, 145, 145, 0.65);
    -moz-box-shadow: 0px 3px 5px 0px rgba(145, 145, 145, 0.65);
    box-shadow: 0px 3px 5px 0px rgba(145, 145, 145, 0.65);
}
.beneficios{
    display: block;
    background: #fff;
    padding: 15px 10px;
    border-bottom-left-radius: .65rem!important;
    border-bottom-right-radius: .65rem!important;
    font-size: 1.1rem;
}
.beneficios .leyenda{
    font-weight: 800;
    font-size: 1rem;
}
.beneficios ul{
    padding: 0px;
}
.beneficios ul li{
    list-style: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0px;
}
.beneficios .text-danger{
    font-weight: 700;
}

#premium{
    background: #c5052d;
    padding: 30px 5px;
    color:#fff;
    padding-top: 0px;
    padding-bottom: 0px;
    /* max-height: 380px */
}

#sp{
    /* background: -prefix-linear-gradient(45deg, ##bd0329,#4d0c1a);  */
    background: linear-gradient(45deg, #4d0c1a, #c5052d);
    padding:20px 20px;
    text-align: center;
    -webkit-box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 0px 10px 0px rgba(0,0,0,0.75);
}

#sp h2{
    font-size: 2rem;
}

#infopremium{
    margin-top: 20px;
    padding:10px 0px 10px 25px;
}
#leyendacotiza{
    padding:20px;
    text-align: center;
}
#flecha{
    position: absolute;
    z-index: 199;
    display: none;
}

#registro{
    padding: 15px 5px;
    font-family: Oswald;
}
#registro p{
    font-size: 1.2rem;
    font-weight: 300;
    padding: 5px 0px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-size: 0.9rem;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-size: 0.9rem;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-size: 0.9rem;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 0.9rem;
}
.controles{
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#form_registro .form-group{
    width: 100% !important;
}
#form_registro input, #form_registro select{
    background: #ececec;
    color:#000;
}
#lugar{
    width: 100% !important;
}
#exito, #error{
    margin-top: 30px;
}
#pasos{
    padding: 0px;
}
#pasos h3{
    margin: 50px 0px;
    font-size: 1.4rem;
}
#pasos .container .row .col-md-4{
    margin: 20px 0px;
}

footer{
    background: #2d2d2d;
    padding: 35px 20px;
    text-align: center;
    color: #ffffff;
}
#footer{
    text-align: center;
    background: #242424;
    color: #ffffff;
}
#footer a{
    color: #ffffff;
    /* padding: 5px; */
}
.aviso{
    color:silver;
    border:1px solid silver;
    border-radius: 5px;
}

/* ---------------------CARRUSEL------------------------- */
@-webkit-keyframes scroll {
	0% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
	100% {
	  -webkit-transform: translateX(calc(-250px * 9));
			  transform: translateX(calc(-250px * 9));
	}
  }
  
  @keyframes scroll {
	0% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
	100% {
	  -webkit-transform: translateX(calc(-250px * 9));
			  transform: translateX(calc(-250px * 9));
	}
  }

.slider {
	background: #fff;
	height: 200px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
  }
  .slider::before, .slider::after {
	background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 200px;
	position: absolute;
	width: 200px;
	z-index: 2;
  }
  .slider::after {
	right: 0;
	top: 0;
	-webkit-transform: rotateZ(180deg);
			transform: rotateZ(180deg);
  }
  .slider::before {
	left: 0;
	top: 0;
  }
  .slider .slide-track {
	-webkit-animation: scroll 20s linear infinite;
			animation: scroll 20s linear infinite;
	display: flex;
	width: calc(300px * 5);
  }
  .slider .slide {
	height: 200px;
    width: auto;
    padding: 15px 20px;
  }
  /* ---------------------FIN DE CARRUSEL------------------------- */

/* Estilos base para el navbar */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Estilos responsive para el carrusel */
@media (max-width: 575px) {
    #banner {
        height: 250px; /* Altura menor en móviles */
    }
    
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
}

/* Estilos para móviles (menos de 768px) */
@media (max-width: 767px) {
    .navbar {
        height: auto;
        padding: 0.5rem 0;
        flex-wrap: wrap;
    }
    
    .navbar-brand {
        margin-right: auto;
    }
    
    #logo {
        width: 80px !important;
        height: auto;
    }
    
    /* Botón hamburguesa */
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
        border: 1px solid rgba(240, 240, 240, 0.5);
        border-radius: 0.25rem;
        width: auto;
        height: auto;
        outline: none;
        box-shadow: none;
    }
    
    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    /* Menú colapsado - IMPORTANTE: oculto por defecto */
    .navbar-collapse {
        display: none !important;
        background-color: rgba(0, 0, 0, 0.95);
        margin-top: 0.5rem;
        border-radius: 0.25rem;
        padding: 0.5rem;
        width: 100%;
        position: relative;
        z-index: 1000;
    }
    
    /* Solo mostrar cuando tenga la clase show */
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: stretch;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.25rem;
        position: relative; /* Añadido para control de posición */
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        display: block;
        height: auto;
        margin-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: none;
        position: relative; /* Añadido para control de posición */
    }
    
    .navbar-nav .nav-link:hover {
        transform: none;
        background: #6898D5;
    }
    
    /* Estilos especiales para "Paga tu servicio" en móvil */
    .navbar-nav .nav-link[title="Paga tu servicio"] {
        background: linear-gradient(45deg, #28a745, #20c997) !important;
        border-radius: 15px;
        margin: 0.25rem 0;
        text-align: center;
        font-weight: 600;
        position: relative;
        z-index: 5; /* Reducido para evitar solapamiento con dropdown */
        order: 10; /* Asegurar que aparezca después del dropdown */
    }
    
    .navbar-nav .nav-link[title="Paga tu servicio"]:hover {
        background: linear-gradient(45deg, #218838, #1abc9c) !important;
        transform: none;
        z-index: 5;
    }
    
    /* Espacio adicional después del dropdown de paquetes */
    .navbar-nav .dropdown + .nav-item {
        margin-top: 0.5rem;
    }
    
    .new-badge {
        position: absolute;
        top: -5px;
        right: 10px;
        font-size: 0.5rem;
        padding: 1px 4px;
        z-index: 11;
    }
    
    /* Asegurar que el dropdown tenga z-index superior en móvil */
    .navbar-nav .dropdown-menu {
        z-index: 1200 !important; /* Aumentado para estar por encima del botón */
    }
    
    /* Dropdown en móvil */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
        z-index: 1200 !important;
    }
    
    .navbar-nav .dropdown.show .dropdown-menu {
        display: block;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1.5rem;
        color: #333 !important;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #6898D5;
        color: #fff !important;
    }
    
    /* Asegurar orden correcto de elementos en móvil */
    .navbar-nav .dropdown {
        position: relative;
        z-index: 100;
    }
    
    .navbar-nav .dropdown.show {
        z-index: 1300; /* Máxima prioridad cuando está abierto */
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    #banner {
        height: 350px; /* Altura media en tablets pequeñas */
    }
    
    .carousel-caption h5 {
        font-size: 2rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #banner {
        height: 400px; /* Altura estándar en tablets y desktop */
    }
    
    .carousel-caption h5 {
        font-size: 3rem;
    }
    
    .banner-content h1{
        font-size: 2.9rem;
    }
    
    .navbar-nav h5{
        display: none;
    }
    
    /* Alineación mejorada del navbar en desktop */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }
    
    .navbar-nav {
        display: flex;
        align-items: center;
        height: auto;
    }
    
    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }
    
    /* Estilos mejorados para "Paga tu servicio" en desktop */
    .navbar-nav .special-service {
        position: relative;
        background: linear-gradient(45deg, #28a745, #20c997);
        border-radius: 25px;
        padding: 0.7rem 1.5rem !important;
        margin: 0 1rem;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
        transition: all 0.3s ease;
        height: auto;
        z-index: 10;
        isolation: isolate;
    }
    
    .navbar-nav .special-service:hover {
        background: linear-gradient(45deg, #218838, #1abc9c);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
        color: #fff !important;
        z-index: 10;
    }
    
    .new-badge {
        top: -10px;
        right: -10px;
        font-size: 0.65rem;
        padding: 3px 7px;
        border-radius: 12px;
        z-index: 11;
    }
    
    /* Asegurar espaciado entre elementos del navbar */
    .navbar-nav .nav-item:not(:last-child) {
        margin-right: 0.5rem;
    }
    
    #logo{
        width: 100px !important;
        max-height: 60px;
    }
    
    #telefono{
        display:block;
        padding: 5px 0px;
        text-align: center !important;
        color:#fff;
    }
    #telefono a{
        color:#ccc;
    }
    #sp h2{
        font-size: 2.5rem;
    }
    #leyendacotiza h3{
        font-size: 1.3rem;
    }

    #infopremium{
        margin-top: 20px;
        padding:10px 0px 10px 30px;
    }

    #flecha{
        display: block;
    }
    #flecha img{
        position: relative;
        z-index: 199;
        left:450px;
        bottom:200px;
    }
 }

/*  Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #banner {
        height: 450px; /* Altura mayor en desktop */
    }
    
    .carousel-caption h5 {
        font-size: 3.5rem;
    }
    
    .banner-content h1{
        font-size: 3.5rem;
    }
    #logo{
        width: 100px !important;
    }

    #telefono{
        background: #fff;
        padding: 20px 0px;
        color: #000;
        text-align: center !important;
    }
    #telefono a{
        color:#40a6d4;
    }
    #telefono h5{
        font-size: 1.25rem;
    }
    #infopremium{
        padding:60px 0px 60px 30px;
    }
    #paquetes h3{
        font-size: 1.4rem;
    }
    .btnquiero{
        font-size: 1rem;
    }
    .beneficios{
        font-size: 0.9rem;
    }
    #leyendacotiza h3{
        font-size: 1.5rem;
    }
    #flecha img{
        position: relative;
        z-index: 199;
        left:700px;
        bottom:210px;
    }
    #form_registro .form-group{
        width: auto !important;
        padding: 5px;
    }
    #lugar{
        width: 220px !important;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #banner {
        height: 500px; /* Altura máxima en pantallas grandes */
    }
    
    .carousel-caption h5 {
        font-size: 4rem;
    }
    
    .banner-content h1{
        font-size: 4.5rem;
    }
    /* #logo{
        width: 200px !important;
    } */
    #paquetes{
        font-size: 1.3rem;
    }
    .paquetes{
        margin: 40px 0px;
    }

    #paquetes h3{
        font-size: 1.7rem;
    }
    
    .btnquiero{
        font-size: 1.2rem;
    }
    #premium{
        max-height: 380px
    }
    .beneficios{
        font-size: 1.1rem;
    }
    #sp{
        padding:60px 20px;
    }
    #sp h2{
        font-size: 3rem;
    }

    #leyendacotiza{
        padding:60px 20px;
        text-align: right;
    }
    #leyendacotiza h3{
        font-size: 1.8rem;
    }
    #registro{
        padding: 30px 5px;
    }
    #registro p{
        font-size: 1.5rem;
        padding: 10px 0px;
    }
    #form_registro{
        margin-top: 10px;
    }
    /* #lugar{
        width: 220px !important;
    } */
    #pasos{
        padding: 35px 10px;
    }
    #pasos h3{
        margin: 50px 0px;
        font-size: 1.7rem;
    }
    #pasos .container .row .col-md-4{
        margin: 50px 0px;
    }

    #flecha img{
        position: relative;
        z-index: 199;
        left:900px;
        bottom:180px;
    }
 }

/* Estilos para el dropdown de paquetes */
.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 0;
    min-width: 200px;
    z-index: 1050; /* Asegurar que esté por encima de otros elementos */
}

/* Alinear dropdown a la derecha cuando el menú está a la derecha */
@media (min-width: 768px) {
    .navbar-nav.ml-auto .dropdown-menu {
        right: 0;
        left: auto;
    }
    
    /* Asegurar separación entre elementos del navbar */
    .navbar-nav .nav-item {
        margin-right: 0.25rem;
    }
    
    .navbar-nav .special-service {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}

.navbar-nav .dropdown-item {
    color: #333 !important;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #6898D5;
    color: #fff !important;
    transform: none;
}

.navbar-nav .dropdown-toggle::after {
    color: #fff;
}

/* Asegurar que el dropdown sea visible */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .dropdown .dropdown-menu {
    position: absolute;
    z-index: 1000;
}

/*-----------------------PAGOS ----------------------------------------------------------*/

 .pago-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 70vh;
        }


 .security-info {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
}

.security-info .icon {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 10px;
}

 .form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 20px 0;
    text-align: left;
}


.form-group {
    margin-bottom: 25px;
}
        
.form-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
        
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
        
.form-control:focus {
    border-color: #40a6d4;
    box-shadow: 0 0 0 0.2rem rgba(64, 166, 212, 0.25);
}

 .mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.gap-4 {
    gap: 1.5rem;
}

 .me-2 {
            margin-right: 0.5rem !important;
        }