/* =====================================================
   NOSSOS PRODUTOS
===================================================== */

.produtos {
    width: 100%;

    padding: 100px 20px 110px 20px;

    background: #ffffff;
}


.produtos-container {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto;
}


/* =====================================================
   CHAMADA + TRAÇOS
===================================================== */

.produtos-tag {
    display: flex;

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

    gap: 16px;

    margin-bottom: 38px;

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

    font-size: 12px;
    font-weight: 400;

    letter-spacing: 4px;

    color: #b8b8b8;

    text-transform: uppercase;
}


.produtos-tag:before,
.produtos-tag:after {
    content: "";

    width: 45px;
    height: 1px;

    background: #d0d0d0;
}


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

.produtos h2 {
    max-width: 850px;

    margin: 0 0 35px 0;

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

    font-size: 52px;

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -0.5px;

    color: #153b67;

    text-transform: uppercase;

    text-align: left;
}


/* =====================================================
   TEXTO INTRODUTÓRIO
===================================================== */

.produtos-intro {
    width: 100%;

    max-width: 900px;

    margin-bottom: 55px;
}


.produtos-intro p {
    margin: 0 0 10px 0;

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

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;

    color: #555555;

    text-align: left;
}


.produtos-intro strong {
    font-weight: 700;

    color: #153b67;
}


/* =====================================================
   CATEGORIAS
===================================================== */

.produtos-categorias {
    width: 100%;

    display: grid;

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

    gap: 30px;
}


/* =====================================================
   CARD
===================================================== */

.produto-categoria {
    position: relative;

    min-height: 330px;

    padding: 42px 40px;

    border: 1px solid #e1e5e8;

    background: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

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


.produto-categoria:hover {
    transform: translateY(-5px);

    border-color: #9eb3c7;

    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}


/* =====================================================
   NÚMERO
===================================================== */

.produto-numero {
    display: block;

    margin-bottom: 25px;

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

    font-size: 14px;

    font-weight: 400;

    letter-spacing: 2px;

    color: #b8b8b8;
}


/* =====================================================
   TÍTULO DA CATEGORIA
===================================================== */

.produto-categoria h3 {
    margin: 0 0 20px 0;

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

    font-size: 35px;

    line-height: 1.08;

    font-weight: 600;

    color: #153b67;

    text-transform: uppercase;
}


/* =====================================================
   TEXTO DO CARD
===================================================== */

.produto-categoria p {
    margin: 0 0 30px 0;

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

    font-size: 15px;

    line-height: 1.65;

    font-weight: 400;

    color: #626262;

    flex-grow: 1;
}


/* =====================================================
   BOTÕES
===================================================== */

.produto-botao {
    display: inline-block;

    padding: 14px 22px;

    background: #eeeeee;

    color: #153b67;

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

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-decoration: none;

    text-transform: uppercase;

    border-radius: 2px;

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


.produto-botao:hover {
    background: #153b67;

    color: #ffffff;
}

.produto-botao:hover {
    background: #0792bc;
}


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

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

    .produtos {
        padding: 85px 30px 90px 30px;
    }


    .produtos h2 {
        font-size: 44px;
    }


    .produtos-categorias {
        gap: 22px;
    }


    .produto-categoria {
        padding: 35px 30px;
    }

}


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

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

    .produtos {
        padding: 65px 24px 70px 24px;
    }


    .produtos-tag {
        margin-bottom: 28px;

        font-size: 10px;

        letter-spacing: 3px;

        gap: 10px;
    }


    .produtos-tag:before,
    .produtos-tag:after {
        width: 28px;
    }


    .produtos h2 {
        margin-bottom: 28px;

        font-size: 36px;

        line-height: 1.08;
    }


    .produtos-intro {
        margin-bottom: 40px;
    }


    .produtos-intro p {
        font-size: 15px;

        line-height: 1.65;
    }


    .produtos-categorias {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .produto-categoria {
        min-height: auto;

        padding: 32px 28px;
    }


    .produto-categoria h3 {
        font-size: 30px;
    }


    .produto-categoria p {
        font-size: 14px;
    }

}