@charset "UTF-8";

*{
    margin: 0px;
    padding: 0px;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

:root{
    --cor1: #ff004f;
    --cor2: #00264c;
}

#headerHome{
    background-image: url(IMG/image\ 2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

header{
    width: 100%;
    height: 76px;
    position: relative;
}

#headerContainer{
    background-color: var(--cor2);
    width: 100%;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99;
}

nav{
    width: 1130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo{
    width: 187px;
}

menu{
    display: flex;
    align-items: center;
    gap: 15px;
}

menu a{
    color: white;
    font-size: 14px;
}

/* menu a::after{
    content: "";
    width: 0%;
    height: 3px;
    margin-top: 10px;
    background-color: var(--cor1);
    transition: .5s ease-in-out;
} */

menu a:hover{
    color: var(--cor1);
    transition: .5s;
}

/* menu a:hover::after{
    width: 100%;
} */


#headerContato{
    color: white;
    background-color: var(--cor1);
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

#headerContato:hover{
    background-color: white;
    color: var(--cor1);
    transition: .5s;
}

section#home{
    background-image: linear-gradient(to right, rgba(0, 38, 76, 0.83), rgb(255, 0, 79, 0.83));
    height: 1250px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#homeCorpo{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0px 60px 0px;
    width: 1130px;
    color: white;
}

#homeContainerTopo{
    display: flex;
    justify-content: space-between;
}

#homeContainerTopoLeft{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#homeCaixaAzul, #homeItensContainer, .homeItem,#homeContainerTopoIMG{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showItem .5s .5s linear 1 forwards;
}


#homeCaixaAzul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background-color: var(--cor2);
    width: 551px;
    height: 432px;
    padding: 32px 20px;
    border-radius: 10px;
    border: 1px solid #ffffff4f;
    animation-delay: .3s;
}

#h1AndPHomeCaixaAzul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#h1AndPHomeCaixaAzul h1{
    font-size: 40px;
    font-weight: 500;
}

#homeCaixaAzulP{
    display: flex;
    align-items: center;
    gap: 4px;
}

#homeCaixaAzulP p{
    font-size: 14px;
    font-weight: 400;
}

#homeCaixaAzulP p strong{
    color: var(--cor1);
    font-weight: 700;
}

div#homeCaixaAzulLista{
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 58px;
}

.columHomeCaixaAzul{
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.columHomeCaixaAzul p{
    font-size: 14px;
    font-weight: 400;
}

#ContactButtonsHomeCaixaAzul{
    display: flex;
    gap: 16px;
}

.ContBtnHomeCaixaAzul{
    color: white;
    background-color: var(--cor1);
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.ContBtnHomeCaixaAzul:hover{
    background-color: white;
    color: var(--cor1);
    transition: .5s;
}

.ContBtnHomeCaixaAzul:nth-child(2){
    background-color: white;
    color: var(--cor1);
}

.ContBtnHomeCaixaAzul:nth-child(2):hover{
    background-color: var(--cor1);
    color: white;
    transition: .5s;
}

#homeItensContainer{
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation-delay: .3s;
}

.homeItem{
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    width: 550px;
    height: 84px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.homeItem:nth-child(1){
    animation-delay: .5s;
}

.homeItem:nth-child(2){
    animation-delay: .7s;
}

.homeItem:nth-child(3){
    animation-delay: .9s;
}

.homeItem:nth-child(4){
    animation-delay: 1.1s;
}

.homeItemPContainer{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.homeItemPContainer p{
    font-weight: 400;
}

.homeItemPContainer p:nth-child(2){
    font-size: 12px;
}

#homeContainerTopoIMG{
    transform: translateX(60px);
}


#homeContainerTopoIMG{
    width: 700px;
    margin-bottom: -40px;
    animation-delay: 1.4s;
}


@keyframes showItem{
    
    to{
        transform: translateY(0px);
        transform: translateX(0px);
        filter: blur(0);
        opacity: 1;
    }
}



#homeCaixaBottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 1120px;
    height: 279px;
    background-image: linear-gradient(to right, rgba(255, 0, 79, .3), rgba(0, 38, 76, .4));
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 24px;
}

#homeCaixaBottom h1{
    font-size: 36px;
    font-weight: 400;
    text-align: center;
}

#homeCaixaBottom p{
    width: 904px;
    text-align: center;
    font-weight: 400;
}

#homeCaixaBottom a{
    background-color: var(--cor1);
    padding: 10px;
    border-radius: 5px;
    color: white;
}

#homeCaixaBottom a:hover{
    background-color: white;
    color: var(--cor1);
    transition: .5s;
}


section#AboutUs{
    background-image: linear-gradient(to right, rgba(0, 31, 62, 1),rgba(0, 38, 76, 1));
    height: 755px;
    padding: 32px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#aboutUsTitle{
    background-color: rgba(255, 0, 79, 0.2);
    padding: 16px;
    border-radius: 50px;
    color: var(--cor1);
    font-weight: 400;
}

