/*
Theme Name: Tema Dr. Marcello Serrao
Author: Daniela Ponciano
Author URI: http://www.danielaponciano.com
Description: Tema feito para voce
Version: 1.0
Tags: Responsive, Flexbox

*/
:root {
    /* Fonts */
    --ff-main: "Alexandria", sans-serif;
    /* Defaults */
    --base-boxshadow: 0px 3px 6px rgba(17, 29, 57, 0.1);
    --base-transition: 0.3s ease-in-out;
    /* Colours */
    --basecolor-black: #111D39;
    --basecolor-light-gray: #C8CAD0;
    --basecolor-light-gray-text: #61636A;
    --basecolor-white: #FCFCFC;
    --basecolor-yellow: #EBC944;
    --basecolor-blue: #5580C1;
    --basecolor-lightblue: #E5EFFD;
    /* Gradients */
    --basegradient: linear-gradient(90deg,#5580c1 0%, rgba(255, 255, 255, 0) 100%);
}

html {
    background-color: var(--basecolor-white);
}

body {
    font-family: var(--ff-main);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: var(--basecolor-black);
    background-color: var(--basecolor-white);
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--base-transition);
}

a:hover, a:focus {
    color: inherit;
    opacity: 0.5;
    text-decoration: none;
}

a:focus {
    outline: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bolder;
}

.custom-edit-button {
    position: fixed;
    right: 1rem;
    left: 1rem;
    bottom: 5rem;
    background-color: var(--basecolor-white);
    color: var(--basecolor-black);
    border-radius: 3rem;
    height: 3rem;
    width: 3rem;
    text-indent: -999999px;
    background-image: url(./images/edit.svg);
    background-size: 1.6rem;
    background-repeat: no-repeat;
    background-position: center;
}

.buttonReg {
    padding: 10px 1.5rem;
    border-radius: 5px;
    background: var(--basecolor-blue);
    border: 2px solid var(--basecolor-blue);
    color: #fff;
    font-size: .8rem;
    font-weight: 400;
    text-rendering: geometricPrecision;
    display: inline-block;
}

.buttonReg:hover {
    opacity: 1;
    background: var(--basecolor-black);
    border: 2px solid var(--basecolor-black);
    color: #fff;
}

.buttonBlueOut {
    padding: 10px 1.5rem;
    border-radius: 5px;
    background: transparent;
    color: var(--basecolor-blue);
    border: 2px solid var(--basecolor-blue);
    font-size: .8rem;
    font-weight: 400;
    text-rendering: geometricPrecision;
    display: inline-block;
}

.buttonBlueOut:hover {
    opacity: 1;
    background: transparent;
    border: 2px solid var(--basecolor-black);
    color: var(--basecolor-black);
}
strong{
    font-weight:bolder;
}
/* =========================================== Header  =============== */
header {
    position: absolute;
    width: 100%;
}

.over-menu {
    display: block;
    height: 5px;
    width: 100%;
    background: var(--basegradient);
}

.menuButton a {
    padding: 10px 1.5rem;
    border-radius: 5px;
    background: var(--basecolor-blue);
    color: #fff;
    font-size: .9rem;
    font-weight: 400;
    text-rendering: geometricPrecision;
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}

.menuButton a i {
    font-size: 1.3rem;
}

.menuButton a:hover {
    opacity: 1;
    background-color: var(--basecolor-black);
}

.sobretitulo {
    color: var(--basecolor-light-gray);
    text-transform: uppercase;
    font-weight: 400;
    font-size: .85rem;
    display: block;
    width: 100%;
    letter-spacing: 0.01em;
    margin-bottom: .5rem;
}

.sobretitulo:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 1rem;
    border: 1px solid;
    display: inline-block;
    margin-right: 5px;
    position: relative;
}

.tituloSecao {
    font-size: 2.2rem;
    font-weight: bold;
}

@media(max-width: 767px) {
    .tituloSecao {
        font-size: 1.8rem;
    }
}

/* ========================================== Home  =============== */
#heroHome {
    background: linear-gradient(#e5effd 0%, rgba(255, 255, 255, 0) 100%);
    min-height: 70vh;
}

