:root {
    --primary-color: #3498db;
    --secondary-color: #000000;
    --text-color: #333;
    --bg-color: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* ou outra fonte de sua escolha */
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f0f0f0;
    background-image: url('caminho/para/sua/imagem-do-rio.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding-top: 70px; /* Adiciona um padding-top igual à altura do cabeçalho */
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffc400;
    z-index: -1;
}

main {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Header e Navegação */
header {
    background-color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 60%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #ffc400;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cf980a;
}

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

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffc400;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-links {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        position: fixed;
        right: 0px;
        height: calc(100vh - 70px);
        top: 70px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }
    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px,-6px);
}

/* Hero Section */
.hero {
    background-image: url('imgs/galeao.jpg');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 30px); /* Ajusta a altura mínima do hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffc400;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    padding-top: 4rem; /* Aumenta o padding superior para dispositivos móveis */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Seções Gerais */
section {
    padding: 5rem 10%;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Destinos Grid */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.produto-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center
}
/* Footer */
footer {
    background-color: #000000;
    color: #ffc400;
    padding: 3rem 10%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color:#ffc400;
}

.footer-section {
    flex: 1;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffc400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffc400;
    text-decoration: none;
}

.social-icons a {
    color: #ffc400;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content:center;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.966);

}

.footer-links {
    list-style: none;
    display: flex;
}

.footer-links li {
    margin-left: 1rem;
}

.footer-links a {
    color: #ffc400;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: calc(100vh - 70px); /* Ajusta a altura do menu móvel */
        top: 70px; /* Posiciona o menu abaixo do cabeçalho */
        background-color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }


    .nav-links li {
        opacity: 0;
        margin-left: 1rem;
    }


    .nav-links a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        transition: color 0.3s ease, transform 0.3s ease;
        position: relative;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #FFA500;
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out;
    }
    .nav-links a:hover::after {
        visibility: visible;
        transform: scaleX(1);
    }
    

    .burger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem; /* Reduz o tamanho da fonte para telas menores */
    }

    .hero-content {
        padding-top: 6rem; /* Aumenta ainda mais o padding superior para telas menores */
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.marcas {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.marcas h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.marcas-info {
    text-align: center;
    margin-bottom: 2rem;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.marca-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    align-content: center;
    text-align: center;
}

.marca-item:hover {
    transform: translateY(-5px);
}

.marca-item h3 {
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
}

.pacote-cta {
    text-align: center;
    margin-top: 3rem;
}

.pacote-cta p {
    margin-bottom: 1.5rem; /* Aumenta o espaço entre a frase e o botão */
}

.btn-reservar {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-reservar:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.depoimentos {
    padding: 4rem 2rem;
    background-color: #f0f0f0;
}

.depoimentos h2 {
    text-align: center;
    margin-bottom: 3rem;
    color:black
}

.depoimentos-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
}

.depoimento {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.depoimento:hover {
    transform: translateY(-5px);
}

.cliente-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid var(--primary-color);
}

.depoimento blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.depoimento cite {
    font-weight: bold;
    display: block;
    text-align: right;
    color: #666;
}

@media (max-width: 768px) {
    .depoimentos-carousel {
        flex-direction: column;
        align-items: center;
    }

    .depoimento {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin-bottom: 2rem;
    }
}

.sobre {
    padding: 5rem 10%;
    background-color: #f9f9f9;
}

.sobre h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-content > p {
    margin-bottom: 2rem;
    text-align: justify;
}

.sobre h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.diferenciais {
    list-style-type: none;
    padding: 0;
}

.diferenciais li {
    margin-bottom: 2rem;
}

.diferenciais h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.diferenciais p {
    text-align: justify;
}

.mvv {
    padding: 5rem 10%;
    background-color: #ffffff;
}
.mvv h1 {
    font-size: xx-large;
    text-align: center;
    margin-bottom: 3rem;
    color: black
}

.mvv h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: black
}
.mvv h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: black
}
.mvv-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.mvv-item {
    flex-basis: calc(33.333% - 2rem);
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mvv-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mvv-item p, .mvv-item ul {
    margin-bottom: 2rem;
}

.mvv-item ul {
    padding-left: 1rem;
}

.mvv-item li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .mvv-item {
        flex-basis: 100%;
    }
}

.compra-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.compra-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.pacote-detalhes {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pacote-imagem {
    width: 50%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.pacote-info {
    flex: 1;
}

.pacote-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.pacote-info ul {
    list-style-type: none;
    padding: 0;
}

.pacote-info li {
    margin-bottom: 0.5rem;
}

.preco {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.formulario-compra {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.formulario-compra h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Botão do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .pacote-detalhes {
        flex-direction: column;
    }

    .pacote-imagem {
        width: 100%;
    }
}