@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}

:root {
    --primary: #1B9AAA;
    --secondary: #F4EBFF;
    --text-primary: #101828;
    --text-secondary: #667085;
    --badge-bg: #ECFDF3;
    --badge-text: #027A48;
    --white: #fff;
    --dropdown-bg: rgb(252, 253, 251);
    --shadow: rgba(32, 7, 65, 0.14);
    --container: 124rem;
    --nav-height: 7rem;
}

html {
    font-family: 'Inter', sans-serif;
    font-size: 62.5%;
    font-style: normal;
}

body {
    font-size: 1.6rem;
    overflow-x: hidden;
}

section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 100%;
    gap: 1.5rem;
}

.heading {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #1B9AAA;
    
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    position: relative;
                
}

.logo-img {
    width: 200px;
    height: auto;
    margin-left: 30px;
}

.nav_list {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    margin: 0 1.5rem;
    color: #1B9AAA;
}

.nav_list span {
    color: #fff;
}

.nav_action {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 30px;
}

.nav_link,
.btn {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--white);
}

.btn-primary {
    display: inline-flex;
    color: var(--white);
    background: #fc6400;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 1.5rem;
}

.nav_toggle {
    cursor: pointer;
    display: none;
}

.nav_toggle ion-icon {
    font-size: 3.5rem;
    color: #fff;
}

.dropdown {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--dropdown-bg);
    box-shadow: 0rem 0.2rem 0.5rem var(--shadow);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.5s ease-in;
}

.dropdown-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.nav_list_menu:hover ion-icon {
    transition: all 0.5s ease-in;
    transform: rotate(180deg);
}

.nav_list_menu:hover .dropdown {
    clip-path: polygon(0 0, 100% 0, 100% 102%, 0 102%);
}

.item-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.item-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
}

.item-img img {
    width: 22px;
    height: auto;
}

.item-list-info {
    position: relative;
    width: 100%;
    font-size: 1.5rem;
}

/* Estilo específico para a badge no item Minhas Viagens */
.minhas-viagens .info-badge {
    position: relative; /* Mantém a badge ao lado do texto */
    left: 0.5rem; /* Ajuste conforme necessário */
    top: 0;
    background: #fc6400;
    padding: 0.1rem 0.5rem;
    border-radius: 1rem;
    color: #fff !important;
    font-size: 1.2rem;
    display: inline-block;
    margin-left: 0.5rem; /* Espaço entre o texto e a badge */
}

.external-link {
    color: inherit; /* Mantém a cor do texto que seria aplicada se não fosse um link */
    text-decoration: none; /* Remove o sublinhado */
}
.external-link:hover {
    color: inherit; /* Mantém a cor do texto ao passar o mouse */
}


@media (max-width:730px) {
    .nav_toggle {
        display: block;
    }
    .nav_menu {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--dropdown-bg);
        display: none;
    }
    .nav_menu.active {
        display: block;
        
    }
    .nav_list {
        display: block;
        margin: 2rem 0;
        text-align: left;
    }

    .nav_list span {
        color: #1B9AAA;
    }

    .nav_link {
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        color: #1B9AAA;
    }
    .dropdown {
        top: 0;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        box-shadow: none;
        height: 0;
        text-align: start;
        transition: all 0.5s ease-in;
    }
    .nav_list_menu:hover .dropdown {
        height: 100%;
        transition: all 0.5s ease-in;
    }
    .logo-img {
        width: 180px;
        height: auto;
        margin-left: 10px;
    }
    .minhas-viagens .nav_link {
        text-align: left; /* Garantir que Minhas Viagens também fique à esquerda */
    }
}

@media (max-width:365px) {
    .logo-img {
        width: 10rem;
    }
    .btn,
    .btn-primary {
        padding: 0.4rem 1rem;
    }
}

/* Estilo para Home (Heading e Buscador) */
.home-container {
    background-position: center;
    background-size: cover;
    background-color: #1B9AAA
}

.home-container section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.content {
    max-width: 46%;
    margin: 20px;
}

