body,html{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
}
body{
    /* background: linear-gradient(to bottom,#3e67ce ,white ); */
    /* background: rgb(7,52,174);
    background: linear-gradient(3deg, rgba(7, 51, 174, 0.637) 0%, rgba(255,255,255,1) 99%); */
    background-color: #ffffff; /* Fondo claro para un aspecto fresco y limpio */
    color: #333; 
    font-family: 'Roboto', sans-serif; 
    background-color: white;
    display: flex;
flex-direction: column;
min-height: 100vh;
}


h2 {
    color: #0056b3; 
    font-size: 2rem; 
    margin-bottom: 0.5rem; 
    font-weight: 600; 
    transition: color 0.3s ease; 
}

h2:hover {
    color: #00376b; 
}

img.img-fluid {
    border-radius: 8px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease-in-out; 
}

img.img-fluid:hover {
    transform: scale(1.03); 
}

ul.list-unstyled {
    list-style-type: none; 
    padding-left: 0; 
}

ul.list-unstyled li {
    padding-bottom: 10px; 
    border-bottom: 1px solid #ccc; 
    transition: all 0.2s ease-in-out; 
}

ul.list-unstyled li:hover {
    transform: translateX(10px); 
    background-color: #e9ecef; 
}

ul.list-unstyled li:last-child {
    border-bottom: none; 
}

/* Animaciones de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(300px); }
    to { opacity: 1; transform: translateY(0); }
}

.row.align-items-center {
    animation: fadeIn 1s ease-out forwards; 
}
.container-fluid {
    flex: 1; /* Permite que el contenido principal se expanda para ocupar todo el espacio restante en la ventana del navegador */
    
}
.content{
    flex: 1;
}
.nav-item.dropdown .dropdown-menu {
    width: auto; /* Ajusta automáticamente el ancho al contenido más ancho */
    min-width: 100%; /* Asegura que el menú tenga, como mínimo, el ancho del botón dropdown */
}

.dropdown-item {
    white-space: nowrap; /* Evita que el contenido se ajuste a líneas múltiples */
}

/*Cookies Banner*/
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f4f4f4;
    color: #333;
    padding: 10px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-consent-banner p {
    margin: 10px 0;
}

.cookie-consent-banner button {
    color: #fff;
    background-color: #007BFF;
    border: none;
    padding: 5px 10px;
    margin-right: 10px;
    cursor: pointer;
}

.cookie-consent-banner a {
    color: #007BFF;
    text-decoration: none;
}
.termes-politica{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
 }
 .termes-politica a{
     font-style: italic;
     font-size: 11px;
     color: white;
     text-decoration: underline;
     letter-spacing: 1px;
 }

