/* =========================================================
   PRESIDENTIAL HERO
========================================================= */

.presidential-hero {

    width: 100%;

    padding: 0 0 55px;

    background: #ffffff;

}


/* =========================================================
   HERO PRINCIPAL
========================================================= */

.presidential-hero-inner {

    position: relative;

    width: min(
        1377px,
        calc(100% - 80px)
    );

    height: 620px;

    margin: 0 auto;

    overflow: hidden;

    background: #650000;

    border-radius: 0 0 4px 4px;

}


/* =========================================================
   IMAGEM
========================================================= */

.hero-image-wrapper {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    z-index: 1;

}


.hero-background-image {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transform: scale(1.01);

    transition:
        transform 0.8s ease;

}


/* =========================================================
   ZOOM DESKTOP
========================================================= */

.presidential-hero-inner:hover
.hero-background-image {

    transform: scale(1.025);

}


/* =========================================================
   OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:

        linear-gradient(
            90deg,

            rgba(83, 0, 0, 0.97) 0%,

            rgba(103, 0, 0, 0.91) 20%,

            rgba(112, 0, 0, 0.72) 38%,

            rgba(112, 0, 0, 0.36) 58%,

            rgba(112, 0, 0, 0.08) 80%,

            rgba(112, 0, 0, 0.02) 100%
        );

}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 3;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

}


/* =========================================================
   CONTEÚDO
========================================================= */

.hero-content {

    width: 550px;

    margin-left: 65px;

    padding-bottom: 90px;

    color: #ffffff;

}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {

    display: block;

    margin-bottom: 12px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 300;

    line-height: 1.2;

    letter-spacing: 0.01em;

    text-transform: uppercase;

}


/* =========================================================
   LINHA AMARELA
========================================================= */

.hero-line {

    display: block;

    width: 52px;

    height: 3px;

    margin-bottom: 25px;

    background: #e3c100;

}


/* =========================================================
   TÍTULO
========================================================= */

.hero-title {

    max-width: 650px;

    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        24px,
        4.2vw,
        48px
    );

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.025em;

}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.hero-description {

    margin: 0 0 32px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.6;

    letter-spacing: 0.01em;

    text-transform: uppercase;

}


/* =========================================================
   BOTÃO
========================================================= */

.hero-button {

    width: 120px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    background: #e30613;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.01em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


/* =========================================================
   HOVER BOTÃO
========================================================= */

.hero-button:hover {

    background: #c9000c;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);

}


/* =========================================================
   SETA
========================================================= */

.hero-button-arrow {

    font-size: 25px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.25s ease;

}


.hero-button:hover
.hero-button-arrow {

    transform: translateX(5px);

}


/* =========================================================
   INDICADORES
========================================================= */

.hero-slider-controls {

    position: absolute;

    left: 50%;

    bottom: 28px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 9px;

    transform: translateX(-50%);

}


.hero-dot {

    width: 32px;

    height: 4px;

    padding: 0;

    border: none;

    border-radius: 0;

    background: rgba(255,255,255,.75);

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease;

}


.hero-dot.active {

    width: 32px;

    background: #e30613;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .presidential-hero-inner {

        width: calc(100% - 50px);

        height: 500px;

    }


    .hero-content {

        width: 600px;

        margin-left: 50px;

        padding-bottom: 65px;

    }


    .hero-title {

        font-size: 54px;

    }

}


/* =========================================================
   TABLET PEQUENO
========================================================= */

