/* Carrousel */

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;


}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}
.carrusel-wrapper {
    max-width: 95%;
    margin: auto;
    height: auto;
    max-height: 627px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.705), 10px 12px 24px rgba(0, 0, 0, 0.589);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-item img {
    opacity: 1;
    display: block;
    width: 100%;
    height: 100%;

    transition: .5s ease;
    backface-visibility: hidden;
}

.box-carousel {
    transition: .5s ease-out;
    opacity: 0;
    position: absolute;
    text-align: center;
    display: flex;
    height: 100%;
    align-items: center;
    margin-top: 200px;
    bottom: 0;
    left: 0;
}



.div-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 10px;
}

.info {
    font-size: 75px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.carousel-item:hover .box-carousel {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.651);
    width: 100%;
    bottom: 0;
    left: 0;
    



}

/*Fonts*/
.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
  
/*Marques*/
.brands-section {
    margin-top: 70px; /* Ajuste para dar espacio en la parte superior */
}

.brand-title {
    font-size: 3rem; /* Tamaño más coherente */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #0056b3; /* Color azul oscuro para mayor profesionalismo */
}

.brand-description {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    color: #666; /* Color gris oscuro para la descripción */
}

.brand-logos {
    gap: 20px; /* Ajuste para dar más espacio entre logos */
}

.brand-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease; /* Transición suave para hover */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.brand-logo:hover {
    transform: scale(1.1); /* Efecto de escala al pasar el ratón */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada en hover */
}

/*CONTACTO HOME*/
.location-section {
    background-color: #f8f9fa; /* Fondo claro para separar la sección */
    color: #333; /* Color de texto oscuro para contraste */
}

.location-title, .contact-info h3, .contact-info h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #0056b3; /* Color azul para títulos, coherente con el diseño anterior */
}

.location-title {
    font-size: 3rem; /* Tamaño más coherente y profesional */
}

.contact-info {
    text-align: center; /* Centraliza el contenido para una mejor visualización */
    padding: 20px; /* Espacio alrededor del texto para una mejor legibilidad */
}

.address, .hours {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    line-height: 1.6; /* Espacio entre líneas para una mejor legibilidad */
    margin-top: 20px; /* Espacio después de los títulos */
}

.map-container {
    display: flex;
    justify-content: center; /* Centra el mapa horizontalmente */
    padding: 20px;
}

.office-map {
    width: 100%; /* Ocupa todo el ancho disponible del contenedor */
    height: 450px; /* Altura fija para una visualización adecuada */
    border-radius: 20px; /* Bordes redondeados para un diseño más suave */
}

.contact-info a {
    color: #007bff; /* Color azul para enlaces, proporciona accesibilidad visual */
    text-decoration: none; /* No subrayado para mantener un aspecto limpio */
}

.contact-info a:hover {
    text-decoration: underline; /* Subrayado en hover para indicar interactividad */
}

.container-fluid {
    flex: 1; /* Permite que el contenido principal se expanda para ocupar todo el espacio restante en la ventana del navegador */
    
}
.animation-pers{
    animation: fadeIn 1s ease-out forwards; 
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(200px); }
    to { opacity: 1; transform: translateY(0); }
}
.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;
}
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    border: none;
    background: none;
    font-size: 15px;
    cursor: pointer;
}
.cookie-consent-banner button:hover {
    background-color: #0056b3;
}

.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;
}