/*
Theme Name: Starter Theme
Author: Daniela Ponciano e Natalia Pedroso
Author URI: http://www.danielaponciano.com
Description: Tema feito para clinica horbita
Version: 1.0
Tags: Responsive, Flexbox

*/
:root {
    /* Fonts */
    --ff-main: "Karla", sans-serif;
    --ff-title: "Karla", sans-serif;
    /* Defaults */
    --base-boxshadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    --base-transition: 0.3s ease-in-out;
    /* Colours */
    --basecolor-black: #1F1F1F;
    --basecolor-gray: #2E2F30;
    --basecolor-yellow: #F7D447;
    --basecolor-white: #FDFDFD;
    --basecolor-pure-white: #fff;
    --basecolor-beige: #F5EEE8;
    --basecolor-darkBeige: #C3AA8A;
}

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

body {
    font-family: var(--ff-main);
    font-size: 16px;
    line-height: 1.5;
    color: var(--basecolor-black);
    background-color: var(--basecolor-pure-white);
    height: 100%;
    text-rendering: geometricprecision;
}
:target,
:focus,
:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
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-family: var(--ff-title);
}

.buttonDefault {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: .4rem .4rem .4rem 1rem;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--basecolor-yellow);
    backdrop-filter: blur(4px);
    border-radius: 3rem;
    color: rgba(0,0,0,.8);
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.buttonDefault:hover {
    opacity: 1;
    background: var(--basecolor-yellow);
}

.iconButton {
    background-color: var(--basecolor-yellow);
    color: var(--basecolor-pure-white);
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 2rem;
    transition: var(--base-transition);
}

.buttonDefault:hover .iconButton {
    color: var(--basecolor-black);
    background-color: #fff;
}

.langSwitcher {
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 110;
}

.lang-item a {
    background-color: var(--basecolor-yellow);
    color: var(--basecolor-pure-white);
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 2rem;
    text-transform: uppercase;
}

.lang-item a:hover {
    opacity: 1;
    background-color: var(--basecolor-beige);
}

.header .buttonDefault:last-child {
    background-color: var(--basecolor-yellow);
}

.header .buttonDefault:last-child .iconButton {
    background-color: rgb(255 255 255 / 30%);
}

.floating-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #25D366;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.09);
    right: 1rem;
    bottom: 1rem;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 500;
}

.floating-whatsapp:hover {
    opacity: 1;
    color: #fff;
    transform: scale(1.1);
}
.allContainer{
    overflow: hidden;
}
/* =========================================== Index  =============== */
#hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    text-align:center;
    z-index: 1;
}

.innerHero {
    position: relative;
    z-index: 10;
    text-align:center;
}
.innerHero h2 {
    font-size: 6.5rem;
    line-height: 130%;
}

.innerHero p {
    font-size: 1.5rem;
    max-width: 500px;
    font-weight: 300;
    margin: 0 auto;
    text-rendering: geometricPrecision;
    opacity: .8;
}
.buttonHero{
    display: flex;
    margin: 2rem auto;
    width:fit-content;
}
.bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    will-change: transform;
    overflow: hidden;
}

.bg-shape img {
    width: 100vw;
    margin: 0 auto;
}

.arrowContainer {
    background-color: var(--basecolor-beige);
    position: relative;
    z-index: 2;
}

.arrowContainer:hover {
    opacity: 1;
}

.arrow-container {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
}

.arrow-1 {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #e7d2c0;
    opacity: .5;
    animation: pulse 2.2s ease-out infinite;
}

.arrow-2 {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 5px;
    right: 5px;
    background: #C3AA8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.arrow-2::before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 2px solid #C3AA8A;
    border-radius: 50%;
}