@media (max-width: 900px) {

    .presidential-hero {

        padding-bottom: 40px;

    }


    .presidential-hero-inner {

        width: calc(100% - 30px);

        height: 500px;

        border-radius: 0;

    }


    .hero-content {

        width: 560px;

        margin-left: 35px;

        padding-bottom: 55px;

    }


    .hero-title {

        max-width: 540px;

        font-size: 46px;

        line-height: 1;

    }


    .hero-eyebrow {

        font-size: 12px;

    }


    .hero-description {

        font-size: 12px;

    }


    .hero-button {

        width: 180px;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,

                rgba(83, 0, 0, 0.96) 0%,

                rgba(103, 0, 0, 0.82) 42%,

                rgba(103, 0, 0, 0.28) 100%
            );

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       SECÇÃO
    ----------------------------------------------------- */

    .presidential-hero {

        width: 100%;

        padding: 0 0 32px;

        background: #ffffff;

    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .presidential-hero-inner {

        width: 100%;

        height: 690px;

        margin: 0;

        border-radius: 0;

        overflow: hidden;

    }


    /* -----------------------------------------------------
       IMAGEM
    ----------------------------------------------------- */

    .hero-image-wrapper {

        position: absolute;

        inset: 0;

        width: 100%;

        height: 100%;

        overflow: hidden;

    }


    .hero-background-image {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        /*
         * Ajuste importante para o enquadramento
         * da fotografia no telefone.
         */

        object-position: 55% center;

        transform: none;

    }


    /* -----------------------------------------------------
       DESACTIVAR ZOOM NO TOUCH
    ----------------------------------------------------- */

    .presidential-hero-inner:hover
    .hero-background-image {

        transform: none;

    }


    /* -----------------------------------------------------
       OVERLAY MOBILE
    ----------------------------------------------------- */

    .hero-overlay {

        position: absolute;

        inset: 0;

        background:

            linear-gradient(
                180deg,

                rgba(55, 0, 0, 0.02) 0%,

                rgba(55, 0, 0, 0.08) 25%,

                rgba(70, 0, 0, 0.30) 45%,

                rgba(70, 0, 0, 0.72) 68%,

                rgba(65, 0, 0, 0.97) 100%
            );

    }


    /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

    .hero-container {

        position: relative;

        z-index: 3;

        width: 100%;

        height: 100%;

        display: flex;

        align-items: flex-end;

    }


    /* -----------------------------------------------------
       CONTEÚDO
    ----------------------------------------------------- */

    .hero-content {

        width: 100%;

        margin: 0;

        padding:
            0 24px
            32px;

        box-sizing: border-box;

        color: #ffffff;

    }


    /* -----------------------------------------------------
       EYEBROW
    ----------------------------------------------------- */

    .hero-eyebrow {

        display: block;

        margin-bottom: 10px;

        font-size: 11px;

        font-weight: 400;

        line-height: 1.2;

        letter-spacing: .02em;

    }


    /* -----------------------------------------------------
       LINHA
    ----------------------------------------------------- */

    .hero-line {

        width: 42px;

        height: 3px;

        margin-bottom: 18px;

    }


    /* -----------------------------------------------------
       TÍTULO
    ----------------------------------------------------- */

    .hero-title {

        width: 100%;

        max-width: 100%;

        margin: 0 0 20px;

        font-size:
            clamp(
                32px,
                9.5vw,
                42px
            );

        line-height: .98;

        letter-spacing: -.025em;

        font-weight: 500;

    }


    /* -----------------------------------------------------
       DESCRIÇÃO
    ----------------------------------------------------- */

    .hero-description {

        margin: 0 0 25px;

        font-size: 10px;

        line-height: 1.5;

        letter-spacing: .02em;

    }


    /* -----------------------------------------------------
       BOTÃO MOBILE
    ----------------------------------------------------- */

    .hero-button {

        width: 100%;

        max-width: 100%;

        height: 52px;

        padding: 0 18px;

        box-sizing: border-box;

        font-size: 10px;

        font-weight: 700;

    }


    /* -----------------------------------------------------
       SETA
    ----------------------------------------------------- */

    .hero-button-arrow {

        font-size: 27px;

    }


    /* -----------------------------------------------------
       ESCONDER INDICADORES
    ----------------------------------------------------- */

    .hero-slider-controls {

        display: none;

    }

}


/* =========================================================
   MOBILE MÉDIO
========================================================= */

@media (max-width: 600px) {

    .presidential-hero-inner {

        height: 650px;

    }


    .hero-background-image {

        object-position: 54% center;

    }


    .hero-content {

        padding:
            0 22px
            30px;

    }


    .hero-title {

        font-size: 37px;

    }


    .hero-description {

        font-size: 10px;

        margin-bottom: 23px;

    }


    .hero-button {

        height: 50px;

    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 480px) {

    .presidential-hero {

        padding-bottom: 28px;

    }


    .presidential-hero-inner {

        width: 100%;

        height: 625px;

    }


    /* -----------------------------------------------------
       IMAGEM
    ----------------------------------------------------- */

    .hero-background-image {

        object-position: 53% center;

    }


    /* -----------------------------------------------------
       CONTEÚDO
    ----------------------------------------------------- */

    .hero-content {

        padding:
            0 20px
            28px;

    }


    /* -----------------------------------------------------
       EYEBROW
    ----------------------------------------------------- */

    .hero-eyebrow {

        font-size: 10px;

        margin-bottom: 9px;

    }


    /* -----------------------------------------------------
       LINHA
    ----------------------------------------------------- */

    .hero-line {

        width: 40px;

        height: 3px;

        margin-bottom: 17px;

    }


    /* -----------------------------------------------------
       TÍTULO
    ----------------------------------------------------- */

    .hero-title {

        font-size: 34px;

        line-height: .98;

        margin-bottom: 19px;

    }


    /* -----------------------------------------------------
       DESCRIÇÃO
    ----------------------------------------------------- */

    .hero-description {

        font-size: 9px;

        line-height: 1.5;

        margin-bottom: 22px;

    }


    /* -----------------------------------------------------
       BOTÃO
    ----------------------------------------------------- */

    .hero-button {

        width: 100%;

        max-width: 100%;

        height: 49px;

        padding: 0 17px;

        font-size: 9px;

    }


    .hero-button-arrow {

        font-size: 24px;

    }

}


/* =========================================================
   IPHONE / MOBILE MAIS ESTREITO
========================================================= */

@media (max-width: 400px) {

    .presidential-hero-inner {

        height: 600px;

    }


    .hero-background-image {

        object-position: 52% center;

    }


    .hero-content {

        padding:
            0 18px
            26px;

    }


    .hero-eyebrow {

        font-size: 9px;

    }


    .hero-title {

        font-size: 31px;

    }


    .hero-description {

        font-size: 8.5px;

        margin-bottom: 20px;

    }


    .hero-button {

        height: 47px;

        font-size: 9px;

    }


    .hero-button-arrow {

        font-size: 23px;

    }

}


/* =========================================================
   ECRÃS MUITO PEQUENOS
========================================================= */

@media (max-width: 360px) {

    .presidential-hero-inner {

        height: 570px;

    }


    .hero-content {

        padding:
            0 16px
            23px;

    }


    .hero-title {

        font-size: 29px;

    }


    .hero-description {

        font-size: 8px;

    }


    .hero-button {

        height: 45px;

    }

}