/* RESET Y FUENTES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 70px; /* Compensar navbar fija */
}

/* NAVBAR FIJA */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #222;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #ff6600;
}

/* SECCIONES GENERALES */
.section {
    padding: 50px 20px;
    text-align: center;
    min-height: 80vh;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 20px;
}

/* CARRUSEL LOGOS */
.logo-carousel {
    /* background: transparent; */
    background-color: rgba(214, 163, 163, 0.8) !important;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    will-change: transform;
}

.logo-item {
    max-height: 90px;
    margin: 0 30px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo-item {
        max-height: 45px;
        margin: 0 15px;
    }
}

/* CONTACTO */
#contacto {
    min-height: 85vh; /* 70% de la altura de la ventana */
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}