#aboutUsTeaser{
    font-size: 64px;
    color: white;
    width: 847px;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#aboutUsContainer{
    width: 1108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#aboutUsLeftBox{
    background: rgba(255, 255, 255, 0.1);
    width: 530px;
    height: 272px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    backdrop-filter: blur(32px);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#aboutUsLeftBox h2{
    color: white;
    font-size: 18px;
    font-weight: 400;
}

#aboutUsLeftBox h2 strong{
    color: var(--cor1);
    font-weight: 600;
}

#aboutUsLeftBox p{
    font-size: 12px;
    font-weight: 400;
    color: white;
}

#aboutUsLeftBox p strong{
    color: var(--cor1);
    font-weight: 600;
}

/* #aboutUsLeftBox p:nth-last-child(1){
    color: var(--cor1);
    font-weight: 700;
} */

#aboutUsItensContainer{
    width: 530px;
    display: flex;
    flex-direction: column;
    gap: 16px   ;
}

.aboutUsItem{
    width: 100%;
    height: 84px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    padding: 0px 26px;
    backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, .1)
}

#aboutUsItensContainer .colorido{
    background: linear-gradient(90deg, rgba(255, 0, 79, 0.35) 0%, rgba(0, 38, 76, 0.35) 100%);
    border: 1px solid rgba(255, 0, 79, .1);
}

.aboutItemPcontainer{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aboutItemPcontainer p{
    color: white;
    font-weight: 400;
}

.aboutItemPcontainer p:nth-child(2){
    font-size: 12px;
}

/* #AboutUsIMG{
    width: 800px;
    border-radius: 20px;
} */


#Services{
    height: 1254px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 36px;
}

#servicesTitleContainer{
    width: 749px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#servicesTitle{
    text-transform: uppercase;
    background: rgba(255, 0, 79, 0.2);
    color: var(--cor1);
    font-weight: 400;
    padding: 16px;
    border-radius: 50px;
}

#servicesTitleContainer h1{
    font-size: 64px;
    font-weight: 400;
    text-align: center;
}

#servicesTeaser{
    font-size: 14px;
    text-align: center;
}

#servicesItensContainer{
    width: 1120px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.servicesItem{
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    box-shadow: -1px 1px 3.6px 0px rgba(84, 84, 84, 0.25);
    border-radius: 10px;
    /* ----- */
    align-items: center;
}

.servicesItem p{
    font-weight: 400;
    text-align: center;
}

.servicesItem p:nth-child(3){
    font-size: 14px;
    color: rgba(41, 40, 40, 1);
}

#servicesBottomBox{
    background: linear-gradient(90deg, #00264C 0%, #FF004F 100%);
    width: 1120px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    border-radius: 10px;
}

#servicesBottomBox h1{
    font-size: 36px;
    color: white;
    font-weight: 400;
}

#servicesBottomBox p{
    color: white;
    font-size: 14px;
    font-weight: 400;
}

#servicesBottomBox a{
    background-color: white;
    color: black;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
}

#servicesBottomBox a:hover{
    color: var(--cor1);
    transform: translateY(5px);
    transition: .5s;
}

#Pacotes{
    background: linear-gradient(90deg, #001F3E 0%, #00264C 100%);
    height: 1758px;
    padding: 32px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

#pacotesTitle{
    background: rgba(255, 0, 79, 0.2);
    padding: 16px;
    border: 1px solid rgba(255, 0, 79, .1);
    border-radius: 50px;
    text-transform: uppercase;
    color: var(--cor1);
    font-weight: 400;
}

#pacotesH1Top{
    color: white;
    max-width: 843px;
    font-size: 64px;
    font-weight: 400;
    text-align: center;
}

#pacotesTeaser{
    text-align: center;
    color: white;
    font-weight: 400;
}

.pacotesSubTitle{
    display: flex;
    align-items: center;
    font-weight: 400;
    gap: 10px;
    font-size: 32px;
    color: white;
}


.pacotesPlacesContainer{
    width: 1092px;
    height: 421px;
    display: flex;
    gap: 21px;
}

.pacotesPlacesItem{
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 540px;
    height: 421px;
    padding-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
}

