/* Main Category Page */

.main-servicos-hero{
    height: 612px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--MainParagraphDark);
}

.container-main-servicos-text-container{
    width: 80%;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.container-main-servicos-text{
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 90%;
}

.container-main-servicos-text p{
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.container-main-servicos-img{
    background:url(../images/intern-img/servicos-main-wallpaper.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media only screen and (max-width: 1100px) {
    .main-servicos-hero{
        grid-template-columns:3fr 2fr;
    }
}

@media only screen and (max-width: 900px) {
    .container-main-servicos-text-container{
        width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    .main-servicos-hero{
        grid-template-columns: 1fr;
        height:auto;
    }

    .container-main-servicos-text{
        gap: 24px;
        width: 100%;
    }

    .container-main-servicos-text-container{
        padding:40px 0;
        margin: auto;
    } 

    .container-main-servicos-img{
        height:350px;
    }
}

@media only screen and (max-width: 500px) {
    .container-main-servicos-img{
        height:300px;
        width: 95%;
        margin: auto;
        margin-bottom: 40px;
    }
}

/* servicos main options */

.servicos-options-section {
    background-color: #F7F7F7;
}

.servicos-card {
    display: flex;
    flex-direction: column;
    background: #FFF;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.25);
}

.servicos-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 32px;
    margin-top: 80px;
}

.servcard-1, .servcard-2 {
    width: 49%;
}

.servcard-3, .servcard-4, .servcard-5 {
    width: 32%;
}

.servicos-card-text-container {
    padding: 16px;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-evenly;
}

.servicos-img{
    min-height: 227px;
    width: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.serv-img1{
    background-image:url(../images/index-img/manutencao-preventiva.webp);
}

.serv-img2{
    background-image: url(../images/index-img/assistencia-tecnica.webp);
}

.serv-img3{
    background-image:url(../images/index-img/montagem-de-equipamentos.webp);
}

.serv-img4{
    background-image:url(../images/index-img/pecas-de-reposicao.webp);
}

.serv-img5{
    background-image:url(../images/index-img/manutencao-corretiva.webp);
}

.servicos-card-subtitle {
    color: var(--ParagraphGrey);
    font-size: 12px;
    font-weight: 700;
}

.servicos-card-title {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
}

@media only screen and (max-width: 1100px) {
    .servcard-3, .servcard-4, .servcard-5 {
        width: 49%;
    }
}

@media only screen and (max-width: 1000px) {
    .servcard-1, .servcard-2, .servcard-3, .servcard-4, .servcard-5 {
        width: 48%;
    }
}

@media only screen and (max-width: 800px) {
    .servicos-content {
        margin-top: 40px;
        row-gap: 24px;
    }
}

@media only screen and (max-width: 500px) {
    .servcard-1, .servcard-2, .servcard-3, .servcard-4, .servcard-5 {
        width:100%;
    }
}

/* sub category */