.arrow-2 i.fa {
    font-size: 14px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.arrow-2 i.fa {
    animation: bounce 6s ease-in-out infinite;
}

/* Ripple */
@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: .6;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Arrow movement */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}
.hideBig{
    display:none;
}
@media(max-width: 991px) {
    #hero {
        min-height: 85vh;
        padding-top: 5rem;
    }
    .innerHero {
        padding:2rem;
        box-sizing: border-box;
    }

    .innerHero h2 {
        font-size: 4.5rem;
        line-height: 100%;
        margin-bottom: 1rem;
    }

    .innerHero p {
        font-size: 1.2rem;
    }

    .bg-shape {
        text-align: center;
    }

    .bg-shape img {
        /* height: 90vh; */
        width: 200vh;
        max-width: none;
        transform: translateX(-60%);
        position: relative;
    }
    .hideBig{
        display: flex;
    }
}

@media(max-width: 991px) and (orientation: portrait){
    #hero {
        
    }
     .innerHero h2 {
        font-size: 5rem;
        line-height: 100%;
        margin-bottom: 1rem;
    }
}
@media (min-width: 769px) and (orientation: portrait){
    #hero {
        min-height: 65vh;
    }
}
@media(max-width: 767px){
    .innerHero h2 {
        font-size: 3.5rem;
    }
}
/* =========================================== Manifesto  =============== */
.page-template-template-manifesto {
    text-rendering: geometricprecision;
    position: relative;
    background-color: #F5EEE8;
}

.xClose {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}

.xClose svg {
    width: 30px;
}
.manifesto_inicio {
    background: #F5EEE8;
    background: radial-gradient(74.51% 96.61% at 50% 3.39%, #FDFDFD 40%, #F5EEE8 100%);
    padding: 6rem;
    padding-top: 9rem;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: space-between;
    overflow: hidden;
}
.manifesto_inicio:before {
    content: '';
    width: 100%;
    height: 380px;
    position: absolute;
    top:0px;
    right:0;
    background-image: url(./images/bgManifesIni.png);
    background-size: 100% 380px;
    overflow: hidden;
}

.destaque1 {
    font-size: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frases1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items:center;
}

.frases1 p {
    font-size: 1.4rem;
}


.manifesto_parte1 {
    background-color: #F5EEE8;
    position: relative;
    padding: 2rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    padding-top: 8rem;
}

.manifesto_parte1:after {
    content: '';
    width: 100%;
    height: 380px;
    position: absolute;
    bottom: -210px;
    background-image: url(./images/bgManifestop1.png);
    background-size: 100% 380px;
    overflow: hidden;
}

.content1 {
    max-width: 1100px;
    font-size: 1.6rem;
}

.ball {
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--basecolor-yellow);
    z-index: 1;
}

.ball:before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--basecolor-yellow);
    z-index: 1;
}

.ball span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    z-index: -1;
    animation: wave 7s infinite;
}

.ball span:nth-child(2) {
    animation-delay: 1s;
}

.ball span:nth-child(3) {
    animation-delay: 2s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(8);
        opacity: 0;
    }
}

.content2, .content3, .content4 {
    position: relative;
    z-index: 1;
}

.content2 p {
    font-size: 1.6rem;
}

.content2 h2 {
    font-size: 2.4rem;
    font-weight: bold;
}

.manifesto_parte2 {
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    line-height: 2;
    background: linear-gradient(180deg, rgb(226 203 183) 30%, rgba(203, 163, 131, 0) 100%);
    padding-bottom: 3rem;
    padding-top: 12rem;
    overflow: hidden;
}

.content3 {
    max-width: 800px;
}

.content4 {
    align-self: flex-end;
    max-width: 800px;
}

.manifesto_parte2 h3 {
    font-size: 2.3rem;
}

.manifesto_parte2 p {
    font-size: 1.6rem;
}

.page-template-template-manifesto strong {
    font-weight: bolder;
}

.bgFinalArea {
    background-image: url(./images/bgFinal2.png);
    background-size: 150% 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #cba383;
    overflow: hidden;
}

.final {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    justify-content: flex-end;
}

.destaque2 {
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0;
}

#dividerLogo {
    margin: 0 auto;
    animation: tick 60s steps(60, end) infinite;
    transform-origin: center;
}