.pacotesPlacesItemInfo{
    width: 486px;
    height: 126px;
    padding: 0px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pacotesPlacesItemInfo h2{
    font-size: 18px;
    font-weight: 400;
    color: var(--cor1);
}

.placesItemSubTitle{
    color: white;
    font-size: 14px;
    font-weight: 400;
}

.pacotesPlacesItemInfo .placesItemLocates{
    width: 187px;
    display: flex;
    gap: 8px;
}

.placesItemLocatesItem{
    padding: 2px;
    background: rgba(255, 0, 79, 0.15);
    color: var(--cor1);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

.placesItemInfoBottom{
    color: white;
    display: flex;
    justify-content: space-between;
}

.placesItemInfoBottom p:nth-child(1){
    font-weight: 700;
}

.placesItemInfoBottom p:nth-child(2){
    background: rgba(255, 255, 255, 1);
    color: var(--cor1);
    font-size: 12px;
    font-weight: 400;
    padding: 4px 5px;
    border: 1px solid rgba(255, 0, 79, .1);
    border-radius: 5px;
}

.requestLink{
    color: var(--cor1);
}

.requestLink:hover{
    color: var(--cor2);
    transition: .5s;
}


#pacotesBottomContainer{
    width: 1121px;
    display: flex;
    flex-direction: column;

    gap: 36px;
}


#pacotesBottomContainer .pacotesPlacesContainer{
    gap: 17px;
}

#pacotesBottomContainer .pacotesSubTitle{
    width: 100%;
    display: flex;
    justify-content: center;
}


#pacotesBottomContainer .pacotesPlacesItem{
    width: 361px;
}

#pacotesBottomContainer .placesItemInfoBottom{
    width: 100%;
    justify-content: flex-start;
    gap: 77px;
}


#pacotesSubTitleBottom{
    font-size: 32px;
    font-weight: 400;
    color: white;
}

#pacotesBottomBox{
    width: 1121px;
    display: flex;
    justify-content: space-between;

}

.pacoteBottomBoxItem{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 364px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 10px;
}

#pacotesBottomBox .colorida{
    background: linear-gradient(180deg, rgba(255, 0, 79, 0.3) 0%, rgba(153, 0, 47, 0.3) 100%);
}

.pacoteBottomBoxItemCentro{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    width: 147px;
    height: 149px;
}

.pacoteBottomBoxItemCentro p{
    color: white;
    text-align: center;
}

.pacoteBottomBoxItemCentro p:nth-child(2){
    font-size: 14px;
}

.pacoteBottomBoxItemCentro p:nth-child(3){
    color: #c7c7c7;
    font-size: 12px;
}

.pacoteBottomBoxItemCentro a{
    background-color: var(--cor1);
    color: white;
    font-size: 12px;
    font-weight: 400;
    padding: 5px;
    border-radius: 5px;
}

.pacoteBottomBoxItemCentro a:hover{
    background-color: white;
    color: var(--cor1);
    transform: translateY(3px);
    transition: .5s;
}


section#Depoimentos{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px;
    min-height: 600px;
}

#depoimentosTitle{
    font-size: 64px;
    font-weight: 400;
}

#depoimentosTeaser{
    font-size: 14px;
    font-weight: 400;
}


#depoimentosContainer{
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.depoimentoCard{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 500px;
    height: 260px;
    padding: 32px;
    border: 1px solid rgba(184, 184, 184, 1);
    border-radius: 24px;
    position: relative;
}

/* .depoimentosAspas{
    background-color: var(--cor1);
    width: 35px;
    padding: 2px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
} */

.depoimentoCardInfo{
    width: 100%;
    color: rgba(15, 17, 37, .7);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-style: italic;
    line-height: 28px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 239, 245, 1);
}

.depoimentoContainerStars{

}

.depoimentoClienteInfo{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.depoimentoClienteInfo p:nth-child(1){
    font-weight: 700;
}

.depoimentoClienteInfo p:nth-child(2){
    font-weight: 300;
    font-size: 14px;
}

.depoimentoClienteInfo p:nth-child(3){
    color: var(--cor1);
    font-size: 14px;
}

div#contatoEnvolver{
    background-image: url(IMG/Mala\ rosa.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

section#contato{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    /* background-color: #f9fafc; */
    background-image: linear-gradient(to right, rgba(0, 38, 76, 0.5), rgb(255, 0, 79, 0.5));
    padding: 80px 30px;
    height: auto;
}

#contatoTitleContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#contatoTitle{
    font-size: 32px;
    font-weight: 400;
}

#contatoTeaser{
    color: #000000b2;
    font-weight: 400;
}

#contatoContainer{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

#contatoFormContainer{
    background-color: white;
    width: 960px;
    min-height: 470px;
    padding: 40px 20px;
    border: 1px solid rgba(179, 179, 179, .4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contatoFormTitleContainer{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#contatoFormTitle{
    font-weight: 700;
}

#contatoFormTeaser{
    color: #00000086;
}

form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#inputsContainer{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.inputContainer{
    display: flex;
    flex-direction: column;
}

.inputContainer label{
    font-weight: 700;
}

.inputContainer input, select{
    background-color: #e7e7e7;
    width: 450px;
    font-size: 16px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    color: gray;
}

.inputContainer textarea{
    padding: 15px;
    background-color: #e7e7e7;
    border: none;
    border-radius: 5px;
}

