:root {
    --fontViga: 'Viga', sans-serif;
    --colortimegoldsblue: #2991d6;
}

body {
    font-family: var(--fontViga);
    padding: 0;
    margin: 0;
}

.serviciosbody__fila {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.serviciosbody__filabox {
    width: 30rem;
    margin-top: 2rem;
    margin-left: 2rem;
    /* SOMBRA */
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: -22px 22px 44px #d6d6d6, 22px -22px 44px #ffffff;
}

.serviciosbody__filaboxtext p {
    font-size: .95rem;
    margin: .4rem;
}

.serviciosbody__filaboxbtn {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.serviciosbody__filaboximg img {
    width: 100%;
}

.serviciosbody__btnS {
    padding: 1rem 2rem 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    background-color: #2991d6;
    margin-bottom: 2rem;
}

.serviciosbody__titulobox {
    width: 100%;
    text-align: center;
    /* background-color: #2991d6; */
}

.serviciosbody__titulo {
    color: #2991d6;
    font-size: 2rem;
}


/* FOOTER */

.footerbody {
    width: 100%;
    margin-top: 6rem;
    margin-bottom: 0;
    height: 5rem;
    background-color: #14669d;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: var(--fontViga);
}

@media screen and (max-width:1000px) {
    .serviciosbody__filabox {
        max-width: 30rem;
        width: 92%;
        margin-top: 2rem;
        margin-left: 0rem;
        /* SOMBRA */
        /* border-radius: 1rem; */
        /* overflow: hidden; */
        /* background: #ffffff; */
        /* box-shadow: -22px 22px 44px #d6d6d6, 22px -22px 44px #ffffff; */
    }
}