@keyframes tick {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.fraseFinal {
    /* padding-top:10rem; */
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.content5 {
    font-size: 3.12rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.fraseFinal,.content5 {
    text-align: center;
}

p.fraseFinal,.content5, .copyArea {
    position: relative;
    z-index: 1
}

.content5 .buttonDefault {
    align-self: center;
}

.breathing {
    animation: breathe 5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: .9;
        filter: brightness(1);
    }

    40% {
        transform: scale(1.12);
        opacity: 1;
        filter: brightness(1.15);
    }

    60% {
        transform: scale(1.12);
        opacity: 1;
        filter: brightness(1.15);
    }
}

@media(max-width: 767px) {
    .manifesto_inicio {
        padding-right:2rem;
        padding-left: 2rem;
        padding-top: 2rem;
        gap: 0;
        min-height: 100vh;
        align-items:center;
        justify-content:center;
    }

    h2.destaque1 {
        font-size: 2rem;
        padding:4rem 0
    }

    h2.destaque2 {
        padding: 2rem 0;
        padding-bottom: 0;
    }

    .frases1 p {
        text-align: center !important;
        font-size: 1rem;
        align-self: center !important;
    }

    .content1 {
        font-size: 1.2rem;
    }

    .content2 p {
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }

    .content2 h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .content2 h2 span {
    }

    .manifesto_parte1:after {
        height: 300px;
        bottom: -180px;
        background-size: 150% 100%;
    }

    .manifesto_parte2 {
        padding: 10rem 2rem;
        gap: 8rem;
    }

    .manifesto_parte2 h3 {
        font-size: 1.5rem;
        line-height: 1.2
    }

    .manifesto_parte2 p {
        font-size: 1rem;
    }

    .bgFinalArea {
        background-size: 170% 110%;
    }

    .final {
        padding: 2rem;
        min-height: auto;
    }

    .fraseFinal {
        font-size: 1.1rem;
    }

    .content5 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .final .copyArea {
        text-align: center;
    }
}

/* =========================================== Sobre  =============== */
.innerSobre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 5rem;
    background-image: url(./images/meiaBola.svg);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 200px;
    position: relative;
    z-index: 1;
}

.textoSobre {
    padding: 12rem 4.5rem;
}

.textoArea .antetitulo {
    font-weight: 700;
    font-size: .8rem;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.8;
}

.textoArea .antetitulo:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--basecolor-yellow);
    display: inline-block;
    border-radius: 2rem;
    margin-right: 5px;
    position: relative;
    top: .5px;
}

.textoArea h2 {
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.textoArea h2 > span {
    color: var(--basecolor-yellow);
}

.textoArea .conteudo {
    font-size: 1.125rem;
    line-height: 185%;
    opacity: 0.8;
}

.textoArea .conteudo p {
    margin-bottom: 1rem;
}

.textoArea .conteudo p:last-child {
    margin-bottom: 0;
}

.textoSobre .conteudo p:last-child {
    margin-bottom: 1.5rem;
}

.secondaryButton {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #805c2d;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: .4rem .4rem .4rem 0rem;
    gap: 10px;
    border-radius: 3rem;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1rem;
}

.secondaryButton .iconButton {
    background-color: var(--basecolor-yellow);
    color: var(--basecolor-pure-white);
    display: flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 2rem;
    transition: var(--base-transition);
}

.secondaryButton:hover {
    opacity: 1;
    color: var(--basecolor-black)
}

.secondaryButton:hover .iconButton {
    background-color: var(--basecolor-black)
}

.imageSobre {
    display: block;
    width: 70%;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    align-self: flex-end;
}

@media(max-width: 767px) {
    .innerSobre {
        flex-direction:column;
        margin-top: 0;
        gap: 0;
        padding-bottom: 4rem;
    }

    .textoSobre {
        padding: 2rem;
        padding-top: 8rem;
    }

    .textoArea .antetitulo {
        font-size: .7rem;
    }

    .textoArea .antetitulo:before {
        width: 7px;
        height: 7px;
        top: 0;
    }

    .textoArea h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .textoArea .conteudo {
        font-size: 1rem;
        line-height: 150%;
        opacity: 0.8;
    }

    .imageSobre {
        width: 100%;
    }
}
@media(min-width: 768px) and (max-width: 1025px){
    .innerSobre{
        flex-direction: column;
    }
    .textoSobre{padding-bottom: 0;position: relative;z-index: 4;padding-top: 3rem;}
    .imageSobre{
    margin-top: -9rem;
    }
}
/* =========================================== Passo a Passo pap  =============== */
#como-funciona {
    position: relative;
    padding-top: 2rem;
}