#ContatoSubmitBtn{
    background-color: var(--cor1);
    color: white;
    padding: 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

#ContatoSubmitBtn:hover{
    background-color: var(--cor2);
    font-weight: 700;
    transition: .5s;
}


#contatoOtherContainer{
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.OthersContainer{
    background-color: white;
    padding: 20px;
    border: 1px solid rgba(179, 179, 179, .4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.OthersContainer a{
    width: 40px;
    height: 40px;
    color: var(--cor2);
    background-color: #ff00514d;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.OthersContainer a:hover{
    color: var(--cor1);
    background-color: #00264c;
    transition: .5s;
}


#contatoOtherChanels{
    
}

.IconContainer{
    display: flex;
    gap: 10px;
}

.iconPContainer{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.iconPContainer p:nth-child(1){
    font-weight: 700;
}

.iconPContainer p:nth-child(2){
    font-size: 12px;
    color: #00000085;
}

#contatoSocialContainer{
    
}

.othersTitle{
    color: #000000af;
}

#channelsICons{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

#socialIcons{
    display: flex;
    gap: 15px;
}


footer{
    padding: 80px 100px;
    background-color: var(--cor2);
    height: 400px;
    display: flex;
    width: 100%;
}


#footerContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#footerContainerInfo{
    display: flex;
    gap: 300px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ffffff23;
    font-weight: 400;
}

#footerLeftBox{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#footerLeftBox p{
    line-height: 1.8em;
    color: white;
    width: 450px;
}

footer #socialIcons a{
    color: white;
    font-size: 30px;
}

footer #socialIcons a:hover{
    color: var(--cor1);
    transition: .5s;
}

#footerCentroBox{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#footerCentroBox h2{
    color: white;
    font-size: 16px;
}

#footerLinks{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footerLinks a{
    color: white;
    font-size: 14px;
}

#footerLinks a:hover{
    color: var(--cor1);
    transition: .5s;
}

#footerRightBox{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#footerRightBox h2{
    color: white;
    font-size: 16px;
}

#footerContato{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footerContato p{
    color: white;
    font-size: 14px;
}


#footerCopyRightContainer{
    color: white;
    font-size: 14px;
}

#footerCopyRightContainer{
    display: flex;
    justify-content: space-between;
}

#footerCopyRightContainer p{
    color: #ffffff85;
}

#footerCopyRightContainer p i{
    font-size: 16px;
}

#footerCopyRightContainer p:nth-child(2) i{
    color: var(--cor1);
}

















