/* =====================================================
   PLÁSTICOS DE ENGENHARIA
===================================================== */

.engenharia {
    width: 100%;

    padding: 0 0 110px 0;

    background: #ffffff;
}


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

.engenharia-container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =====================================================
   CABEÇALHO AZUL
===================================================== */

.engenharia-cabecalho {
    width: 100%;

    margin-bottom: 60px;

    padding: 42px 45px 38px 45px;

    background: #153b67;
}


.engenharia-cabecalho span {
    display: block;

    margin-bottom: 13px;

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

    font-size: 11px;

    line-height: 1;

    font-weight: 400;

    letter-spacing: 4px;

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

    text-transform: uppercase;
}


.engenharia-cabecalho h2 {
    margin: 0;

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

    font-size: 62px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -1px;

    color: #ffffff;

    text-transform: uppercase;
}


/* =====================================================
   INTRODUÇÃO
   50% IMAGEM / 50% TEXTO
===================================================== */

.engenharia-intro {
    width: calc(100% - 90px);

    margin: 0 auto 75px auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 55px;

    align-items: stretch;
}


/* =====================================================
   IMAGEM
===================================================== */

.engenharia-imagem {
    width: 100%;

    height: 390px;

    margin: 0;

    overflow: hidden;

    background: #eeeeee;
}


.engenharia-imagem img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
}


/* =====================================================
   TEXTO DA APRESENTAÇÃO
===================================================== */

.engenharia-texto {
    width: 100%;

    height: 390px;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;
}


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

.engenharia-texto h3 {
    margin: -3px 0 27px 0;

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

    font-size: 45px;

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -0.4px;

    color: #153b67;

    text-transform: uppercase;
}


/* =====================================================
   PARÁGRAFOS
===================================================== */

.engenharia-texto p {
    margin: 0 0 17px 0;

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

    font-size: 16px;

    line-height: 1.7;

    font-weight: 400;

    color: #555555;
}


.engenharia-texto strong {
    font-weight: 700;

    color: #153b67;
}


/* =====================================================
   GRID
===================================================== */

.engenharia-grid {
    width: calc(100% - 90px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   CARDS
===================================================== */

.engenharia-card {
    min-height: 430px;

    padding: 32px 30px 25px 30px;

    background: #eeeeee;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.engenharia-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}


/* =====================================================
   CÍRCULO
===================================================== */

.engenharia-circulo {
    width: 80px;
    height: 80px;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #153b67;

    display: flex;

    align-items: center;

    justify-content: center;

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

    font-size: 27px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: 0.3px;

    color: #ffffff;
}


/* =====================================================
   CÓDIGO
===================================================== */

.engenharia-codigo {
    display: block;

    min-height: 23px;

    margin-bottom: 9px;

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

    font-size: 20px;

    line-height: 1.1;

    font-weight: 600;

    color: #153b67;

    text-transform: uppercase;
}


/* =====================================================
   NOME TÉCNICO
===================================================== */

.engenharia-card h3 {
    min-height: 52px;

    margin: 0;

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

    font-size: 12px;

    line-height: 1.4;

    font-weight: 600;

    color: #4b4b4b;

    text-transform: uppercase;
}


/* =====================================================
   LINHA BRANCA
===================================================== */

.engenharia-linha {
    width: 52px;

    height: 2px;

    margin: 20px auto;

    background: #ffffff;
}


/* =====================================================
   DESCRIÇÃO
===================================================== */

.engenharia-card p {
    margin: 0 0 20px 0;

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

    font-size: 13px;

    line-height: 1.6;

    font-weight: 400;

    color: #606060;

    flex-grow: 1;
}


/* =====================================================
   VERSÕES PA 6
===================================================== */

.engenharia-versoes {
    width: 100%;

    margin: 0 0 22px 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.engenharia-versoes span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    color: #153b67;

    text-transform: uppercase;
}


/* =====================================================
   BOTÃO
===================================================== */

.engenharia-botao {
    display: block;

    width: 100%;

    padding: 13px 10px;

    background: #153b67;

    color: #ffffff;

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

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.engenharia-botao:hover {
    background: #0792bc;

    color: #ffffff;
}


/* =====================================================
   NOTEBOOK
===================================================== */

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

    .engenharia-intro,
    .engenharia-grid {
        width: calc(100% - 60px);
    }


    .engenharia-cabecalho {
        padding-left: 30px;

        padding-right: 30px;
    }


    .engenharia-texto h3 {
        font-size: 41px;
    }

}


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

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

    .engenharia {
        padding-bottom: 90px;
    }


    .engenharia-cabecalho {
        margin-bottom: 45px;

        padding-top: 35px;

        padding-bottom: 32px;
    }


    .engenharia-cabecalho h2 {
        font-size: 54px;
    }


    .engenharia-intro {
        gap: 40px;

        margin-bottom: 60px;
    }


    .engenharia-imagem,
    .engenharia-texto {
        height: 350px;
    }


    .engenharia-texto h3 {
        margin-bottom: 20px;

        font-size: 37px;
    }


    .engenharia-texto p {
        margin-bottom: 13px;

        font-size: 14px;

        line-height: 1.55;
    }


    .engenharia-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


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

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

    .engenharia-intro {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .engenharia-imagem {
        height: 420px;
    }


    .engenharia-texto {
        height: auto;
    }

}


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

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

    .engenharia {
        padding-bottom: 70px;
    }


    .engenharia-cabecalho {
        margin-bottom: 35px;

        padding: 30px 22px 27px 22px;
    }


    .engenharia-cabecalho span {
        margin-bottom: 10px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .engenharia-cabecalho h2 {
        font-size: 41px;

        line-height: 1.05;
    }


    .engenharia-intro {
        width: calc(100% - 44px);

        margin-bottom: 45px;

        gap: 28px;
    }


    .engenharia-imagem {
        height: 330px;
    }


    .engenharia-texto {
        height: auto;
    }


    .engenharia-texto h3 {
        margin-bottom: 22px;

        font-size: 34px;

        line-height: 1.04;
    }


    .engenharia-texto p {
        margin-bottom: 16px;

        font-size: 15px;

        line-height: 1.65;
    }


    .engenharia-grid {
        width: calc(100% - 44px);

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .engenharia-card {
        min-height: auto;

        padding: 30px 25px 25px 25px;
    }


    .engenharia-circulo {
        width: 76px;

        height: 76px;

        font-size: 26px;
    }


    .engenharia-card p {
        max-width: 400px;
    }


    .engenharia-botao {
        max-width: 280px;
    }

}