.innerPap {
    background-color: var(--basecolor-beige);
    margin-top: 5rem;
    padding: 2rem 0rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.innerPap:before {
    content: '';
    display: block;
    position: absolute;
    top: -4rem;
    left: 0;
    width: 100%;
    height: 4rem;
    background-image: url(./images/border1.svg);
    background-size: 100% 100%;
}

.innerPap:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 100%;
    height: 4rem;
    background-image: url(./images/border1.svg);
    background-size: 100% 100%;
    transform: rotate(180deg);
}

.textoPap {
    max-width: 800px;
    padding: 0 4.5rem;
}

.passosDoProcesso {
}

.processoSwiper .swiper-wrapper {
    align-items: stretch;
    padding-top: 5rem;
    padding-bottom: 5rem;
    box-sizing: border-box;
}

.processoSwiper .swiper-slide {
    height: auto;
    display: flex;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .2;
}
.swiper-button-next:after, .swiper-button-prev:after {
    color: #000;
    font-size: 2rem;
}

.innerSlider {
    background-color: #fff;
    border-radius: 2rem;
    padding: 1.5rem;
    padding-top: 4rem;
    position: relative;
    box-shadow: 0 38px 20px -30px rgb(0 0 0 / 15%);
    max-width: 200px;
}

.stepNumber {
    position: absolute;
    background-color: var(--basecolor-yellow);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: -30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--basecolor-pure-white);
    font-size: 40px;
    font-weight: 600;
    overflow: visible;
}

.processoSwiper .swiper-slide .stepNumber .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--basecolor-yellow);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: orbit 30s linear infinite;
}

.processoSwiper .swiper-slide:nth-child(5n+2) .stepNumber .dot {
    animation: orbit 27s linear infinite;
}

.processoSwiper .swiper-slide:nth-child(5n+3) .stepNumber .dot {
    animation: orbit 24s linear infinite;
}

.processoSwiper .swiper-slide:nth-child(5n+4) .stepNumber .dot {
    animation: orbit 21s linear infinite;
}

.processoSwiper .swiper-slide:nth-child(5n+5) .stepNumber .dot {
    animation: orbit 18s linear infinite;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(38px);
    }

    to {
        transform: rotate(360deg) translateX(38px);
    }
}

.innerSlider h3 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.innerSlider .conteudo {
    font-size: .85rem;
}

.footerPap {
    max-width: 50%;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 4.5rem;
}

@media(max-width: 767px) {
    #como-funciona {
        padding-top:5rem;
    }
    .innerPap {
        flex-direction:column;
        margin-top: 0;
        gap: 0;
    }
    
    .innerPap {
        padding: 1rem 0;
    }
    .textoPap,
    .footerPap{
        padding:0 2rem;
    }

    .processoSwiper .swiper-slide .innerSlider {
        margin: 0 4rem;
        max-width: 100%;
    }

    .footerPap {
        max-width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}
@media(min-width:768px) and (max-width:1180px){
    .processoSwiper .swiper-slide .innerSlider{
        max-width: 170px;
        padding: 1.2rem;
        padding-top: 4rem;
    }
    .processoSwiper .swiper-wrapper{
        padding-left:14px;
    }
}
@media(min-width: 1181px){
    .passosDoProcesso{
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }
}

/* =========================================== Pra quem e  =============== */
.innerPublico {
    padding: 9rem 4.5rem;
    padding-bottom: 8rem;
}

.textoPublico {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 6rem;
}

.quemESlider {
    padding-left: 5rem;
    padding-right: 5rem;
}
.quemESlider .swiper-wrapper{
    padding:1px
}

.innerSliderBola {
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    padding: 5rem 1.5rem;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: .5rem;
}

.quemESlider .swiper-slide:nth-child(even) .innerSliderBola {
    margin-top: 4rem
}

.innerSliderBola h3 {
    font-weight: 600;
    font-size: 1rem;
}

