
/* HERO SECTION */
.quienes-somos {
    background-image: url('/imagenes/home.png'); /* Cambia esto por tu imagen real */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    margin-top: -80px;  /* corrige efecto del header sticky */
    padding-top: 80px;
    position: relative;
}

.texto-hero {
    max-width: 600px;
}

/* OTRAS SECCIONES */
section {
    padding: 80px 5%;
    min-height: 100vh;
    scroll-margin-top: 100px; /* Deja espacio para el header al hacer scroll */
}

#funcionalidades {
    background-color: #f8f9fa;
}

#servicios {
    background-color: #e9ecef;
}

#contacto {
    background-color: #f8f9fa;
}

/* TEXTOS */
h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

p {
    line-height: 1.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE */
@media (min-width: 1024px) {
    .texto-hero {
        transform: translateY(-100px);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 10px 5%;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .quienes-somos {
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 0 8%;
    }

    .texto-hero {
        transform: none;
        text-align: center;
    }
}