.content h3 {
    color: var(--white);
    font-size: 7.5rem;

}

.content p {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1.8;
    padding: 1rem 0;
}

.buscador {
    max-width: 46%;
    line-height: 1.8;
    padding: 1rem 0;
}

/* Estilo para modo responsivo */
@media (max-width: 768px) {
    .home-container section {
        display:flex;
        margin: 0;
        flex-direction: column;
        text-align: center;
    }

    .content, .buscador {
        width: 100%; /* Cada seção ocupa a largura total da tela */
        margin-bottom: 20px; /* Adicionando espaço entre os elementos */
        margin: 0;
        max-width: 100%;   
    }
        
    .content p {
        display: none;
    }

    .content h3 {
        font-size: 3rem; /* Ajuste o tamanho da fonte conforme necessário */
    }
}


/* Icones dos Produtos */
.clicks {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
}

.produtos {
    display: flex;
    gap: 80px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border: 3px solid #1B9AAA;
    border-radius: 50%;
    color: #fff;
    text-decoration: none; /* Remove underline from links */
    transition: background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
    background-color: #1B9AAA;
}

.card:hover {
    background-color: #fc6400;
    color: white;
    border-color: #fc6400;
    transform: scale(1.05);
}
    

.card img {
    display: block;
    margin-bottom: 2px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
    

.card span {
    font-size: 14px;
    font-weight: bold;
}


@media (max-width: 768px) {
    
    .clicks {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px; /* Adjust this value to set the distance between icons */
        padding: 30px;
    }
    
    .produtos {
        display: flex;
        flex-wrap: wrap;
        gap: 20px; /* Adjust this value to set the distance between icons */
        justify-content: space-between;
    }
    
    .card {
        flex: 1 1 calc(33.333% - 20px); /* 3 per row with a gap */   
    }
}
/* Fim dos Icones dos Produtos */

/* Inicio Carrossel dos Produtos */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto; /* Centraliza o carrossel */
}

/* Carrossel */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* 100% x 4 (número de cards visíveis) */
    will-change: transform; /* Otimiza a performance */
}

/* Item do carrossel */
.item {
    min-width: 25%; /* 4 itens por tela */
    box-sizing: border-box; /* Inclui padding e borda na largura do item */
    padding: 0 10px; /* Ajuste o padding conforme necessário */
    text-align: center;
}

/* Imagem dentro do item */
.item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}


.item img:hover {
    transform: scale(1.05);
    filter: brightness(70%);
}

.item h4 {
    margin: 5px 0;
    padding: 10px;
    font-size: 1.9rem;
}

.item p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Especificidade aumentada para imagens dentro de .parceiros */
.item .parceiros img {
    max-width: 120px;
    height: auto;
    border-radius: 0 !important; /* Remove border-radius */
    transition: none !important; /* Remove transition */
    transform: none !important; /* Remove transform */
    filter: none !important; /* Remove filter */
}

.item a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fc6400;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-top: 10px;
    transition: background-color 0.3s;
    
}

.item a.button:hover {
    background-color: #d87b3e;
}

/* Botões de Navegação */
.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}


/* Estilo responsivo */
@media (max-width: 768px) {
    .item {
        min-width: 100%; /* 1 item por tela */
    }
    .item a.button {
        padding: 12px 30px;
        font-size: 1.5rem;
    }
    .item p {
        font-size: 1.3rem;
}
}
/* Fim dos Carrossel dos Produtos */

/* Início widget dos passagens */
.passagens {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    max-width: 1200px; /* Adicione um limite de largura máximo conforme necessário */
    margin-left: auto;
    margin-right: auto;
}

