/* Hero Nosotros */

.hero-nosotros-section {
    position: relative;

    width: 100%;
    min-height: 430px;

    background-image: url("/static/img/nosotrosPag/hero/bg-nosotros.65a365b381e8.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Container */

.hero-nosotros-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    padding:
        calc(var(--header-height) + 240px)
        80px
        90px;

    display: flex;
    justify-content: center;

    text-align: center;
}

/* Content */

.hero-nosotros-content {
    max-width: 980px;

    animation: heroNosotrosFadeUp 1s ease;
}

.hero-nosotros-content h1 {
    font-family: var(--font-body);

    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;

    color: var(--color-dark);

    margin-bottom: 38px;
}

.hero-nosotros-content p {
    font-size: 1.08rem;
    line-height: 2.1;

    color: #666666;

    margin-bottom: 0;
}

/* Animation */

@keyframes heroNosotrosFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 900px) {
    .hero-nosotros-section {
        min-height: auto;
    }

    .hero-nosotros-container {
        padding:
            calc(var(--header-height) + 70px)
            32px
            80px;
    }

    .hero-nosotros-content h1 {
        font-size: 2.3rem;
    }

    .hero-nosotros-content p {
        font-size: 1rem;
        line-height: 1.95;
    }
}

@media (max-width: 600px) {
    .hero-nosotros-container {
        padding:
            calc(var(--header-height) + 50px)
            24px
            70px;
    }

    .hero-nosotros-content h1 {
        font-size: 1.9rem;
    }
}