@media (max-width: 1400px) {

    nav{
        width: 900px;
    }

    section#home{
        height: auto;
    }

    #homeCorpo{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px 0px 60px 0px;
        width: 900px;
        gap: 30px;
    }

    #homeContainerTopo{
        gap: 30px;
    }


    #homeCaixaAzul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        width: auto;
        height: auto;
        padding: 20px;
        border-radius: 10px;
    }
    
    #h1AndPHomeCaixaAzul{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    #h1AndPHomeCaixaAzul h1{
        font-size: 35px;
        font-weight: 500;
    }

    .homeItem{
        display: flex;
        align-items: center;
        gap: 6px;
        width: 400px;
        height: 84px;
        padding: 26px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

    #homeContainerTopoIMG{
        width: 488px;
    }


    #homeCaixaBottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 900px;
        height: 279px;
        border-radius: 10px;
        padding: 24px;
    }
    
    #homeCaixaBottom h1{
        font-size: 25px;
        font-weight: 400;
        text-align: center;
    }
    
    #homeCaixaBottom p{
        width: auto;
        text-align: center;
        font-weight: 400;
    }
    
    #homeCaixaBottom a{
        background-color: var(--cor1);
        padding: 10px;
        border-radius: 5px;
        color: white;
    }



    section#AboutUs{
        height: auto;
        padding: 32px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    #aboutUsTitle{
        background-color: rgba(255, 0, 79, 0.2);
        padding: 16px;
        border-radius: 50px;
        color: var(--cor1);
        font-weight: 400;
    }
    
    #aboutUsTeaser{
        font-size: 50px;
        color: white;
        max-width: 847px;
        font-weight: 400;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    #aboutUsContainer{
        width: 900px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
    
    #aboutUsLeftBox{
        max-width: 470px;
        height: 272px;
        padding: 18px 22px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }
    
    #aboutUsItensContainer{
        width: 400px;
        display: flex;
        flex-direction: column;
        gap: 16px   ;
    }
    
    .aboutUsItem{
        width: 100%;
        height: 84px;
        display: flex;
        align-items: center;
        gap: 6px;
        border-radius: 10px;
        padding: 0px 26px;
    }


    #Services{
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 36px;
    }
    
    #servicesTitleContainer{
        width: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    #servicesTitle{
        text-transform: uppercase;
        background: rgba(255, 0, 79, 0.2);
        color: var(--cor1);
        font-weight: 400;
        padding: 16px;
        border-radius: 50px;
    }
    
    #servicesTitleContainer h1{
        font-size: 50px;
        font-weight: 400;
        text-align: center;
    }
    
    #servicesItensContainer{
        width: 900px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .servicesItem{
        width: 360px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
        box-shadow: -1px 1px 3.6px 0px rgba(84, 84, 84, 0.25);
        border-radius: 10px;
    }
    
    #servicesBottomBox{
        width: 900px;
        padding: 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        border-radius: 10px;
    }
    
    #servicesBottomBox h1{
        font-size: 30px;
        color: white;
        font-weight: 400;
    }
    
    #servicesBottomBox a{
        background-color: white;
        color: black;
        font-size: 16px;
        font-weight: 600;
        padding: 10px;
        border-radius: 5px;
    }


    #Pacotes{
        height: auto;
        padding: 32px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    
    #pacotesH1Top{
        color: white;
        max-width: 843px;
        font-size: 50px;
        font-weight: 400;
        text-align: center;
    }
    
    
    .pacotesPlacesContainer{
        width: 900px;
        height: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 21px;
    }
    
    .pacotesPlacesItem{
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 400px;
        height: auto;
        padding-bottom: 18px;
        border-radius: 10px;
    }
    
    .pacotesPlacesItemInfo{
        width: auto;
        height: 126px;
        padding: 0px 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .placesItemInfoBottom{
        color: white;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    #pacotesBottomContainer{
        width: 900px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }
    
    
    #pacotesBottomContainer .pacotesPlacesItem{
        width: 361px;
    }
    
    #pacotesBottomContainer .placesItemInfoBottom{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0px;
    }
    
    #pacotesBottomBox{
        width: 900px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    
    }


    section#Depoimentos{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 60px;
        height: auto;
    }
    
    #depoimentosTitle{
        font-size: 50px;
        font-weight: 400;
    }
    
    
    #depoimentosContainer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }
    
    .depoimentoCard{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 420px;
        height: 260px;
        padding: 32px;
        border-radius: 24px;
    }


    section#contato{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 80px 30px;
        height: auto;
    }
    
    #contatoContainer{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 50px;
    }
    
    #contatoFormContainer{
        background-color: white;
        width: 800px;
        min-height: 470px;
        padding: 40px 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    
    #footerContainerInfo{
        gap: 80px;
    }
}

/* --------------------------------------------------------------------------- */

@media (max-width: 950px) {

    nav{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 50px;
        row-gap: 10px;
        width: 100%;
        padding-inline: 20px;
    }
    
    #logo{
        width: 120px;
    }
    
    #headerContato{
        display: none;
    }

    #homeCorpo{
        align-items: center;
    }

    #homeContainerTopo{
        flex-wrap: wrap;
        justify-content: center;
    }


    #homeCaixaAzul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        max-width: 400px;
        height: auto;
        padding: 20px;
        border-radius: 10px;
    }

    #homeContainerTopoIMG{
        width: 486px;
        margin: 0px;
    }

    #homeCaixaBottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 480px;
        height: auto;
        border-radius: 10px;
        padding: 24px;
    }


    #aboutUsTeaser{
        font-size: 35px;
        color: white;
        width: auto;
        font-weight: 400;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    #aboutUsContainer{
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }


    #servicesTitleContainer{
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    #servicesTitleContainer h1{
        font-size: 35px;
        font-weight: 400;
        text-align: center;
    }
    
    #servicesItensContainer{
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .servicesItem{
        width: 300px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
        box-shadow: -1px 1px 3.6px 0px rgba(84, 84, 84, 0.25);
        border-radius: 10px;
    }


    #servicesBottomBox{
        width: 480px;
        padding: 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        border-radius: 10px;
    }
    
    #pacotesH1Top{
        color: white;
        width: auto;
        font-size: 35px;
        font-weight: 400;
        text-align: center;
    }
    
    
    .pacotesPlacesContainer{
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 21px;
    }
    
    .pacotesPlacesItem{
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 400px;
        height: auto;
        padding-bottom: 18px;
        border-radius: 10px;
    }
    
    .pacotesPlacesItemInfo{
        width: auto;
        height: 126px;
        padding: 0px 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    
    #pacotesBottomContainer{
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 36px;
    }
    
    
    #pacotesBottomContainer .pacotesPlacesItem{
        width: 361px;
    }
    
    #pacotesBottomContainer .placesItemInfoBottom{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0px;
    }
    
    #pacotesBottomBox{
        width: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    
    }


    #depoimentosTitle{
        font-size: 35px;
        font-weight: 400;
        text-align: center;
    }


    #contatoFormContainer{
        width: auto;
        min-height: auto;
        padding: 40px 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    .inputContainer input, select{
        background-color: #e7e7e7;
        width: 100%;
        font-size: 16px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        color: gray;
    }


    footer{
        padding: 30px;
        height: auto;
        display: flex;
        width: 100%;
    }
    
    
    #footerContainer{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    #footerContainerInfo{
        display: flex;
        gap: 80px;
        padding-bottom: 40px;
        border-bottom: 1px solid #ffffff23;
        font-weight: 400;
        flex-wrap: wrap;
    }
    
    #footerLeftBox{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    #footerLinks{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #footerContato{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #footerCopyRightContainer{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

}