.innerSliderBola .conteudo {
    font-size: .85rem;
}

.innerSliderBola::before {
    content: "";
    position: absolute;
    width: 300px;
    aspect-ratio: 1/1;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg, #C3AA8A, #FFFFFF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.quemESlider .swiper-slide:nth-child(3n+1) .innerSliderBola:before {
    transform: rotate(90deg);
}

.quemESlider .swiper-slide:nth-child(3n+3) .innerSliderBola:before {
    transform: rotate(120deg);
}

.quemEarea .swiper-button-next {
    right: 0;
}

.quemEarea .swiper-button-prev {
    left: 0;
}

.quemESlider .swiper-slide {
}

@media(max-width: 767px) {
    .innerPublico {
        padding: 6rem 1rem;
    }

    .textoPublico {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    .quemESlider .swiper-slide:nth-child(even) .innerSliderBola {
        margin-top: 0.5rem;
    }
}

@media(max-width: 1200px) {
    .quemESlider {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

@media(max-width: 1080px) and (min-width:768px) {
    .innerSliderBola {
        transform:scale(.9);
    }
}

/* =========================================== FAQ  =============== */
.innerFAQ {
    padding: 7rem 4.5rem;
    background-color: #CAA787;
    background-image: url(./images/bgFaq.svg);
    background-repeat: no-repeat;
    background-position: top right;
}

.textoFAQ {
    color: #fff;
    max-width: 800px;
    margin-bottom: 4rem;
}
.faq-columns {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;

    background: linear-gradient(87.58deg, #FDFDFD 1.06%, #F5EEE8 99.63%);
    box-shadow: 0px 24.5562px 32.7416px -14.7337px rgba(149, 149, 149, 0.25);
    border-radius: 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--ff-title);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    color: var(--basecolor-black);
}
.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.5rem;
      line-height: 1;
transition: transform .25s ease;
}
.active .faq-icon{
    color:#D4B445;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 4rem;
}

.faq-answer-inner p:first-child {
    margin-top: 0;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .innerFAQ {
        padding: 6rem 2rem;
        background-size: contain;
    }
    .faq-columns {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-column {
        width: 100%;
        gap: 1rem;
    }

    .faq-question {
        padding: 16px;
        font-size: 1.1rem;
    }

    .faq-answer-inner {
        padding: 0 16px 16px;
        padding-left: 4rem;
    }
    .textoFAQ{
        margin-bottom:3rem;
    }
}
/* =========================================== Contato  =============== */
.innerContato{
    padding: 7rem 10rem 14rem;
    margin-top: 7rem;
    background-image: url(./images/bgContato.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    display: flex;
    gap: 5rem;
    background-size:35%;
}
.innerContato > *{
    flex: 1 1 calc(50% - 15px);
}
.textoContato{

}
ul.listaDeContatos {
    display:flex;
    flex-direction:column;
    gap:2rem;
    margin-top:2rem;
}
ul.listaDeContatos li{
    border-left:3px solid rgb(0 0 0 / 3%);
    padding:.5rem 1rem;
}

h3.tituloContatos {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.231818px;
    color: var(--basecolor-yellow);
    margin-bottom: .3rem;
}

.conteudoContatos {
    font-size:1.125rem
}
.conteudoContatos a{
}
.formularioArea{
    padding-top:2rem
}
@media(max-width: 767px) {
    .innerContato{
    padding: 6rem 2rem 10rem;
    margin-top: 0rem;
    flex-direction: column;
    gap: 3rem;
    }
    .innerContato > *{
        flex: 1 1 100%;
    }
}
@media(min-width: 768px) and (max-width: 1025px){
    .innerContato{
        padding: 1rem 3rem 5rem;
        gap: 2rem;
    }
}
/* =========================================== Footer  =============== */
.footer:before {
    content: '';
    position: absolute;
    top: -72px;
    left: 0;
    width: 100%;
    height: 75px;
    background-image: url('./images/bgFooter.svg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.footer {
    background-color: #fff;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.footerArea {
    display: flex;
    padding: 3rem 5rem;
    justify-content: space-between;
    gap: 3rem;
}

.logoFooter a {
    display: block;
    margin-bottom: 1rem;
}

.logoFooter img {
    max-width: 200px;
}

.logoFooter p {
    max-width: 350px;
    font-size: .9rem;
}

.footerContentArea {
    display: flex;
    gap: 4rem;
    font-size: .9rem;
}

.footerContentArea > * {
    flex: 1;
}

.footerContentArea h4 {
    color: var(--basecolor-yellow);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.footerContentArea > * > ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.colunaEndereco {
    line-height: 1.75;
    min-width: 190px;
}

.contatos li a {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.contatos i {
    font-size: 1rem;
}

.copyArea {
    padding: 1rem 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 12px;
    align-items: center;
}

.infoFooter {
    opacity: .7;
}

.copyArea .langSwitcher {
    position: relative;
    top: auto;
    right: auto;
    z-index: 0;
}

.copyNav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.linkFooter {
    text-decoration: underline;
}

.linkFooter:hover {
    opacity: 1;
    text-decoration: none;
}

.iframeFeatherlight iframe {
    min-height: 80vh;
}

article ul, article ol {
    padding-left: 3em;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 300;
}

article ul {
    list-style: disc;
}

article ol {
    list-style: decimal;
}

article b {
    font-weight: bolder;
}

article em, article i {
    font-style: italic;
}

article strong {
    font-weight: 600;
    text-rendering: geometricPrecision;
}

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

article blockquote {
    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;
}

article a:hover {
    color: #6b6b6b;
    text-decoration: underline;
    opacity: 1;
}

article p {
    width: 100%;
    display: inline-block;
    margin-bottom: .5rem;
    text-rendering: geometricPrecision;
    line-height: 1.2;
    font-size: 0.9rem;
}

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

article p > img.aligncenter {
    display: flex;
}

article pre {
    background-color: var(--basecolor-white);
    font-family: monospace;
    padding: 2rem;
}

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

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

article .aligncenter {
    margin: 0 auto;
    padding: 1rem;
}

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: 2rem;
    margin: 1.5rem 0;
}

article h2 {
    font-size: 1.75rem;
    margin: 1.25rem 0;
}

article h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

article h4 {
    font-size: 1.25rem;
    margin: 1rem 0;
}

article h5 {
    font-size: 1rem;
    margin: 0.75rem 0;
}

article h6 {
    font-size: 0.875rem;
    margin: 0.75rem 0;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
    text-rendering: geometricPrecision;
    font-weight: 600;
}

article figcaption {
    font-style: italic;
    font-size: .8rem;
    opacity: .5;
}

article table {
    border: 1px solid var(--basecolor-black);
    align-items: center;
}

.pageText {
    padding: 2rem;
}

.pageTitle {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

@media(max-width: 767px) {
    .footer {
        flex-direction:column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        padding-top: 0;
    }

    .copyArea {
        padding: 1rem 0;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footerArea {
        flex-direction: column;
        padding: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footerContentArea > * {
        min-width: 100%;
        flex: auto;
    }

    .footerContentArea {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 3rem;
        margin: 2rem 0;
    }

    .footerContentArea > * > ul {
        align-items: center;
    }

    .iframeFeatherlight iframe {
        min-height: 80vh;
        max-width: 80vw;
    }
    .copyNav{
        text-align:center;
        justify-content:center;
    }
    .copyArea .langSwitcher {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    }
     .copyArea .langSwitcher ul,
    .copyArea .langSwitcher ul li,
    .copyArea .langSwitcher a{
         text-align:center;
        margin:0 auto;
     }
}
@media(min-width: 768px) and (max-width: 1025px){
    .footerArea{
      padding-left:2rem;
        padding-right:2rem;
        gap:1rem;
    }
    .footerContentArea{
        gap:1.75rem;
    }
}
/* =========================================== 404  =============== */

section.single404 {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding:2rem;
    box-sizing: border-box;
    text-align: center;
}

section.single404 h2 {
    font-size: 10rem;
    line-height: 1;
    opacity: .1;
}


@media(max-width: 767px) {
    .single404 h2{
        font-size:5rem;
    }
}