.innerHomeHero {
    background-image: url(./images/bgHeroHome.png);
    padding: 8rem 0 1rem 0;
    background-position: center;
    background-size: cover;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.textoHero {
    padding: 2rem 5rem;
    max-width: 39vw;
}

.textoHero h2 {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.textoHero p {
    margin-bottom: 2rem;
}

ul.listaDeBotoes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.imgHero {
    position: relative;
    flex-grow: 1;
    z-index: 0;
}

.imgHero {
    background: rgb(85 128 193 / 28%);
    border-radius: 3rem 0 0 3rem;
    border: 7px solid rgb(84 128 193 / 15%);
    border-right: 0;
    overflow:hidden;
}

.imgHero img {
    max-width: 50vw;
    position: relative;
    z-index: 2;
    /* padding-left: 3rem; */
    /* mix-blend-mode: revert; */
    width: 100%;
}
p.legendadafotohome {
    text-align: right;
    padding-right: .5rem;
    padding-top: .5rem;
    font-size: 0.9rem;
}
#sobreHome {
    margin-bottom: 3rem;
}

.innerSobreHome {
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80vw;
    margin: 0 auto;
}

.innerSobreHome > ul, .innerSobreHome > div {
}

ul.listaDeAtalhos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

ul.listaDeAtalhos li {
    display: flex;
    align-items: center;
    flex: 0 1 calc(1 / 3 * 100%);
    aspect-ratio: 1 / 1;
    min-width: calc(50% - 1rem);
    ); max-width: 70px;
}

ul.listaDeAtalhos li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    aspect-ratio: 1 / 1;
    box-shadow: 0px 7px 15px rgb(55 57 59 / 15%), inset 0px -3.5rem 0 -3rem var(--basecolor-light-gray);
    border-radius: 1rem;
    font-weight: 500;
}