/* -------------------------------------------------------------- */


@media (max-width: 500px) {

    header{
        background-color: var(--cor2);
        width: 100%;
        min-height: 76px;
        position: relative;
    }
    
    #headerContainer{
        background-color: var(--cor2);
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        padding-bottom: 10px;
        z-index: 99;
    }

    menu{
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 5px;
    }

    #homeCaixaAzul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        max-width: 320px;
        height: auto;
        padding: 20px;
        border-radius: 10px;
    }

    #h1AndPHomeCaixaAzul h1{
        font-size: 24px;
    }

    #homeItensContainer{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .homeItem{
        display: flex;
        align-items: center;
        gap: 6px;
        width: 320px;
        height: 84px;
        padding: 20px;
    }

    #homeContainerTopoIMG{
        width: 336px;
    }

    #homeCaixaBottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 320px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
    }

    #homeCaixaBottom h1{
        font-size: 24px;
        font-weight: 700;
        text-align: center;
    }
    
    #homeCaixaBottom p{
        text-align: center;
        font-size: 14px;
    }

    #aboutUsContainer{
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }


    #aboutUsTeaser{
        font-size: 24px;
        color: white;
        width: auto;
        font-weight: 400;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #aboutUsLeftBox{
        max-width: 320px;
        height: auto;
        padding: 18px 22px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }
    
    #aboutUsItensContainer{
        width: auto;
        display: flex;
        flex-direction: column;
        gap: 16px   ;
    }
    
    .aboutUsItem{
        width: 320px;
        height: 84px;
        display: flex;
        align-items: center;
        gap: 6px;
        border-radius: 10px;
        padding: 0px 26px;
    }
    
    #servicesTitleContainer h1{
        font-size: 24px;
        font-weight: 400;
        text-align: center;
    }
    
    #servicesItensContainer{
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }


    #servicesBottomBox{
        width: 320px;
        padding: 42px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        border-radius: 10px;
    }


    #servicesBottomBox h1{
        font-size: 24px;
        color: white;
        font-weight: 400;
    }
    
    #servicesBottomBox p{
        color: white;
        font-size: 14px;
        font-weight: 400;
    }
    
    #servicesBottomBox a{
        background-color: white;
        color: black;
        font-size: 12px;
        padding: 5px;
        border-radius: 5px;
    }
    
    
    

    #pacotesH1Top{
        color: white;
        width: auto;
        font-size: 24px;
        font-weight: 400;
        text-align: center;
    }

    #pacotesTeaser{
        text-align: center;
        color: rgba(255, 255, 255, 0.678);
        font-size: 14px;
    }
    
    .pacotesSubTitle{
        display: flex;
        align-items: center;
        font-weight: 400;
        gap: 10px;
        font-size: 20px;
        color: white;
    }
    
    
    .pacotesPlacesContainer{
        width: auto;
        height: auto;
        display: flex;
        justify-content: center;
        /* align-items: center; */
        flex-wrap: wrap;
        gap: 21px;
    }
    
    .pacotesPlacesItem{
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 320px;
        height: auto;
        padding-bottom: 18px;
        border-radius: 10px;
    }
    
    .pacotesPlacesItemInfo{
        width: auto;
        height: auto;
        padding: 0px 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pacotesPlacesItemInfo h2{
        font-size: 16px;
        font-weight: 600;
        color: var(--cor1);
    }
    
    .placesItemSubTitle{
        color: #ffffffdc;
        font-size: 14px;
        font-weight: 400;
    }

    .pacotesPlacesItemInfo .placesItemLocates{
        width: auto;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .placesItemLocatesItem{
        padding: 2px;
        font-size: 10px;
        font-weight: 400;
        text-align: center;

    }
    
    .placesItemInfoBottom{
        color: white;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    #pacotesBottomContainer .pacotesPlacesItem{
        width: 300px;
    }
    
    #pacotesBottomContainer .placesItemInfoBottom{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0px;
    }
    
    #pacotesBottomBox{
        width: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    

    #pacotesSubTitleBottom{
        font-size: 24px;
        font-weight: 400;
        color: white;
    }
    
    .pacoteBottomBoxItem{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
    }
    
    .pacoteBottomBoxItemCentro{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        width: auto;
        height: auto;
    }
    
    .pacoteBottomBoxItemCentro p{
        color: white;
        text-align: center;
    }


    #depoimentosTitle{
        font-size: 24px;
        font-weight: 400;
        text-align: center;
    }

    #depoimentosTeaser{
        font-size: 12px;
        font-weight: 400;
        text-align: center;
    }

    #depoimentosContainer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }
    
    .depoimentoCard{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 300px;
        height: auto;
        padding: 32px;
        border-radius: 24px;
    }

    section#contato{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 80px 30px;
        height: auto;
    }

    #contatoTitleContainer{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    #contatoTitle{
        font-size: 24px;
        font-weight: 400;
        text-align: center;
    }
    
    #contatoTeaser{
        color: #000000b2;
        font-weight: 400;
        font-size: 12px;
        text-align: center;
    }
    
    #contatoContainer{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }


    #contatoFormContainer{
        width: auto;
        min-height: auto;
        padding: 40px 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    .inputContainer input, select{
        background-color: #e7e7e7;
        width: 100%;
        font-size: 16px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        color: gray;
    }

    input#iwhatsApp, #iwhatsAppLabel{
        display: none;
    }

    input#iemail, #iemailLabel{
        display: none;
    }



    footer{
        padding: 20px;
        height: auto;
        display: flex;
        width: 100%;
    }
    
    #footerContainer{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    #footerContainerInfo{
        display: flex;
        gap: 30px;
        padding-bottom: 40px;
        border-bottom: 1px solid #ffffff23;
        font-weight: 400;
        flex-wrap: wrap;
    }
    
    #footerLeftBox{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #footerLeftBox p{
        width: auto;
    }
    
    #footerLinks{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #footerContato{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #footerCopyRightContainer{
        display: flex;
        /* justify-content: space-between; */
        flex-wrap: wrap;

        /* ------ */
        justify-content: center;
    }

    #footerCopyRightContainer p{
        text-align: center;
    }

}