.passagens > div {
    flex: 1 1 50%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .passagens {
        display: flex;
        align-items: center;
        margin: 10px;
    }
    .passagens {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
/* Fim widget dos passagens */

/*Inicio pre footer */
.pre-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2rem;
    background-color: #105058; /* Cor de fundo para a seção pre-footer */
    max-width: 100%; /* Adicione um limite de largura máximo conforme necessário */
        
}

.logo-footer, .contato, .redes-sociais, .site-seguro-tourismo {
    width: 25%;
    text-align: center;
    margin-top: 40px;
}

.logo-footer img {
    max-width: 250px;
    height: auto;
       
}

.contato, .redes-sociais, .site-seguro-tourismo {
    text-align: center;
}

.contato h4, .redes-sociais h4, .site-seguro-tourismo {
    margin-bottom: 10px;
    color: #fff;
}

.contato a {
    color: #fff;
    text-decoration: none;
}

.icones {
    display: flex;
    justify-content: space-around;
}

.icone-redes-sociais img {
    width: 30px;
    height: 30px;
}
.img-site img {
    max-width: 300px;
    height: auto;
}
/*fim pre footer - media queries abaixo*/

/*inicio do Footer */
.footer {
    background-color: #105058;
    padding: 1rem 0;
}
.footer .container {
    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 100%;
    padding: 20px;  
}

.footer, .footer .container {
    overflow-x: hidden; /* Previne overflow horizontal */
}

.footer-col {
    flex: 1 1 25%;
    padding: 15px;
    box-sizing: border-box;
}
.footer-col h5 {
    margin-bottom: 2rem;
    font-size: 18px;
    color: #fff; /* Cor branca para o título */
}

.footer-col h5 a {
    color: #fff; /* Cor branca para o link do título */
    text-decoration: none; /* Remover sublinhado */
    text-transform: lowercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    display: flex;
    align-items: center; /* Alinha os itens verticalmente */
    padding: 5px;
}

.footer-col ul li img {
    width: 20px;
    margin-right: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-transform: capitalize;
}

.footer-col ul li a:hover {
    color: #fc6400;
}

.footer-col ul li .item-description {
    color: #d9d9d9;
    font-size: 10px;
    margin-top: 5px; /* Adiciona margem superior para separação */
    display: flex;
}


/* Media Queries para pre-footer e footer */
@media (max-width: 768px) {
    .logo-footer, .contato, .redes-sociais, .site-seguro-tourismo {
        width: 100%; /* Cada div ocupará a largura total em telas menores */
        text-align: center; /* Centraliza o texto em telas menores */
    }
    .contato, .redes-sociais, .site-seguro-tourismo {
        margin-top: 20px;
    }

    .icones {
        justify-content: center; /* Centraliza os ícones das redes sociais em telas menores */
    }

    .icone-redes-sociais {
        margin: 0 10px; /* Adiciona espaçamento entre os ícones */
    }
}

@media (max-width: 480px) {
    .pre-footer {
        flex-direction: column; /* Empilha os itens verticalmente em telas muito pequenas */
    }

    .logo-footer, .contato, .redes-sociais, .site-seguro-tourismo {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .footer .container {
        
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col {
        padding: 10px;
    }

    .footer-col h5 {
        font-size: 16px;
    }

    .footer-col ul li img {
        width: 16px; /* Ajuste adicional para telas menores */
        margin-right: 5px;
    }
}

@media (max-width: 320px) {
    .footer .container {
        grid-template-columns: 1fr; /* Uma coluna para telas muito pequenas */
    }

    .footer-col {
        padding: 5px; /* Ajuste o padding para evitar overflow */
    }
}


/*inicio do Footer Termos e Políticas*/
.footer-termos {
    flex: 1 1 25%;
    padding: 15px;
    box-sizing: border-box;
}
.footer-termos p {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 18px;
    color: #fff; /* Cor branca para o título */
}

.footer-termos p a {
    color: #fff; /* Cor branca para o link do título */
    text-decoration: none; /* Remover sublinhado */
    text-transform: lowercase;
}

@media (max-width: 480px) {
    .footer-termos {
        width: 100%; /* Ocupa a largura total em telas pequenas */
        padding: 10px;
        text-align: center;
    }
}

 
/*Cpyright no final do Footer */
.copyright {
    background-color: #105058;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.copyright a {
    color: #fc6400;
    text-decoration: none;
}
/*Fim do Footer */
