body,
html {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: sans-serif;
}

:root {
    --white: #fff;
    --background: #e6e6e6;
    --text: #707070;
    --yellow: #ffc710;
    --cyan: #76c7c0;
    --blue: #1469b0;
    --purple: #2d368b;
    --shadow: #0000004d;

    font-size: 62.5%;
}

body {
    background: var(--background);
}

.owl-carousel img {
    max-width: auto;
    max-height: 412px;
}

h1 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;

    margin-top: 0;
}

.btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0;

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

.btn:hover,
.btn:focus,
.btn:active {
    color: var(--white);
}

.btn-azul-claro {
    background-color: var(--cyan);
}

.btn-azul-escuro {
    background-color: var(--blue);
}

.btn-roxo {
    background-color: var(--purple);
}

.titulo-roxo {
    color: var(--purple);
}

.titulo-azul-claro {
    color: var(--cyan);
}

.titulo-azul-escuro {
    color: var(--blue);
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

#home-educacional,
#home-informacoes,
#home-institucional,
#informacoes,
#historia-estrutura,
#missao-visao-valores,
#material-proposta,
#portal-do-aluno {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.card {
    display: flex;
    padding: 0;
    background: var(--white);

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--text);
}

.card-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.card-icon img {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.card-interno {
    padding: 2.5rem;
}

.faixa-topo {
    border-top: 1.5rem solid var(--yellow);
}

.faixa-topo-metade {
    border-top: 1.5rem solid;
    border-image: linear-gradient(
        90deg,
        rgba(255, 199, 16, 1) 0%,
        rgba(255, 199, 16, 1) 50%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    border-image-slice: 1;
}

.faixa-topo-quarto {
    border-top: 1.5rem solid;
    border-image: linear-gradient(
        90deg,
        rgba(255, 199, 16, 1) 0%,
        rgba(255, 199, 16, 1) 25%,
        rgba(255, 255, 255, 0) 25%,
        rgba(255, 255, 255, 0) 100%
    );
    border-image-slice: 1;
}

.card-100 {
    background: var(--white);

    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: var(--text);
}

.texto {
    padding-left: 2rem;
}

.row .col-img-wrap {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
}

#contatos {
    background: url("../../images/estrutura/sala.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 63%;


    padding-top: 10rem;
    padding-bottom: 10rem;
}

.info-contato {
    display: flex;
    justify-content: center;

    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;

    text-align: center;
}

.info-contato img {
    display: block;
    padding-bottom: 1.5rem;
    margin: auto;
    
}

.info-contato .img-icones {
    max-width: 4rem;
    max-height: auto;
}

.info-contato a {
    color: var(--white);
    text-decoration: none;
}

footer {
    background: var(--white);
    padding: 3rem 1.5rem;
    color: #acacac;
}

.sociallinks {
    text-align: right;
}

.sociallinks a {
    text-decoration: none;
}

.sociallinks img {
    padding: 0 4px;
}

.slick-next,
.slick-prev {
    display: none !important;
}

.slick-dots li button:before {
    color: var(--white) !important;
    font-size: 1.4rem !important;
}

.form-control {
    border-radius: 0;
    border-color: var(--purple);
}

.input {
    margin-bottom: 1rem;
}

.input label {
    font-weight: 400;
}

.btn-contato {
    text-align: left;
}

.btn-contato button {
    color: var(--white);
    text-transform: uppercase;
    border: none;
    padding: 1rem 4rem;
    background: var(--purple);
    margin-left: 1.5rem;
    margin-bottom: 2.5rem;
    transition-duration: 0.5s;
}

.btn-contato button:hover {
    transform: scale(1.1);
}

#matricula .btn {
    width: 25%;
}

#linha {
    margin-bottom: 4rem;
}

@media only screen and (max-width: 991px) {
    .card {
        margin-top: 1rem;
        margin-bottom: 1rem;

        display: block;
    }

    .row .col-img-wrap {
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .flex-center {
        display: block;
    }

    .card-100 {
        padding: 0;
    }

    .texto {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .col-img-wrap img {
        width: 100%;
    }

    .info-contato {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