@media (max-width: 350px) {

    #homeCaixaAzul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        max-width: 220px;
        height: auto;
        padding: 20px;
        border-radius: 10px;
    }

    #h1AndPHomeCaixaAzul h1{
        font-size: 20px;
    }

    #homeCaixaAzulP p{
        font-size: 12px;
    }

    .columHomeCaixaAzul p{
        font-size: 12px;
    }

    .ContBtnHomeCaixaAzul:nth-child(2){
        display: none;
    }
    
    .homeItem{
        display: flex;
        align-items: center;
        gap: 6px;
        width: 230px;
        height: auto;
        padding: 20px;
        flex-wrap: wrap;
    }

    .homeItem img{
        width: 30px;
    }

    .homeItemPContainer p{
        font-size: 12px;
    }
    
    .homeItemPContainer p:nth-child(2){
        font-size: 8px;
    }

    #homeContainerTopoIMG{
        width: 236px;
    }

    #homeCaixaBottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 230px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
    }

    #homeCaixaBottom h1{
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
    
    #homeCaixaBottom p{
        text-align: center;
        font-size: 10px;
    }

    #homeCaixaBottom a{
        font-size: 12px;
    }

    #aboutUsTitle{
        padding: 10px;
        border-radius: 50px;
        font-size: 14px;
    }

    #aboutUsTeaser{
        font-size: 20px;
        color: white;
        width: auto;
        font-weight: 400;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #aboutUsLeftBox{
        max-width: 230px;
        height: auto;
        padding: 18px 22px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }
    
    #aboutUsItensContainer{
        width: auto;
        display: flex;
        flex-direction: column;
        gap: 16px   ;
    }
    
    .aboutUsItem{
        width: 230px;
        height: auto;
        display: flex;
        align-items: center;
        gap: 6px;
        border-radius: 10px;
        padding: 10px 26px;
        flex-wrap: wrap;
    }

    .aboutUsItem p:nth-child(1){
        font-size: 12px;
    }

    .aboutUsItem p:nth-child(2){
        font-size: 8px;
    }

    .aboutUsItem img{
        width: 30px;
    }

    #servicesTitle{
        font-size: 14px;
        padding: 10px;

    }

    #servicesTitleContainer h1{
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }

    #servicesTitleContainer p:nth-child(3){
        font-size: 12px;
    }
    
    #servicesItensContainer{
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .servicesItem{
        width: 230px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .servicesItem img{
        width: 50px;
    }

    .servicesItem p:nth-child(2){
        font-size: 16px;
    }

    .servicesItem p:nth-child(3){
        font-size: 12px;
    }


    #servicesBottomBox{
        width: 230px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        border-radius: 10px;
    }


    #servicesBottomBox h1{
        font-size: 20px;
        color: white;
        font-weight: 400;
    }
    
    #servicesBottomBox p{
        color: white;
        font-size: 10px;
        font-weight: 400;
    }
    
    #servicesBottomBox a{
        background-color: white;
        color: black;
        font-size: 12px;
        padding: 5px;
        border-radius: 5px;
    }

    #pacotesTitle{
        font-size: 14px;
        padding: 10px;
    }

    #pacotesH1Top{
        color: white;
        width: auto;
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }

    #pacotesTeaser{
        text-align: center;
        color: rgba(255, 255, 255, 0.678);
        font-size: 12px;
    }
    
    .pacotesSubTitle{
        display: flex;
        align-items: center;
        font-weight: 400;
        gap: 10px;
        font-size: 18px;
        color: white;
    }
    
    .pacotesPlacesItem{
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 230px;
        height: auto;
        padding-bottom: 18px;
        border-radius: 10px;
    }

    .pacotesPlacesItemInfo h2{
        font-size: 14px;
        font-weight: 600;
        color: var(--cor1);
    }
    
    .placesItemSubTitle{
        color: #ffffffdc;
        font-size: 12px;
        font-weight: 400;
    }
    
    
    .placesItemInfoBottom{
        color: white;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .placesItemInfoBottom{
        font-size: 14px;
    }
    
    #pacotesBottomContainer .pacotesPlacesItem{
        width: 230px;
    }
    
    #pacotesBottomContainer .placesItemInfoBottom{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    
    #pacotesBottomBox{
        width: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    

    #pacotesSubTitleBottom{
        font-size: 20px;
        font-weight: 400;
        color: white;
    }
    
    .pacoteBottomBoxItem{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 230px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
    }
    
    .pacoteBottomBoxItemCentro{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        width: auto;
        height: auto;
    }


    #depoimentosTitle{
        font-size: 20px;
        font-weight: 600;
        text-align: center;
    }

    #depoimentosTeaser{
        font-size: 10px;
        font-weight: 400;
        text-align: center;
    }

    #depoimentosContainer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .depoimentoCard{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 220px;
        height: auto;
        padding: 32px;
        border-radius: 24px;
    }

    section#contato{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 80px 30px;
        height: auto;
    }
    
    #contatoContainer{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }


    #contatoFormContainer{
        width: auto;
        min-height: auto;
        padding: 40px 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }


    .inputContainer input, select{
        background-color: #e7e7e7;
        width: 100%;
        font-size: 16px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        color: gray;
    }

    input#iwhatsApp, #iwhatsAppLabel{
        display: none;
    }

    input#iemail, #iemailLabel{
        display: none;
    }

    /* ---------- */

    #footerContainer{
        align-items: center;
    }

    #footerContainerInfo{
        justify-content: center;
    }

    #footerLeftBox{
        align-items: center;
    }

    #footerLeftBox p{
        text-align: center;
    }

    #footerCentroBox{
        align-items: center;
    }

    #footerLinks{
        justify-content: center;
    }

    #footerRightBox{
        align-items: center;
    }

    #footerContato{
        justify-content: center;
    }

}

