/* estilos.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Estilo inicial de la navbar */
#navbar {
    transition: top 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    
  }

  #navbar a {
    color: white; /* Color del texto de los enlaces */
    transition: opacity 0.3s ease-in-out; /* Transición suave para el cambio de opacidad */
    
  }
  
  #navbar a:hover, #navbar a:focus {
    opacity: 0.7; /* Opacidad reducida al pasar el mouse o al seleccionar */
  }
  /* Clase para ocultar la navbar */
  .hidden {
    top: -100px !important; /* Ajusta este valor según la altura de tu navbar */
    
  }




  #hero {
    position: relative;
    background: url('/images/slider1.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
    text-align: left;
}
#hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-left: 5vh;
}
#hero p {
    margin-left: 5vh;
}
#scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
#scroll-down span {
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

#dual-section {
    padding: 50px 0;
    background-color: #ffffff;
}
#left-side {
    display: flex;
    align-items: left;
    justify-content: left;
    padding: 20px;
   
    
}

#left-side h2 {
    font-size: 3rem;
    font-weight: bold;
}
#right-side {
    padding: 20px;
}
#right-side h4 {
    font-weight: bold;
    margin-top: 20px;
}



#services-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}
#services-header {
    margin-bottom: 30px;
}
#left-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#right-side {
    padding: 20px;
}
.service-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.service-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.service-box h5 {
    font-weight: bold;
    margin-top: 15px;
}



#gallery-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}
#gallery-header {
    margin-bottom: 30px;
    text-align: center;
}
#gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
}
#gallery a {
    overflow: hidden;
    position: relative;
}
#gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
#gallery a:hover img {
    transform: scale(1.1);
}
@media (min-width: 768px) {
    #gallery .item-1 {
        grid-row: span 2;
        grid-column: span 2;
    }
    #gallery .item-2 {
        grid-column: span 2;
    }
    #gallery .item-3 {
        grid-column: span 2;
    }
    #gallery .item-4 {
        grid-row: span 2;
    }
}

#services-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

#brands-section {
    padding: 50px 0;
    background-color: #000;
    color: #fff;
}
#brands-header {
    margin-bottom: 30px;
    text-align: center;
}
#brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3d3d3d;
    border-radius: 10px;
    padding: 20px;
    max-width: 200px;
    height: 150px;
    margin-left: 2vh;
    margin-right: 2vh;
}
.brand-logo img {
    max-width: 100%;
    max-height: 100%;
}



#events-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}
#events-header {
    margin-bottom: 30px;
}
#left-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#right-side {
    padding: 20px;
}
.event-box {
    
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.event-box img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.event-box h5 {
    font-weight: bold;
    margin-top: 15px;
}
.event-box p {
    margin-top: 10px;
}
.event-box:hover {
    transform: scale(1.05);
}

#contact-section {
    padding: 50px 0;
}

#contact-header {
    margin-bottom: 30px;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-box {
    margin-bottom: 20px;
}

.contact-box h5 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.contact-box p {
    margin: 0;
    font-size: 16px;
}




footer{
    background-color: black;
    
}

.logofooter {
    display: flex;
    justify-content: center;
    align-items: center;
}


