/* Hero Políticas */

.hero-politicas-section {
    position: relative;

    width: 100%;
    min-height: 300px;

    background-image: url("/static/img/politicasPag/hero/bg-politicas.8cdb52ab11f8.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Container */

.hero-politicas-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    padding:
        calc(var(--header-height) + 360px)
        40px
        70px;

    display: flex;
    justify-content: center;
    text-align: center;
}

/* Content */

.hero-politicas-content {
    max-width: 1000px;

    animation: heroPoliticasFadeUp 1s ease;
}

.hero-politicas-content h1 {
    font-family: var(--font-body);

    font-size: clamp(1.7rem, 2.3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.3;

    color: var(--color-dark);

    margin: 0;
}

/* Animation */

@keyframes heroPoliticasFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 900px) {
    .hero-politicas-section {
        min-height: auto;
    }

    .hero-politicas-container {
        padding:
            calc(var(--header-height) + 60px)
            32px
            60px;
    }

    .hero-politicas-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-politicas-container {
        padding:
            calc(var(--header-height) + 45px)
            24px
            55px;
    }

    .hero-politicas-content h1 {
        font-size: 1.6rem;
    }
}