@media (max-width: 325px) {

    #footerLeftBox p{
        display: none;
    }

    #footerCentroBox{
        display: none;
    }
    
}


@media (max-width: 250px) {

    menu a:nth-child(2){
        display: none;
    }

    menu a:nth-child(4){
        display: none;
    }

    #homeCaixaAzul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        max-width: 180px;
        height: auto;
        padding: 20px;
        border-radius: 10px;
    }


    .homeItem{
        display: flex;
        align-items: center;
        gap: 6px;
        width: 180px;
        height: auto;
        padding: 20px;
        flex-wrap: wrap;
    }

    #homeContainerTopoIMG{
        width: 180px;
    }

    #homeCaixaBottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 180px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
    }


    #aboutUsLeftBox{
        max-width: 180px;
        height: auto;
        padding: 18px 22px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }
    
    .aboutUsItem{
        width: 180px;
        height: auto;
        display: flex;
        align-items: center;
        gap: 6px;
        border-radius: 10px;
        padding: 10px 26px;
        flex-wrap: wrap;
    }

    .servicesItem{
        width: 180px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .servicesItem img{
        width: 40px;
    }

    #servicesBottomBox{
        width: 180px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        border-radius: 10px;
    }


    .pacotesPlacesItem{
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 180px;
        height: auto;
        padding-bottom: 18px;
        border-radius: 10px;
    }

    
    #pacotesBottomContainer .pacotesPlacesItem{
        width: 180px;
    }
    
    .pacoteBottomBoxItem{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
    }

    section#Depoimentos{
        padding: 20px;
    }

    .depoimentoCard{
        width: 180px;
    }

    #contatoFormContainer{
        width: 180px;
        min-height: auto;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .OthersContainer a{
        width: 30px;
        height: 30px;
    }
    
    
    .IconContainer{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

}   