/* ===========================
   TECNOLOGÍA (ACTUALIZADO)
   =========================== */

#inicio_tecnologia {
    position: relative;
    width: 100%;
    min-height: 500px; 
    padding: 100px 0;
    background-image: url('../../assets/img/satélitesBN.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Degradado superior para consistencia */
#inicio_tecnologia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.6) 50%,
        transparent 100%
    );
    z-index: 1;
}

#inicio_tecnologia .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
}

/* Título TECNOLOGÍA */
#inicio_tecnologia .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 5px;
}

/* Subtítulo Nuestros proveedores... */
.tech-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #444; 
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}

/* Contenedor de Logos */
.tech-logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.tech-logo {
    max-height: 60px; 
    width: auto;
    max-width: 180px;
    filter: drop-shadow(0 2px 5px rgba(255,255,255,0.5)); 
    transition: transform 0.3s ease;
}

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

/* Responsivo */
@media (max-width: 1024px) {
    .tech-logos-container {
        justify-content: center;
    }
    .tech-logo {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    #inicio_tecnologia {
        min-height: auto;
        padding: 60px 0;
    }
    #inicio_tecnologia .section-title {
        font-size: 2rem;
    }
    .tech-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    .tech-logos-container {
        gap: 20px;
    }
    .tech-logo {
        max-height: 40px;
    }
}