/* =============================================
   PÁGINA NOSOTROS — Ereditá
   ============================================= */

/* Hero: fade-in al cargar */
.nosotros-hero-content {
    opacity: 0;
    transform: translateY(24px);
    animation: nosotros-hero-in 0.9s ease 0.05s forwards;
}

@keyframes nosotros-hero-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secciones: fade-in por IntersectionObserver */
.nosotros-fade {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.nosotros-fade.is-visible {
    opacity: 1;
}

/* Pilares: responsive */
@media (max-width: 768px) {
    .nosotros-pilares-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .nosotros-pilares-grid > div {
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-left: none !important;
    }
}

/* Visión: responsive */
@media (max-width: 640px) {
    .nosotros-vision-grid {
        gap: 2rem !important;
    }
}
