/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* HEADER - FULL WIDTH */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Container interno do header com largura limitada */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
}

.menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #0077cc;
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .menu.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('https://videos.openai.com/vg-assets/assets%2Ftask_01jvpg636xf6vbz2w2sqk484y7%2F1747733229_img_0.webp?st=2025-05-20T10%3A03%3A16Z&se=2025-05-26T11%3A03%3A16Z&sks=b&skt=2025-05-20T10%3A03%3A16Z&ske=2025-05-26T11%3A03%3A16Z&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skoid=3d249c53-07fa-4ba4-9b65-0bf8eb4ea46a&skv=2019-02-02&sv=2018-11-09&sr=b&sp=r&spr=https%2Chttp&sig=Rrq%2F6pOeFr93%2Bb7BSgdKG6FOP71WeMf%2BVkOZoTEf%2BZI%3D&az=oaivgprodscus');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.33);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    background-color: #FFBE0B;
    color: #000;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #f9c848;
}

/* ANIMAÇÃO FADE-IN */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TOURS EM DESTAQUE */
.tours-destaque {
    background-color: #F9F9F9;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

.container-tours {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tours-destaque h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.tour-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

.tour-card:hover {
    transform: translateY(-6px);
}

.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.tour-card p {
    font-size: 15px;
    margin: 0 20px 20px;
    color: #555;
}

.tour-button {
    background-color: #3A86FF;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.tour-button:hover {
    background-color: #2b6dcf;
}

/* ANIMAÇÃO */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* VANTAGENS */
.vantagens {
    background-color: #f9f9f9;
    padding: 100px 20px;
    text-align: center;
}

.container-vantagens {
    max-width: 1100px;
    margin: 0 auto;
}

.vantagens-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.vantagem-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1 1 280px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

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

.vantagem-card img {
    width: 50px;
    margin-bottom: 20px;
}

.vantagem-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.vantagem-card p {
    font-size: 16px;
    color: #555;
}

/* TRANSFER */
.transfer-bloco {
    background-color: #ffffff;
    padding: 100px 20px;
}

.container-transfer {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.transfer-texto {
    flex: 1 1 450px;
}

.transfer-texto h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.transfer-texto p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.botao-transfer {
    background-color: #3A86FF;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.botao-transfer:hover {
    background-color: #265dc3;
}

.transfer-imagem {
    flex: 1 1 400px;
}

.transfer-imagem img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* REVIEWS */
.reviews-bloco {
    background-color: #f9f9f9;
    padding: 100px 20px;
}

.container-reviews {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.container-reviews h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.reviews-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.review-card {
    background-color: white;
    flex: 0 0 300px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    padding: 30px;
    scroll-snap-align: center;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: scale(1.03);
}

.review-card p {
    font-size: 16px;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
}

.review-card span {
    font-weight: bold;
    color: #222;
}

/* BOTÕES */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.see-all-button {
    background-color: #3A86FF;
    color: white;
    padding: 12px 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: auto;
    max-width: 500px;
    text-align: center;
}

.see-all-button:hover {
    background-color: #265dcf;
}

/* ESTILOS GERAIS */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
}

/* HEADER DA PÁGINA TOURS */
.tours-header {
    background-color: #F5F5F5;
    background-image: url('https://dynamic-media.tacdn.com/media/photo-o/2f/04/9a/27/caption.jpg?w=1100&h=800&s=1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    color: #000000;
}

.tours-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.tours-header * {
    position: relative;
    z-index: 2;
}

/* ESTILO DAS CATEGORIAS DE TOURS */
.tour-category {
    background-color: #FFFFFF;
    padding: 60px 20px;
    margin-top: 40px;
}

.tour-category h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.tour-category p {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* GRID DE TOURS */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD DE TOUR */
.tour-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tour-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* BOTÃO DE CATEGORIA */
.categoria-button {
    display: inline-block;
    background-color: #3A86FF;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 30px;
    text-align: center;
}

.categoria-button:hover {
    background-color: #265dcf;
}

/* ESTILOS PARA O BOTÃO "VER MAIS TOURS" */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.see-all-button {
    background-color: #3A86FF;
    color: white;
    padding: 12px 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: auto;
    max-width: 500px;
    text-align: center;
}

.see-all-button:hover {
    background-color: #265dcf;
}

/* ESTILO PARA O BOTÃO EM CADA CATEGORIA */
.tour-button {
    background-color: #3A86FF;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tour-button:hover {
    background-color: #265dcf;
}

/* ESTILO PARA O HEADER DA PÁGINA BLOG */
.blog-intro {
    background-color: #F5F5F5;
    background-image: url('https://dynamic-media.tacdn.com/media/photo-o/2e/f9/ea/b1/caption.jpg?w=1100&h=800&s=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #000000;
}

.blog-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.blog-intro * {
    position: relative;
    z-index: 2;
    color: #000000 !important;
}

.blog-intro h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-intro p {
    font-size: 18px;
}

/* ESTILO PARA OS ROTEIROS */
.roteiro {
    background-color: #FFFFFF;
    padding: 60px 20px;
    margin-top: 40px;
}

.roteiro h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.roteiro p {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* ESTILO DOS CARDS DOS TOURS */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tour-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* ESTILO PARA O BOTÃO DE RESERVA */
.tour-button {
    background-color: #3A86FF;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tour-button:hover {
    background-color: #265dcf;
}

/* ESTILO PARA OS BOTÕES "VER MAIS TOURS" */
.categoria-button {
    display: inline-block;
    background-color: #3A86FF;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 30px;
    text-align: center;
}

.categoria-button:hover {
    background-color: #265dcf;
}

/* ESTILOS GERAIS */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
}

/* HEADER */
.blog-intro {
    background-color: #F5F5F5;
    padding: 80px 20px;
    text-align: center;
}

.blog-intro h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-intro p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* ROTEIROS */
.roteiro {
    background-color: #FFFFFF;
    padding: 60px 20px;
    margin-top: 40px;
}

.roteiro h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.roteiro p {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* TOUR CARDS */
.tour-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tour-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* BOTÃO DE RESERVA */
.tour-button {
    background-color: #3A86FF;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tour-button:hover {
    background-color: #265dcf;
}

.legal-links {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    margin-top: 3rem;
}

.legal-links p {
    font-size: 1rem;
    color: #333;
}

.legal-links a {
    color: #14213D;
    text-decoration: underline;
}

.legal-links a:hover {
    color: #FCA311;
}

.contact-section {
    padding: 2rem 1rem !important;
    background-color: #f9f9f9 !important;
}

.contact-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    background-color: #fff !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
}

.form-group label {
    font-weight: bold !important;
    margin-bottom: 0.5rem !important;
    color: #14213D !important;
    font-size: 1rem !important;
}

.form-group input,
.form-group textarea {
    width: 100% !important;
    padding: 0.8rem !important;
    border: 1px solid #ccc !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    background-color: #fff !important;
}

.contact-button {
    background-color: #14213D !important;
    color: #fff !important;
    border: none !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.contact-button:hover {
    background-color: #000 !important;
}

/* FOOTER - FULL WIDTH (igual ao header) */
.site-footer {
    width: 100%;
    background-color: #062F33;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 0; /* Removido padding do footer */
}

/* Container interno do footer com largura limitada */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    box-sizing: border-box;
}

/* colunas */
.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #FCA311;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FCA311;
}

/* bottom - também com largura limitada */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom {
        padding: 15px 1.5rem;
    }
}

/* ESTILO PARA O SITE HEADER */
.site-header {
    width: 100%;
    background-color: #ffffff;
}

/* CONTAINER mais compacto */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 120px;
}

/* MENU NORMAL (desktop) */
.menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #0077cc;
    text-decoration: none;
}

/* HAMBURGUER (mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .menu.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}

/* CORREÇÃO PARA FULL WIDTH */
body {
    overflow-x: hidden;
}

/* GARANTIR QUE HEADER E FOOTER SÃO FULL WIDTH */
.site-header,
.site-footer {
    width: 100%;
}

.site-header .header-container,
.site-footer .footer-container,
.site-footer .footer-bottom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

html {
    overflow-x: hidden;
}
