/* === Página Nosotros === */

/* Marquee de marcas */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nosotros-marquee-track {
    animation: marquee 40s linear infinite;
}

.nosotros-marquee-track:hover {
    animation-play-state: paused;
}

/* Team hover overlay */
.nosotros-team-overlay {
    background: linear-gradient(to top, rgba(232,81,46,0.85) 0%, rgba(232,81,46,0.15) 60%, transparent 100%);
}

@media (hover: hover) {
    .nosotros-team-card .nosotros-team-overlay {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .nosotros-team-card:hover .nosotros-team-overlay {
        opacity: 1;
    }
    .nosotros-team-card .nosotros-team-desc {
        transform: translateY(16px);
        transition: transform 0.5s ease;
    }
    .nosotros-team-card:hover .nosotros-team-desc {
        transform: translateY(0);
    }
    .nosotros-team-card img {
        transition: transform 1s ease;
    }
    .nosotros-team-card:hover img {
        transform: scale(1.05);
    }
}

/* Hero image blend overlay */
.nosotros-hero-overlay {
    background: rgba(232, 81, 46, 0.05);
    mix-blend-mode: overlay;
}

/* Quote mark decorativo */
.nosotros-quote-mark {
    font-size: 5rem;
    line-height: 0.8;
    color: rgba(232, 81, 46, 0.08);
}

@media (min-width: 768px) {
    .nosotros-quote-mark {
        font-size: 7rem;
    }
}

/* Aspect ratios personalizados (Tailwind v4 no soporta / en valores arbitrarios) */
.nosotros-hero-img {
    aspect-ratio: 1 / 1;
}
@media (min-width: 40rem) {
    .nosotros-hero-img {
        aspect-ratio: 4 / 5;
    }
}
@media (min-width: 64rem) {
    .nosotros-hero-img {
        aspect-ratio: 1 / 1;
    }
}

.nosotros-filosofia-img {
    aspect-ratio: 16 / 9;
}

.nosotros-team-img {
    aspect-ratio: 3 / 4;
}

/* Testimonial divider line */
.nosotros-testimonial-line {
    width: 32px;
    height: 1px;
    background: rgba(232, 81, 46, 0.2);
}

@media (min-width: 768px) {
    .nosotros-testimonial-line {
        width: 40px;
    }
}
