@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;300;400;500;700&display=swap');

@font-face {
    font-family: 'Motiva Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../font/MotivaSans-Thin-1.woff2') format('woff2');
}

@font-face {
    font-family: 'Puffin Light';
    font-style: normal;
    font-weight: 400;
    src: url('../font/Puffin-Display-Light.woff') format('woff');
}

@font-face {
    font-family: 'Puffin Medium';
    font-style: normal;
    font-weight: 400;
    src: url('../font/Puffin-Display-Medium.woff') format('woff');
}

@font-face {
    font-family: 'YsabeauOffice-ExtraBold';
    src: url('../font/YsabeauOffice-ExtraBold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'YsabeauOffice-Regular';
    src: url('../font/YsabeauOffice-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'YsabeauOffice-SemiBold';
    src: url('../font/YsabeauOffice-SemiBold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

.bandeira-franca-azul {
    height: 5px;
    width: 5000px;
    background-color: #08408c;
}

.bandeira-franca-vermelho {
    height: 5px;
    width: 5000px;
    background-color: #e82e34;
}

.bandeira-franca-branco {
    height: 5px;
    width: 5000px;
    background-color: #fff;
}

.bandeira-franca {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bandeira-franca-100 {
    width: 100px;
}

.bandeira-franca-150 {
    width: 150px;
}

.bandeira-franca-200 {
    width: 200px;
}

.yo {
    font-family: 'YsabeauOffice-Regular' !important;
}

.yo-bold {
    font-family: 'YsabeauOffice-ExtraBold' !important;
}

.yo-semi-bold {
    font-family: 'YsabeauOffice-SemiBold' !important;
}

.secao-h-50 {
    height: 50vh;
}

.secao-h-35 {
    height: 35vh;
}

.raios {
    width: 30vw;
    bottom: -25px;
    right: 0;
}

.palmeira {
    width: 30vw;
    top: -270px;
    right: 0;
}

::-webkit-scrollbar {
    width: 5px;
    /* largura da barra de rolagem */
}

.transparent-to-translucido {
    animation: transparentToTranslucido 0.5s ease-in-out forwards;
}

.traslucido-to-transparent {
    animation: translucidoToTransparent 0.5s ease-in-out forwards;
}

@keyframes transparentToTranslucido {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: rgba(9, 78, 143, 0.5);
    }
}

@keyframes translucidoToTransparent {
    0% {
        background-color: rgba(9, 78, 143, 0.5);
    }

    100% {
        background-color: transparent;
    }
}

::-webkit-scrollbar-thumb {
    background-color: #08408c;
    /* cor do "ponteiro" da barra de rolagem */
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

.img-banners {
    animation: zoom-out 10s infinite alternate;
}

.hover-border-laranja {
    border-bottom: 3px solid transparent;
    transition: all .7s ease-in-out;
}

.hover-border-laranja:hover {
    border-bottom: 3px solid #ff7e00;
    transition: all .7s ease-in-out;
}

@keyframes zoom-out {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes zoom-outmobile {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.puffin-light {
    font-family: 'Puffin Light', sans-serif !important;
}

.puffin-medium {
    font-family: 'Puffin Medium', sans-serif !important;
}

.motiva-sans-thin {
    font-family: 'Motiva Sans', sans-serif !important;
}

.caracteres-mais-separados {
    letter-spacing: 5px;
}



.nav-link {
    border-bottom: 1px solid transparent !important;
    font-weight: 600;
    transition: all .7s ease-in-out;
}

.nav-link:hover {
    border-bottom: 1px solid #08408c !important;
    color: #aaa !important;
    transition: all .7s ease-in-out;
}

.monsterrat {
    font-family: 'Montserrat', sans-serif !important;
}

.roboto {
    font-family: 'Roboto', sans-serif !important;
}

.space-mono {
    font-family: 'Space Mono', monospace !important;
}

.roboto-mono {
    font-family: 'Roboto Mono', monospace !important;
}

.fonte-quadrada {
    font-family: monospace;
}

.text-justify {
    text-align: justify !important;
}

.vh-50 {
    height: 50vh;
}

.vh-70 {
    height: 70vh;
}

.vh-90 {
    height: 90vh;
}

.vh-80 {
    height: 80vh;
}

.overflox-x-hidden {
    overflow-x: hidden !important;
}

.icones-home {
    height: 100px;
}

.hover-zoom {
    transition: all .3s ease-in-out;
}

.hover-zoom:hover {
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

.hover-escurece {
    transition: all .5s ease-in-out;
}

.hover-escurece:hover {
    filter: brightness(0.5);
    transition: all .5s ease-in-out;
}

.hover-clareia {
    transition: all .5s ease-in-out;
    filter: brightness(0.5);
}

.hover-clareia:hover {
    filter: brightness(0.8);
    transition: all .5s ease-in-out;
}



.bg-translucido {
    background-color: rgba(0, 22, 48, 0.568);
}

.escuro {
    color: #141517;
}

.bg-escuro {
    background-color: #141517;
}

.azul-escuro {
    color: #002f66 !important;
}

.laranja {
    color: #ff7e00 !important;
}

.bg-azul-escuro {
    background-color: #002f66;
}

.bg-laranja {
    background-color: #ff7e00;
}

.btn-azul-escuro {
    background-color: #002f66;
    color: #fff;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.btn-azul-escuro:hover {
    background-color: #fff;
    color: #002f66;
    border: 1px solid #002f66;
    transform: scale(1.05);
    transition: all .3s ease-in-out;
}

.btn-laranja {
    background-color: #ff7e00;
    color: #fff;
}

.btn-laranja:hover {
    background-color: #fd683f;
    color: #fff !important;
}

.bg-verde-agua {
    background-color: #65cfa9;
}

.gold {
    color: #ddc68b !important;
}

.bg-gold {
    background-color: #ddc68b;
}

.btn-gold {
    background-color: #ddc68b;
    color: #00123c;
}

.btn-gold:hover {
    background-color: #e8d9a0;
    color: #00123c;
}

.btn-fixo-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    text-decoration: none;
}


.btn-fixo-wpp:hover {
    background-color: #17853f;
    color: #fff;
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}



.border-laranja {
    border: 1px solid #ff7e00;
}

.border-transparent {
    border: 1px solid transparent;
}

.circulo-30 {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circulo-50 {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.text-azul-escuro {
    color: #002f66 !important;
}

iframe {
    width: 100% !important;
}

.sombra-small {
    box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
}

.bg-cinza {
    background-color: #dbdbdb;
}

.bg-mobile-light {
    background-color: transparent;
}

.fonte-home {
    font-size: 100px;
    font-weight: 600;
    color: #fff;
}

.carousel-servicos {
    height: 200px;
}

.hover-dark {
    background-color: #141517 !important;
    color: #fff;
    transition: all .7s ease-in-out;
}

.hover-dark:hover {
    background-color: #303030 !important;
    color: #fff;
    transition: all .7s ease-in-out;
    filter: brightness(1.5);
}

.imgs-rotacionam {
    width: calc(50% - 20px);
}

.casal-praia {
    background-image: url('../img/casal_praia.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.praia {
    background-image: url('../img/praia.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.praia2 {
    background-image: url('../img/praia2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.palmeira-casa {
    background-image: url('../img/palmeira_casa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.masterplan {
    background-image: url('../img/masterplan_oleron.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.imgfinal {
    background-image: url('../img/imgfinal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.render {
    background-image: url('../img/render.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.barra-fixa {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 30vw;
    z-index: 9999;
    border-top-left-radius: 30px;
}

.border-azul {
    border: 1px solid #002f66 !important;
}

#navbar {
    z-index: 99999;
}

/* menor que lg */
@media (max-width: 1809px) {

    .raios {
        display: none;
    }

    .palmeira {
        display: none;
    }
}


/* maior de 992 */
@media (max-width: 992px) {
    .bg-mobile-light {
        background-color: #f5f5f5;
    }

    .fonte-home {
        font-size: 35px;
    }

    .imgs-rotacionam {
        width: calc(50% - 20px);
    }

    .img-banners {
        animation: zoom-outmobile 10s infinite alternate;
    }

    .barra-fixa {
        position: fixed;
        bottom: 30px;
        left: 0;
        width: 100%;
        z-index: 9999;
        border-top-left-radius: 0px;
    }
}