.sobre_nosotros {
    text-align: center;
    width: 95%;
    border-radius: var(--radio_pequeno) var(--radio_pequeno) var(--radio_grande) var(--radio_grande);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-nosotros {
    font-family: "Nunito", sans-serif;
    font-size: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    align-self: flex-start;
    width: 100%;
    letter-spacing: -0.01em;
    font-weight: 600;
}

/* ==================== HERO ==================== */
.nosotros-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #fcfcfd 0%, #f3f4f6 100%);
    border-radius: 1.6rem;
    width: 100%;
    max-width: 900px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.img-bessie {
    width: 100%;
    max-width: 22rem;
    height: auto;
    object-fit: contain;
}

.nosotros-hero__texto {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.4;
    max-width: 50ch;
    margin: 0;
}

.nosotros-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    background: rgba(53, 119, 177, 0.1);
    color: var(--azul);
    font-size: 1.4rem;
    font-weight: 600;
}

/* ==================== GRID ==================== */
.nosotros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    width: 100%;
    margin-bottom: 2.5rem;
}

.nosotros-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 2.5rem 2rem;
    border-radius: 1.6rem;
    opacity: 0;
    transform: translateY(20px);
}

.nosotros-item__icono {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.2rem;
}

.nosotros-item__titulo {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
    color: var(--negro);
}

.nosotros-item__desc {
    font-size: 1.6rem;
    line-height: 1.65;
    color: var(--negro_claro);
    margin: 0;
}

/* Colores por card */
.nosotros-item--origen {
    background: linear-gradient(135deg, #e8f5f0 0%, #d4ede5 100%);
}
.nosotros-item--origen .nosotros-item__icono {
    background: rgba(97, 204, 174, 0.2);
    color: #2a9d6e;
}

.nosotros-item--hacemos {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8c8 100%);
}
.nosotros-item--hacemos .nosotros-item__icono {
    background: rgba(255, 140, 0, 0.15);
    color: #c56a00;
}

.nosotros-item--mision {
    background: linear-gradient(135deg, #e8f0fa 0%, #d4e4f5 100%);
}
.nosotros-item--mision .nosotros-item__icono {
    background: rgba(53, 119, 177, 0.15);
    color: var(--azul);
}

/* ==================== CTA ==================== */
.nosotros-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    background: var(--negro);
    color: var(--blanco);
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.nosotros-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== ANIMACIONES ==================== */
.fade-in {
    animation: fade-slide-in 0.8s ease forwards;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 750px) {
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .nosotros-hero {
        padding: 3rem 2rem;
    }

    .nosotros-hero__texto {
        font-size: 1.8rem;
    }

    .img-bessie {
        max-width: 18rem;
    }

    .nosotros-item {
        padding: 2rem 1.8rem;
    }

    .nosotros-item__desc {
        font-size: 1.5rem;
    }

    .section_nosotros {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .nosotros-cta {
        font-size: 1.4rem;
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 480px) {
    .nosotros-hero {
        padding: 2.5rem 1.5rem;
    }

    .nosotros-hero__texto {
        font-size: 1.6rem;
    }

    .img-bessie {
        max-width: 15rem;
    }

    .nosotros-item {
        padding: 1.8rem 1.5rem;
    }

    .nosotros-item__titulo {
        font-size: 1.7rem;
    }

    .nosotros-item__desc {
        font-size: 1.4rem;
    }

    .nosotros-badge {
        font-size: 1.2rem;
    }

    .nosotros-cta {
        font-size: 1.3rem;
        padding: 0.8rem 1.6rem;
    }
}

@media (max-width: 380px) {
    .img-bessie {
        max-width: 13rem;
    }

    .nosotros-item {
        padding: 1.5rem 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