ul.listaDeAtalhos li > a > div {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul.listaDeAtalhos li > a img {
    max-width: 50px;
    margin-bottom: 0.75rem;
    max-height: 50px;
}

ul.listaDeAtalhos li > a:hover {
    opacity: 1;
    background-color: var(--basecolor-lightblue);
    box-shadow: 0px 7px 15px rgb(55 57 59 / 25%), inset 0px -3.5rem 0 -3rem var(--basecolor-black);
}

.sobreHomeTexto {
    max-width: 600px;
}

.sobreHomeTexto h2 {
    margin-bottom: 1rem;
}

.sobreHomeTexto p {
    margin-bottom: 2rem;
}

.novidadesHome {
    background: linear-gradient(#111d39 0%, #223667 100%);
}

.innerNovHome {
    padding: 5rem 7rem;
    background-image: url(./images/linhasBg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 50vh;
}

.tituloNovidades {
    text-transform: uppercase;
    color: var(--basecolor-white);
}

.novidadesArea {
    display: flex;
    gap: 2rem;
    padding: 4rem 0;
}

.blocoNov {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    flex: 1;
}

.blocoNov:hover {
    opacity: 1;
    box-shadow: 0 14px 13px #152343;
    transform: translateY(-1rem);
}

.imagemBlocoPost {
    min-height: 200px;
    background-position: center;
    background-size: cover;
    border-radius: .5rem;
    padding: 1rem;
    background-color: #eeeeee;
}

ul.listaCategoriaPosts {
    display: flex;
    gap: .5rem;
}

ul.listaCategoriaPosts > li > span {
    border-radius: 2rem;
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--basecolor-white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 .5rem;
    display: block;
}

.textoBlocoPost {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.textoBlocoPost .data {
    color: var(--basecolor-light-gray);
    letter-spacing: 1px;
    font-size: .9rem;
}

.textoBlocoPost .title {
    font-size: 1.2rem;
    color: var(--basecolor-black);
    font-weight: 600;
}

.postBlocoButton {
    text-decoration: underline;
    font-size: .9rem;
}

.linkTodosNovidade {
    padding: 2rem;
    text-align: center;
    padding-bottom: 0;
}

.depoimentosHome {
    background-image: url(./images/bgDepoimentos.png);
    background-size: cover;
    background-position: center bottom;
    padding: 5rem;
}

.swiperContainer {
    overflow: hidden;
}

.buttonzapDepo {
    font-size: 1.1rem;
    margin-right: 10px;
}

.tituloSliderHome {
    text-transform: uppercase;
}

.swiperContainer {
    overflow: hidden;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.blocoDepoimento {
    height: 100%;
    display: flex;
    justify-content: center;
}

.innerBlocoDepoimento {
    background-image: url(./images/aspas.svg);
    background-size: 60px;
    background-position: 2rem 2rem;
    background-repeat: no-repeat;
    color: var(--colour-text);
    padding: 4rem 4rem 2rem 4rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-rendering: geometricPrecision;
    margin: 2rem 6rem;
    box-shadow: 0px 7px 15px #E7EBF0;
    background-color: rgb(255 255 255 / 70%);
}

.depotxt {
    font-size: .9rem;
    line-height: 2;
    margin-bottom: 2rem;
    max-width: 800px;
}

.caixinhaAutor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.caixinhaAutor > span {
    width: 5rem;
    border-radius: 10rem;
    position: relative;
    border: 1px solid var(--basecolor-light-gray);
    overflow: hidden;
    padding: 3px;
    box-sizing: border-box;
}

.caixinhaAutor img {
    border-radius: 10rem;
}

.textoAutor b {
    display: block;
    font-weight: 600;
}

span.ocupacaotxt {
    font-size: .9rem;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--basecolor-blue);
}

@media(max-width: 767px) {
    .pageDefault {
        padding: 5rem 2rem;
    }
#heroHome{overflow: hidden} 
    .pageTitle {
        font-size: 2rem;
    }

    .textoHero {
        padding: 2rem 3rem;
        max-width: 100%;
    }
    .textoHero h2{
        font-size:2rem;
    }

    .innerHomeHero {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .imgHero span {
        right: 0;
        left: 2rem;
    }

    .imgHero {
         padding: 0;
         max-width: 85vw;
         align-self: flex-end;
         border-radius: 2rem;
         border: 7px solid rgb(84 128 193 / 15%);
    }
    .imgHero img {
        max-width: 100%;
    }

    .innerSobreHome {
        flex-direction: column-reverse;
        max-width: 100%;
        padding-top: 0;
        gap: 6rem;
    }

    ul.listaDeAtalhos {
    }

    .innerNovHome {
        padding: 3rem;
    }

    .novidadesArea {
        flex-direction: column;
        padding: 2rem 0 1rem 0;
    }

    .blocoNov {
        gap: 1rem;
    }

    .imagemBlocoPost {
        min-height: 120px;
    }

    .depoimentosHome {
        padding: 0;
    }

    .depoimentosHome .tituloSliderHome {
        padding: 2.5rem;
    }

    .depoimentosHome .swiperContainer {
        padding-top: 0;
    }

    .innerBlocoDepoimento {
        padding: 2rem;
        margin: 0 3rem;
    }

    .depotxt {
        font-size: .9rem;
        line-height: 1.75;
    }
}

/* =========================================== Page  =============== */
.pageDefault {
    padding: 7rem;
    background: linear-gradient(#e5effd 0%, rgba(255, 255, 255, 0) 100%);
    background-image: url(./images/bgHeroHome.png);
    background-position: top;
    background-size: 100% auto;
    overflow: hidden;
    background-repeat: no-repeat;
}

.pageTitle {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
}

.centeredPage {
    text-align: center;
}

.innerPage article {
    max-width: 1000px;
}

.singlePage .pageTitle {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    line-height: 1.2;
}

.singlePage .pageTitle > h2 {
    line-height: 1.2;
    margin: 0;
}

.singlePage .pageTitle > span {
    font-size: .6rem;
    display: inline-block;
}

.centeredPage article {
    margin: 0 auto;
}

article ul, article ol {
    padding-left: 2em;
    margin-bottom: 1rem;
}

article ul {
    list-style: square;
}

article ol {
    list-style: decimal;
}

article em {
    font-style: italic;
}

article strong {
    font-weight: bolder;
}

article hr {
    border: 0;
    border-top: 1px solid var(--basecolor-cyan);
    margin: 1rem 0;
}

article blockquote {
    /* background: #f2f2f2; */
    padding: 3em 2rem 1rem 2rem;
    font-size: 1.2rem;
    background-image: url(./images/quote.svg);
    background-repeat: no-repeat;
    background-size: 70px;
    background-position: 13px 15px;
}

article blockquote p:last-child {
    margin-bottom: 0
}

article a {
    text-decoration: underline;
    font-weight: bolder;
}

article p {
    width: 100%;
    display: inline-block;
    margin-bottom: 1rem;
    line-height: 1.75;
}

article p:last-child {
    margin-bottom: 0;
}

article p > img.aligncenter {
    display: flex;
    box-sizing: border-box;
}

article .alignleft {
    float: left;
    padding-right: 1rem;
    box-sizing: border-box;
}

article .alignright {
    float: right;
    padding-left: 1rem;
    box-sizing: border-box;
}

article .aligncenter {
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
}

article .wp-caption {
    padding: 1em;
}

article iframe {
    width: 100%;
    min-height: 400px;
}

.wp-caption-text {
    margin: 0;
    padding-top: 5px;
    font-size: .7em;
    font-style: italic;
    text-align: center;
}

article h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

article h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

article h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

article h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

article h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

article h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

.singlePage .innerPage {
    margin: 0 auto;
    max-width: 1000px;
}

.imagemDestacadaSingle {
    margin-bottom: 1rem;
}

.singlePage > .imagemDestacadaSingle {
    margin: 0 auto;
    max-width: 1000px;
    margin-bottom: 2rem;
}

.navigationSingle {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: .5rem;
    border-top: 1px solid var(--basecolor-light-gray);
    font-size: .9rem;
}

@media(max-width: 767px) {
    .pageDefault {
        padding: 7rem 2rem 3rem 2rem;
    }

    .pageTitle {
        font-size: 2rem;
    }
}

/* =========================================== duvidas  =============== */
ul.perguntasLista {
    display: flex;
    gap: 6rem;
    margin: 3rem auto;
    flex-direction: column;
    max-width: 1000px;
}

ul.perguntasLista > li {
    width: 100%;
}

.perguntaArea {
    background-color: #5580c1;
    color: #fff;
    padding: 2rem;
    margin-left: 1rem;
    margin-right: 4rem;
    box-sizing: border-box;
    font-size: .95rem;
    position: relative;
    border-radius: 0 1rem 1rem 1rem;
}

.perguntaArea:before {
    content: "";
    border-style: solid;
    border-width: 0 15px 20px 0;
    border-color: transparent #5580c1 transparent transparent;
    position: absolute;
    left: -15px;
    top: 0;
}

.perguntaArea > span {
    margin-top: 1rem;
    display: block;
    font-style: italic;
}

.respostaArea {
    border-radius: 1rem 0 1rem 1rem;
    margin-top: 2rem;
    padding: 2rem;
    margin-right: 1rem;
    margin-left: 5rem;
    box-sizing: border-box;
    line-height: 1.75;
    background: var(--basecolor-lightblue);
    position: relative;
}

.respostaArea:before {
    content: "";
    border-style: solid;
    border-width: 20px 15px 0px 0;
    border-color: #e5effd transparent transparent transparent;
    position: absolute;
    right: -15px;
    top: 0;
}

.linkConsulta {
    text-align: center;
    margin-top: 2rem;
}

@media(max-width: 767px) {
    .perguntaArea {
        margin-right: 1rem;
    }

    .respostaArea {
        margin-left: 1rem;
    }
}

/* =========================================== Blog  =============== */
ul.lista-tipos-novidade {
    display: flex;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lista-tipos-novidade li a span {
    border-radius: 2rem;
    text-transform: uppercase;
    color: var(--basecolor-white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0rem .75rem;
    display: block;
}

.postsListPage {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.postsListPage > a {
    min-width: calc(30% - 2rem);
    max-width: calc(30% - 2rem);
}

.postsListPage > a:hover {
    box-shadow: 0 14px 13px var(--basecolor-light-gray);
}

.listaDePosts nav {
    padding: 2rem 1rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

span.page-numbers.current {
    font-weight: bold;
}

.archiveTitle .sobretitulo {
    margin-bottom: 0;
}

@media(max-width: 767px) {
    .postsListPage > a {
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* =========================================== Referencias  =============== */
.materiaisList {
    margin: 2rem 0;
}

.materiaisList h3 {
    font-size: 1.2rem;
    border-bottom: 1px solid var(--basecolor-light-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.materiaisList ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.materiaisList ul li > a {
    padding: .5rem;
}

.materiaisList ul li > a i {
    margin-right: .5rem;
    font-size: 1.2rem;
}

/* =========================================== Sobre  =============== */

section.pageDefault.sobrePage {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    padding-bottom: 0;
}

section.pageDefault.sobrePage > * {
    max-width: 50%;
}
#page-20 h1 {
    margin-top: 0;
}
#page-20 .sobretitulo {
    margin:0
}
#page-20 {
    font-size: .95rem;
}

.imgSobre {
    position: relative;
    flex-grow: 1;
    z-index: 0;
    border-radius: 3rem;
    overflow:hidden;
    margin-top:3rem;
}

.imgSobre span {
    content: '';
    display: block;
    background: rgb(85 128 193 / 28%);
    border-radius: 3rem;
    border: 7px solid rgb(84 128 193 / 15%);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}

.imgSobre img {
    max-width: 100%;
    position: relative;
    z-index: 2;
    mix-blend-mode: revert;
}
.areasDeAtuacao{
    background: linear-gradient(0deg, rgb(85 128 193 / 20%) 0%, rgba(255, 255, 255, 0) 100%);
}
.listaEsp{
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}
.listaEsp li.itensEspecializacao{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1 / 1;
    box-shadow: 0px 7px 15px rgb(55 57 59 / 15%), inset 0px -3.5rem 0 -3rem var(--basecolor-light-gray);
    border-radius: 1rem;
    background: var(--basecolor-white);
    max-width: 280px;
    padding: 1.5rem;
    position: relative;
    flex: 1;
}
li.itensEspecializacao i {
    font-size: 4rem;
    opacity: .2;
    color: var(--basecolor-light-gray);
}

.icone {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

li.itensEspecializacao > span {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.2;
}

.icone i {
    font-size: 3rem;
}
div#swiper3 {
    position: relative;
}

section.galeriaClinica .swiperContainer {
    padding: 0;
}
.atendimentoArea{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.atendimentoArea .tituloSecao{
    margin-bottom:2rem;
}
span.clinicaSlide {
    display: block;
    width: 100vw;
    height: 80vh;
    background-size: cover;
    background-position: center;
}
@media(max-width: 767px) {
    section.pageDefault.sobrePage {
        flex-direction:column;
        gap: 1rem;
    }
    section.pageDefault.sobrePage > * {
        max-width: 100%;
    }
    .listaEsp{
        flex-direction:column;
    }
    .listaEsp li.itensEspecializacao{
        aspect-ratio:auto;
        padding-top: 7rem;
    }
    span.clinicaSlide{
        height:350px;
    }
    .atendimentoArea{
        margin-bottom:2rem;
    }
}
/* =========================================== Footer  =============== */
footer {
    background: linear-gradient(#111d39 0%, #223667 100%);
    padding: 3rem 7rem 1rem 7rem;
    overflow: hidden;
}

section.logoFooter {
    width: 280px;
    max-width: 100%;
    padding-bottom: 4rem;
    padding-top: 1rem;
}

.subtituloFooter {
    color: var(--basecolor-light-gray);
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
}

.subtituloFooter:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 1rem;
    border: 1px solid;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.footerContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--basecolor-white);
    padding-bottom: 3rem;
}

.enderecosFooter {
    display: flex;
    gap: 7rem;
}

ul.telefonesLista {
    margin-top: 2rem;
}

ul.telefonesLista li a {
    margin-bottom: 1rem;
    display: flex;
    gap: .5rem;
    font-size: 1.1rem;
    align-items: center;
}

ul.telefonesLista li a > span {
    display: flex;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: 1px solid;
    color: var(--basecolor-light-gray);
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    transition: var(--base-transition);
}

.blocoFooter a:hover {
    opacity: 1;
}

ul.telefonesLista li a:hover, ul.telefonesLista li a:hover > span {
    color: var(--basecolor-lightblue);
    border-color: var(--basecolor-lightblue);
}

ul.telefonesLista li a:hover > span {
    transform: scale(.8)
}

.blocoFooterSocials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.blocoFooterSocials a {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--basecolor-blue);
    color: var(--basecolor-white);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
}

.blocoFooterSocials a:hover {
    opacity: 1;
    box-shadow: 0 3px 10px #0b1b42;
    background: var(--basecolor-lightblue);
    color: var(--basecolor-blue);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    gap: 1rem;
    align-items: center;
}

.copyCred {
    color: var(--basecolor-white);
    opacity: .3;
    font-size: .8rem;
}

.linkAgir img {
    width: 30px;
}

.whatsappFlutuante {
    background: #25d366;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    color: var(--basecolor-white);
    border-radius: 3rem;
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

@media(max-width: 767px) {
    footer {
        padding:3rem;
    }

    .copyright, .footerContent, .enderecosFooter {
        flex-direction: column;
    }

    .footerContent, .enderecosFooter {
        gap: 4rem;
    }
}

/* =========================================== 404  =============== */

.single404{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:2rem;
    align-items: center;
    min-height: 60vh;
}
.single404 h2{
    font-size: 5rem;
    color: var(--basecolor-lightblue);
    font-weight: bold;
    line-height: 1;
}
.single404 p{

}
/* =========================================== Index  =============== */
/* BreakPoint Mobile */
@media(min-width: 768px) and (max-width: 1025px) {
    body {
        font-size: 14px;
    }
    .menuButton a{
        display: none;
    }
    .innerHomeHero{
    }
    .imgHero{
        /* align-self:flex-end; */
        padding:0;
    }
    .textoHero{
        max-width: 50%;
        padding: 3rem;
        padding-bottom: 0;
        align-self:flex-start;
    }
    .imgHero img{
        max-width:400px;
    }
    .innerSobreHome{
        max-width:100%;
    }
    .innerBlocoDepoimento{
        max-height:500px;
    }
    footer{
        padding:3rem;
    }
    .pageDefault{
        PADDING: 7rem 2rem;
    }
    .postsListPage > a{
        max-width:50%;
    }
}
