/* =====================================================
   PARALLAX MARK TERMOPLÁSTICOS
===================================================== */

.parallax-produtos {
    position: relative;

    width: 100%;
    height: 520px;

    background-image: url("../img/parallax-produtos.jpg");

    background-size: cover;
    background-position: center center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;
}


/* =====================================================
   SOBREPOSIÇÃO
===================================================== */

.parallax-overlay {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(7, 29, 54, 0.68);

    z-index: 1;
}


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

.parallax-container {
    position: relative;

    width: 92%;
    max-width: 1400px;

    height: 100%;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    z-index: 2;
}


/* =====================================================
   CHAMADA PEQUENA
===================================================== */

.parallax-tag {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 27px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 4px;

    color: rgba(255,255,255,0.72);

    text-transform: uppercase;
}


.parallax-tag:before {
    content: "";

    width: 42px;
    height: 1px;

    background: rgba(255,255,255,0.60);
}


/* =====================================================
   TÍTULO
===================================================== */

.parallax-container h2 {
    max-width: 850px;

    margin: 0;

    font-family: 'Oswald', Arial, Helvetica, sans-serif;

    font-size: 62px;

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -0.5px;

    color: #ffffff;

    text-transform: uppercase;
}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 1000px) {

    .parallax-produtos {
        height: 470px;
    }


    .parallax-container {
        width: 88%;
    }


    .parallax-container h2 {
        font-size: 52px;
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media screen and (max-width: 768px) {

    .parallax-produtos {
        height: 450px;

        background-attachment: scroll;

        background-position: center center;
    }


    .parallax-container {
        width: 86%;
    }


    .parallax-tag {
        margin-bottom: 22px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .parallax-tag:before {
        width: 30px;
    }


    .parallax-container h2 {
        font-size: 42px;

        line-height: 1.05;
    }

}


/* =====================================================
   CELULAR PEQUENO
===================================================== */

@media screen and (max-width: 480px) {

    .parallax-produtos {
        height: 420px;
    }


    .parallax-container h2 {
        font-size: 36px;
    }

}