*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}
body{
    background-color: #f1f6fc31;
}
section, 
footer{
    padding: 54px 0;
}
h3{
    font-size: 50px;
    color: white;
}
.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}
header{
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: rgb(0, 0, 75);
    display: flex;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}
nav ul{
    display: flex;
    align-items: center;
}
nav ul a{
    color: rgb(222, 222, 2);
    margin: 0 25px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    font-style: oblique;
}
.btn{
    background-color: #ff0000;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.1s;
}
.btn.animate-btn{
    animation: animate-outline 1s ease-out infinite;
}
.btn:hover{
    background-color: #820101;
}
@keyframes animate-outline {
    from{
        outline: 0px solid #fa1e1e8a;
    }
    to{
        outline: 15px solid #f94f4f00;
    }
}
.banner{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.banner .banner-text{
    margin: 150px;
    text-align: center;
    padding: 0 90px;
}
.banner .banner-text h1{
    font-size: 96px;
    color: white;
}
.banner .banner-text p{
    font-size: 20px;
    color: #ffffffb7;
    font-weight: lighter;
    margin: 18px 0;
}
nav ul a::after{
    content: "";
    background-color: rgb(255, 251, 0);
    height: 3px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}
nav ul a:hover::after{
    width: 100%;
}
nav .menu-icon{
    cursor: pointer;
    font-size: 25px;
    color: rgb(255, 255, 255);
    display: none;
}
nav .close-icon{
    display: none;
    font-size: 30px;
    color: white;
}
/* mais */
.mais .container{
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
}
.mais .mais-text{
    width: 50%;
    padding: 0 40px;
}
.mais .mais-text h3{
    font-size: 56px;
    color: rgb(130, 0, 0);
}
.mais .mais-text p{
    margin: 5px 0 10px 0;
    color: rgb(130, 0, 0);
}
.mais .mais-img{
    width: 50%;
}
.mais .mais-img img{
    width: 100%;
}
.bannerTur h3{
    text-align: center;
}
.bannerTur p{
    margin-bottom: 20px;
    text-align: center;
}
.cards{
    display: flex;
    justify-content: center;
}
.bannerTur .card-item{
    background-color: #d3e6fd;
    margin: 15px;
    border-radius: 14px;
    text-align: center;
    width: 350px;
    transition: 0.3s;
}
.bannerTur .card-item img{
    border-radius: 100px;
    width: 80px;
    display: block;
    margin: 10px auto;
}
.bannerTur .card-item .nome-user{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}
.bannerTur .card-item .descricao{
    font-size: 15px;
    padding: 0 15px;
    transition: 0.3s;
}
.bannerTur .card-item .estrelas{
    margin: 15px 0;
    border-top: 2px solid #71767a23;
}
.bannerTur .card-item .estrelas i{
    color: #4f9cf9;
    margin-top: 15px;
    font-size: 20px;
    transition: 0.3s;
}
.bannerTur .card-item:hover{
    background-color: #fffb00;
    margin-top: -5px;
}
.bannerTur .card-item:hover .nome-user,
.bannerTur .card-item:after .descricao,
.bannerTur .card-item:hover .estrelas i{
    color: rgb(255, 255, 0);
}
.footer{
    display: flex;
    background-color: #4f9cf9;
    text-align: center;
    padding: 10px;
}
.footer i{
    color: #4f9cf9;
    font-size: 19px;
    background-color: white;
    padding: 10px;
    margin: 3px;
    border-radius: 10px;
}
.footer p{
    margin-top: 10px;
    color: white;
}
.contato-info{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.contato-info .left-side{
    width: 50%;
    padding: 30px;
    background-color: #4f9cf9;
    border-radius: 14px;
    margin-right: 50px;
    height: fit-content;
}
.contato-info .left-side div{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contato-info .left-side div i{
    font-size: 24px;
    margin-right: 25px;
    color: white;
}
.contato-info .left-side p{
    font-size: 17px;
    color: white;
}
.contato-info .right-side{
    width: 100%;
}
.contato-info .right-side input{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    height: 47px;
    padding: 15px;
    border-radius: 9px;
    transition: 0.3s;
    border: 1px solid #f1f1f1;
    color: #21212121;
    font-weight: lighter;
}
.contato-info .right-side input:focus,
.contato-info .right-side textarea:focus{
    border-color: #4f9cf9;
}
.contato-info .right-side textarea{
    border: 1px solid #f1f1f1;
    color: #21212121;
    border-radius: 9px;
    margin-bottom: 10px;
    padding: 15px;
    width: 100%;
    transition: 0.3s;
    resize: none;
}
.contato-info .right-side button{
    border: none;
}
.Sobre{
    color: brown;
    width: 100%;
    font-size: 35px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}


.header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo na horizontal */
    background-color:#0b4d6b; /* Cor da header */
    color: white; /* Texto em branco para contraste */
    padding: 20px;
    text-align: center; /* Alinha o texto ao centro */
}

.h1 {
    margin-bottom: 20px;
}

.navbar {
    display: flex;
    flex-direction: column; /* Faz com que a barra de navegação fique em coluna */
    align-items: center; /* Centraliza os itens do menu */
    width: 100%;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap; /* Permite que os itens se ajustem em múltiplas linhas se necessário */
    justify-content: center; /* Centraliza os itens horizontalmente */
}

.nav-list li {
    margin: 10px; /* Adiciona espaço entre os itens do menu */
}

.nav-list a {
    color: white; /* Cor dos links */
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-list a:hover {
    text-decoration: underline; /* Efeito ao passar o mouse */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
}
.bannerTur .card-item{
    width: 100%;
}