/* =========================================================
   NEWSLETTER - SALA DE PRENSA
========================================================= */

.sec-newsletter {
    position: relative;
    width: 100%;
    min-height: 340px;
    overflow: hidden;
    background: #041d2c;
    color: #ffffff;
    padding: 20px 0px;
}


/* =========================================================
   FONDO
========================================================= */

.sec-newsletter-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    z-index: 0;

}


.sec-newsletter-background-img {width: 100%;height: 100%;object-fit: cover;object-position: right;}


.sec-newsletter-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 18, 29, .93) 0%,
            rgba(2, 18, 29, .78) 40%,
            rgba(2, 18, 29, .28) 75%,
            rgba(2, 18, 29, .15) 100%
        );

}


/* =========================================================
   CONTAINER
========================================================= */

.sec-newsletter-container {

    position: relative;

    z-index: 2;

}


.sec-newsletter-container > .row {min-height: 240px;}


/* =========================================================
   CONTENIDO
========================================================= */

.sec-newsletter-content {

    max-width: 760px;

    padding-top: 80px;

    padding-bottom: 80px;

}


.sec-newsletter-eyebrow {

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.sec-newsletter-title {margin: 0 0 25px;font-size: clamp(38px, 5vw, 65px);line-height: 1.05;font-weight: 300;letter-spacing: -1px;}


.sec-newsletter-title-highlight {

    display: block;

    font-weight: 600;

}


.sec-newsletter-description {

    max-width: 620px;

    margin-bottom: 32px;

    font-size: 18px;

    line-height: 1.6;

    color: rgba(255, 255, 255, .90);

}


/* =========================================================
   FORMULARIO
========================================================= */

.sec-newsletter-form {

    width: 100%;

    max-width: 680px;

}


.sec-newsletter-input {

    height: 58px;

    padding: 0 20px;

    border: 1px solid #ffffff;

    border-radius: 0;

    background: #ffffff;

    font-size: 16px;

    color: #222222;

    box-shadow: none;

}


.sec-newsletter-input::placeholder {

    color: #777777;

}


.sec-newsletter-input:focus {

    border-color: #ffffff;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, .15);

}


/* =========================================================
   BOTÃ“N
========================================================= */

.sec-newsletter-button {
        height: 58px;
        min-width: 180px;
        padding: 0 30px;
        border: 0;
        border-radius: 0;
        background: #fbbb11;
        color: #875252;
        font-size: 16px;
        font-weight: 600;
        transition:
        background .2s ease,
        transform .2s ease;
        }


.sec-newsletter-button:hover {

    background: #1744bd;

    color: #ffffff;

}


.sec-newsletter-button:focus {

    color: #ffffff;

}


.sec-newsletter-button:disabled {

    opacity: .7;

}


.sec-newsletter-button-arrow {

    display: inline-block;

    margin-left: 10px;

    font-size: 21px;

    transition: transform .2s ease;

}


.sec-newsletter-button:hover
.sec-newsletter-button-arrow {

    transform: translateX(4px);

}


/* =========================================================
   MENSAJES
========================================================= */

.sec-newsletter-message {

    margin-top: 15px;

    font-size: 14px;

    font-weight: 500;

}


.sec-newsletter-message-success {

    color: #bfffc7;

}


.sec-newsletter-message-error {

    color: #ffd0d0;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .sec-newsletter {

        min-height: 500px;

    }


    .sec-newsletter-container > .row {

        min-height: 500px;

    }


    .sec-newsletter-background-img {

        object-position: 65% center;

    }


    .sec-newsletter-overlay {

        background:
            rgba(2, 18, 29, .78);

    }


    .sec-newsletter-content {

        padding-top: 60px;

        padding-bottom: 60px;

    }


    .sec-newsletter-title {

        font-size: 40px;

        letter-spacing: -.5px;

    }


    .sec-newsletter-description {

        font-size: 16px;

    }


    .sec-newsletter-input {

        height: 54px;

    }


    .sec-newsletter-button {

        width: 100%;

        height: 54px;

    }

}


@media (max-width: 575.98px) {

    .sec-newsletter-title {

        font-size: 34px;

    }

}