:root {
    --primary: #0077b6;
    --secondary: #00b4d8;
    --accent: #ff9e00;
    --light: #caf0f8;
    --dark: #023e8a;
    --text: #333;
    --white: #fff;

    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 14px 40px rgba(2, 30, 58, 0.12);
    --transition: all 0.3s ease;

    --azul-bebe: #e3f5ff;
    --azul-bebe-2: #ddf1ff;
    --azul-bebe-3: #d0ebff;
    --azul-bebe-4: #c2e3ff;
    --texto-escuro-2: #082138;
    --texto-suave-2: #5e6f86;
}

/* ========= RESET BÁSICO ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    line-height: 1.6;
    color: var(--text);
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========= HEADER / NAV ========= */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.3s ease,
                backdrop-filter 0.3s ease,
                box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    
}

.logo-img{
  height: 45px;
  width: auto;
  display: block;
    
}

.logo h1 {
    font-size: 1.8rem;
    color: #222326;
    
}

.logo span { color: var(--accent); }

.logo-icon {
    color: var(--secondary);
    font-size: 1.8rem;

}

/* Menu desktop */
header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* “pill” individual */
header nav a {
    font-size: 1rem;
    text-decoration: none;
    color: #222326;
    font-weight: 600;
    position: relative;
    padding: 8px 40px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    white-space: nowrap;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;
}

/* efeito glass */
header nav a:hover {
    background: rgba(255, 255, 255, 0.486);
    color: #222326;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-5px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

/* ========= HERO (PÁGINA INICIAL) ========= */
/* OBS: mais abaixo existe o bloco “HERO COM VÍDEO”, que sobrescreve o background antigo */
.hero {
    background: linear-gradient(rgba(0, 119, 182, 0.8), rgba(0, 180, 216, 0.7)),
        url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    margin-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    animation: hero-zoom-in 5s ease-out forwards;
}

.hero .container { max-width: 1100px; }

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 0 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-info div {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.hero-info strong {
    display: block;
    font-size: 1.1rem;
}

/* ========= BOTÕES ========= */
/* BASE GENÉRICA */
.btn,
.btn-outline,
.btn-card,
.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
    border: 2px solid transparent;
    background: transparent;
    color: inherit;
    border-radius: 0;
    padding: 0;
    transition: var(--transition);
}

/* ---------- BOTÕES – HERO (HOME) ---------- */
.hero .btn {
    padding: 12px 30px;
    border-radius: 30px;
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.hero .btn-primary {
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.4);
}

.hero .btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.hero .btn:hover,
.hero .btn-primary:hover {
    border-color: transparent;
    background: rgb(47, 172, 255);
    color: rgb(246, 251, 255);
    transform: translateY(-1px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* ---------- BOTÕES – SEÇÃO PASSEIOS (CARDS) ---------- */
.tours-preview .btn-outline {
    padding: 10px 25px;
    border-radius: 30px;
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.tours-preview .btn-outline:hover {
    border-color: transparent;
    background: rgb(255, 163, 25);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* CTA da parte de baixo da seção */
.tours-preview .preview-cta .btn-large {
    padding: 15px 35px;
    border-radius: 40px;
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-size: 1.05rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.tours-preview .preview-cta .btn-large:hover {
    border-color: transparent;
    background: rgb(47, 172, 255);
    color: rgb(246, 251, 255);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.tours-preview .preview-cta .btn-large i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.tours-preview .preview-cta .btn-large:hover i {
    transform: translateX(5px);
}

/* ---------- BOTÕES – CTA FINAL ---------- */
.cta-final .btn {
    padding: 14px 34px;
    border-radius: 999px;
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-final .btn:hover {
    border-color: transparent;
    background: rgb(47, 172, 255);
    color: rgb(246, 251, 255);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cta-final .btn.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.cta-final .btn.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* ---------- BOTÕES – PAGE HERO ---------- */
.page-hero .btn {
    padding: 10px 26px;
    border-radius: 30px;
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.page-hero .btn:hover {
    border-color: transparent;
    background: rgb(47, 172, 255);
    color: rgb(246, 251, 255);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-hero .btn.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: none;
}

.page-hero .btn.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

/* ---------- BOTÕES – CONTATO (HOME) ---------- */
.secao-index-contato .btn-primary {
    padding: 14px 30px;
    border-radius: 999px;
    background-color: var(--accent);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.4);
}

.secao-index-contato .btn-primary:hover {
    background: rgb(47, 172, 255);
    color: rgb(246, 251, 255);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.secao-index-contato .btn-full {
    display: block;
    margin: 0 auto;
    width: 50%;
}

/* ---------- BOTÕES – PÁGINA CONTATO ---------- */
.contact .btn-primary {
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.4);
}

.contact .btn-primary:hover {
    background: rgb(47, 172, 255);
    color: rgb(246, 251, 255);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* ========= TÍTULOS DE SEÇÃO ========= */
.section-title { text-align: center; }

.section-title h2 {
    color: var(--primary);
    font-size: 2.5rem;
}

.section-title p {
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* FORÇA OS TÍTULOS A NÃO FICAREM PRESOS NO TOPO */
.section-title,
.secao-cabecalho {
    position: static !important;
    top: auto !important;
    background: transparent !important;
    z-index: auto !important;
}

/* ===== PREVIEW DE PASSEIOS ===== */
.tours-preview {
    padding: 0px 0px 100px 0px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tours-preview .section-title h2 {
    opacity: 0;
    transform: translateY(15px);
    animation: fade-up-soft 0.9s ease-out forwards;
    animation-delay: 0.1s;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
    align-items: stretch;
}

.preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(65, 211, 255, 0.719);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up-soft 0.9s ease-out forwards;
    animation-delay: 0.25s;
}

.tours-preview .preview-card:nth-child(1) { animation-delay: 0.25s; }
.tours-preview .preview-card:nth-child(2) { animation-delay: 0.35s; }
.tours-preview .preview-card:nth-child(3) { animation-delay: 0.45s; }
.tours-preview .preview-card:nth-child(4) { animation-delay: 0.55s; }
.tours-preview .preview-card:nth-child(5) { animation-delay: 0.65s; }
.tours-preview .preview-card:nth-child(6) { animation-delay: 0.75s; }

.preview-card:hover {
    border: 0px solid rgb(53, 208, 255);
    transform: translateY(-5px);
    box-shadow: 0 0px 40px rgb(53, 208, 255);
}

.preview-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.preview-card:hover .preview-image img { transform: scale(1.05); }

.preview-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.preview-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    height: 100%;
}

.preview-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-content h3 i { color: var(--secondary); }

.preview-content p {
    color: #292929;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.preview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    font-size: 0.88rem;
}

.preview-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary);
}

.preview-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.preview-price {
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
}

.preview-price strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.preview-cta {
    text-align: center;
    padding: 40px;
    background: rgb(252, 253, 255);
    border-radius: 50px;
    margin-top: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    max-height: 190px;
    margin-left: auto;
    margin-right: auto;
}

.preview-cta p {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 100px 0;
    background: var(--light);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.diferencial-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.1);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.diferencial-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.diferencial-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.diferencial-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT (Sobre Nós) ===== */
.about {
    background-color: var(--light);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-text p { margin-bottom: 20px; }

.about-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.icon-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* ===== CONTACT (página Contato) ===== */
.contact {
    padding: 80px 0;
    background-color: var(--dark);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p { margin-bottom: 20px; }

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.2rem;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Mapa contato */
.contact-map { margin-top: 40px; }

.contact-map .mapa-embed {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-logo-img{
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 20px;

}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 { font-size: 1.6rem; }
.footer-logo span { color: var(--accent); }

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-destinos h4,
.footer-contato h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul,
.footer-destinos ul { list-style: none; }

.footer-links a,
.footer-destinos a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li,
.footer-destinos li { margin-bottom: 8px; }

.footer-links a:hover,
.footer-destinos a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contato p {
    margin-bottom: 15px;
    color: #aaa;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contato i {
    color: var(--accent);
    margin-top: 3px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
}

.dev-credit {
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.7;
}

/* ==========================================================
   SEÇÕES ADICIONAIS (MOMENTOS / CONTATO HOME / ETC.)
   ========================================================== */

/* Seção genérica */
.secao { padding: 180px 0; }

.secao-index-contato { background-color: var(--light); }

.secao-cabecalho.centralizado {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
}

.secao-cabecalho {
    margin-bottom: 40px;
    text-align: center;
}

.secao-subtitulo {
    display: inline-block;
    text-transform: uppercase;
}

/* ===== MOMENTOS ===== */
.secao-momentos {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top, #0e5f74 0%, #126788 45%, #11336d 100%);
    color: #f9fafb;
    --momentos-bg: none;
}

.secao-momentos::before,
.secao-momentos::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.secao-momentos::before {
    background-image: var(--momentos-bg);
    background-size: cover;
    background-position: center;
    filter: blur(32px);
    transform: scale(1.12);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.secao-momentos::after {
    background: radial-gradient(
        140% 160% at top,
        rgba(255, 255, 255, 0.08) 0,
        rgba(2, 13, 21, 0.904) 45%,
        #01040ae5 100%
    );
    z-index: 1;
}

.secao-momentos:has(.momento-item:hover)::before { opacity: 0.55; }

.secao-momentos .secao-cabecalho.centralizado {
    max-width: 80%;
    margin-bottom: 50px;
    border-radius: 20px;
}

.secao-momentos .subtitulo-momentos {
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2.5rem;
}

.secao-momentos h2 {
    font-family: "Outfit", sans-serif;
    color: #ffbb4d;
    letter-spacing: 0.04em;
    font-size: 1.8rem;
    font-weight: 100;
}

.secao-momentos .container-full {
    position: relative;
    z-index: 2;
}

.container-full {
    width: min(1320px, 98%);
    margin: 0 auto;
}

.momentos-quadro {
    border-radius: 32px;
    padding: 26px 0 0;
    width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: stretch;
    background: transparent;
}

.momentos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.momento-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(6, 25, 36, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    aspect-ratio: 16 / 9;
    transform: translateZ(0);
}

.momento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 0.3s ease,
                opacity 0.3s ease;
}

.momento-item:hover img {
    transform: scale(1.07) translate3d(0, -4px, 0);
}

.momento-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.06) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.momento-item:hover::after { opacity: 1; }

.secao-momentos:has(.momento-item:nth-child(1):hover)  { --momentos-bg: url("/Assets/img/Momentos/1.jpg"); }
.secao-momentos:has(.momento-item:nth-child(2):hover)  { --momentos-bg: url("/Assets/img/Momentos/2.jpg"); }
.secao-momentos:has(.momento-item:nth-child(3):hover)  { --momentos-bg: url("/Assets/img/Momentos/3.jpg"); }
.secao-momentos:has(.momento-item:nth-child(4):hover)  { --momentos-bg: url("/Assets/img/Momentos/4.jpg"); }
.secao-momentos:has(.momento-item:nth-child(5):hover)  { --momentos-bg: url("/Assets/img/Momentos/5.jpg"); }
.secao-momentos:has(.momento-item:nth-child(6):hover)  { --momentos-bg: url("/Assets/img/Momentos/6.jpg"); }
.secao-momentos:has(.momento-item:nth-child(7):hover)  { --momentos-bg: url("/Assets/img/Momentos/7.jpg"); }
.secao-momentos:has(.momento-item:nth-child(8):hover)  { --momentos-bg: url("/Assets/img/Momentos/8.jpg"); }
.secao-momentos:has(.momento-item:nth-child(9):hover)  { --momentos-bg: url("/Assets/img/Momentos/9.jpg"); }
.secao-momentos:has(.momento-item:nth-child(10):hover) { --momentos-bg: url("/Assets/img/Momentos/10.jpg"); }
.secao-momentos:has(.momento-item:nth-child(11):hover) { --momentos-bg: url("/Assets/img/Momentos/11.jpg"); }
.secao-momentos:has(.momento-item:nth-child(12):hover) { --momentos-bg: url("/Assets/img/Momentos/12.jpg"); }

/* ===== CONTATO (HOME) ===== */
.contato-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: stretch;
}

.contato-form-bloco,
.contato-mapa-bloco {
    display: flex;
    flex-direction: column;
}

.contato-form-bloco h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.contato-form-bloco > p {
    font-size: 0.95rem;
    color: var(--texto-suave-2);
    margin-bottom: 24px;
}

.form-contato {
    background-color: var(--white);
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    height: 100%;
}

.campo-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.campo-form label {
    font-size: 0.9rem;
    color: var(--texto-escuro-2);
}

.campo-form input,
.campo-form textarea {
    border-radius: 14px;
    border: 1px solid #c2d5f0;
    padding: 10px 12px;
    font-size: 0.93rem;
    background-color: #f7fbff;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.campo-form input:focus,
.campo-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.24);
    background-color: #ffffff;
}

.contato-nota {
    font-size: 0.8rem;
    color: var(--texto-suave-2);
    margin-top: 10px;
}

.contato-mapa-bloco {
    display: flex;
    align-items: stretch;
}

.mapa-card {
    background-color: var(--white);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    height: 100%;
}

.mapa-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
}

.mapa-card p {
    font-size: 0.9rem;
    color: var(--texto-suave-2);
}

.mapa-embed {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #c2d5f0;
}

.mapa-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

.contato-infos {
    font-size: 0.9rem;
    color: var(--texto-suave-2);
}

/* ===== PAGE HERO (outras páginas) ===== */
.page-hero {
    padding: 90px 0 60px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9), rgba(0, 180, 216, 0.9));
    color: var(--white);
    text-align: center;
}

.page-hero h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
}

/* ===== BOTÕES FIXOS ===== */
.floating-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 1200;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-buttons.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.btn-topo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(43, 83, 170);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 1px 20px rgba(75, 183, 255, 0.5));
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;
}

.btn-topo:hover {
    background: rgba(43, 83, 170, 0.253);
    border-color: rgba(172, 198, 255, 0.253);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: transparent;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    filter: drop-shadow(0 1px 20px rgba(75, 255, 135, 0.500));
    transform-style: preserve-3d;

    --rx: 0deg;
    --ry: 0deg;
    --tx: 0px;
    --ty: 0px;
    --scale: 1;

    transform: perspective(600px)
               translate3d(var(--tx), var(--ty), 0)
               rotateX(var(--rx))
               rotateY(var(--ry))
               scale(var(--scale));
    transition: transform 0.15s ease-out, filter 0.15s ease-out;
}

.btn-whatsapp:hover { filter: drop-shadow(0 1px 20px rgba(75, 255, 135, 0.301)); }

.btn-whatsapp img {
    display: block;
    margin: 10px 0px;
    height: 60px;
    width: auto;
    pointer-events: none;
}

/* ===== ANIMAÇÕES ===== */
@keyframes hero-zoom-in {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

@keyframes fade-up-soft {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes card-slide-in-left {
    0% { opacity: 0; transform: translateX(-24px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* ==================================================================
   PÁGINA "TODOS OS PASSEIOS"
   ================================================================== */
.all-tours-hero {
    padding-top: 120px;
    padding-bottom: 40px;
    background: #f3f6fb;
}

.all-tours-banner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 230px;
    box-shadow: 0 18px 45px rgba(4, 35, 68, 0.35);
}

.all-tours-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: saturate(1.1);
}

.all-tours-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(0, 119, 182, 0.85) 0%,
            rgba(0, 119, 182, 0.55) 35%,
            rgba(255, 158, 0, 0.32) 75%,
            rgba(255, 158, 0, 0.55) 100%);
    mix-blend-mode: soft-light;
}

.all-tours-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
    justify-content: center;
}

.filter-pill {
    position: relative;
    border: none;
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 32px 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8c9bb2;
    margin-bottom: 4px;
}

.filter-select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--texto-escuro-2);
    outline: none;
    padding-right: 28px;
    min-width: 190px;
    appearance: none;
    -webkit-appearance: none;
}

.filter-select option { color: #111827; }

.filter-pill::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    bottom: 13px;
    font-size: 0.8rem;
    color: var(--primary);
    pointer-events: none;
}

.all-tours-list {
    padding: 20px 0 80px;
    background: #f3f6fb;
}

.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.all-tour-card {
    background: transparent;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(6, 24, 58, 0.164);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-24px);
    animation: card-slide-in-left 0.6s ease-out forwards;
}

.all-tours-grid .all-tour-card:nth-child(1)  { animation-delay: 0.05s; }
.all-tours-grid .all-tour-card:nth-child(2)  { animation-delay: 0.10s; }
.all-tours-grid .all-tour-card:nth-child(3)  { animation-delay: 0.15s; }
.all-tours-grid .all-tour-card:nth-child(4)  { animation-delay: 0.20s; }
.all-tours-grid .all-tour-card:nth-child(5)  { animation-delay: 0.25s; }
.all-tours-grid .all-tour-card:nth-child(6)  { animation-delay: 0.30s; }
.all-tours-grid .all-tour-card:nth-child(7)  { animation-delay: 0.35s; }
.all-tours-grid .all-tour-card:nth-child(8)  { animation-delay: 0.40s; }
.all-tours-grid .all-tour-card:nth-child(9)  { animation-delay: 0.45s; }
.all-tours-grid .all-tour-card:nth-child(10) { animation-delay: 0.50s; }
.all-tours-grid .all-tour-card:nth-child(11) { animation-delay: 0.55s; }
.all-tours-grid .all-tour-card:nth-child(12) { animation-delay: 0.60s; }

.all-tour-image {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.all-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.all-tour-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(247, 250, 255, 0.705);
    color: rgba(6, 19, 41, 0.932);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 5px 5px rgba(8, 21, 59, 0.192);
}

.all-tour-card:hover .all-tour-image img { transform: scale(1.07); }

.all-tour-body {
    background: #ffffff;
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.all-tour-body h3 {
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 14px;
}

.all-tour-meta {
    list-style: none;
    padding: 0;
    margin-top: auto;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--texto-suave-2);
    font-size: 0.86rem;
}

.all-tour-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--texto-suave-2);
}

.all-tour-meta img.meta-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.all-tour-meta i {
    font-size: 0.9rem;
    color: #06416d;
}

.all-tour-price {
    margin-top: 4px;
    font-size: 0.86rem;
    color: var(--texto-suave-2);
}

.all-tour-price strong {
    display: block;
    font-size: 1.02rem;
    color: #16346b;
    margin-top: 2px;
}

.tours-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tours-pagination .page-link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 32, 71, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0b223f;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease, color 0.2s ease;
}

.tours-pagination .page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 32, 71, 0.32);
}

.tours-pagination .page-link.active {
    background: #0b253f;
    color: #ffffff;
}

.tours-pagination .page-ellipsis {
    font-size: 1.4rem;
    color: #0b253f;
}

/* ==========================================================
   AJUSTE DE COR DO MENU POR PÁGINA
   ========================================================== */
header .logo h1,
header nav a {
    color: rgba(255, 255, 255, 0.92);
}

header nav a:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    color: rgba(255, 255, 255, 0.92);
}

body.page-passeios header .logo h1,
body.page-passeios header nav a {
    color: #222326;
}

body.page-passeios .mobile-menu-btn {
    color: #222326;
}

header.menu-open .logo h1,
header.menu-open nav a,
header.menu-open .mobile-menu-btn {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* ==========================================================
   HERO COM VÍDEO (2 ESTÁGIOS)
   ========================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    margin-bottom: 80px;
    color: var(--white);
}

.hero .hero-content {
    position: relative;
    z-index: 3;
    transition: opacity 0.8s ease;
}

.hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.02);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(0, 119, 182, 0.78), rgba(0, 180, 216, 0.65));
    transition: opacity 0.8s ease;
}

.hero.stage-1 .hero-video {
    filter: blur(18px) saturate(1.05);
    transform: scale(1.06);
}

.hero.stage-1 .hero-overlay { opacity: 1; }
.hero.stage-1 .hero-content { opacity: 1; }

.hero.stage-2 .hero-video {
    filter: blur(0px) saturate(1.05);
    transform: scale(1.02);
}

.hero.stage-2 .hero-overlay { opacity: 0; }
.hero.stage-2 .hero-content { opacity: 0; }

.hero-info { display: none !important; }

.hero .hero-controls {
    position: absolute;
    left: 50%;
    bottom: 44px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.hero .hero-controls.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.hero .hero-controls.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hero.stage-2 .hero-content { pointer-events: none; }
.hero.stage-1 .hero-content { pointer-events: auto; }

.hero .hero-control-btn {
    opacity: 0.8;
    border-radius: 999px;
    border: none;
    background: transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero .hero-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.hero .hero-control-btn img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

/* ==========================================================
   RESPONSIVIDADE
   (IMPORTANTE: breakpoints do grid "all-tours" em ordem correta
   para NÃO sobrescrever o mobile com regras maiores)
   ========================================================== */

/* Ajuste de responsividade do menu em telas intermediárias */
@media (max-width: 1100px) {
    header nav ul { gap: 14px; }
    header nav a { padding: 8px 18px; font-size: 0.95rem; }
}

/* Grid de "Todos os Passeios" (ordem correta) */
@media (max-width: 1200px) {
    .all-tours-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
    .hero h2 { font-size: 2.5rem; }
    .preview-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .momentos-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .contato-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    header nav ul { gap: 10px; }
    header nav a { padding: 7px 14px; font-size: 0.92rem; }

    .all-tours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    header .header-content { position: relative; }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 16px;
        top: 18px;
        z-index: 1002;
        background: none;
        border: none;
        font-size: 1.6rem;
        cursor: pointer;
    }

    .logo { max-width: calc(100% - 70px); }

    header nav ul {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(3, 15, 24, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 120px 0 30px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }

    header nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }

    header nav li {
        width: 100%;
        text-align: center;
        padding: 18px 0;
    }

    .hero {
        padding: 80px 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-info { justify-content: center; }
    .hero h2 { font-size: 2rem; }

    .section-title h2 { font-size: 2rem; }

    .preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .preview-cta { padding: 30px 20px; }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contato p { justify-content: center; }

    .hero .hero-controls { bottom: 30px; }
}

@media (max-width: 700px) {
    .momentos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .secao { padding: 60px 0; }
    .floating-buttons { right: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
    .all-tours-grid { grid-template-columns: 1fr; }

    .all-tours-hero { padding-top: 110px; }

    .all-tours-banner {
        height: 190px;
        border-radius: 24px;
    }

    .filter-pill {
        width: 100%;
        max-width: 340px;
    }
}

/* ===== HOVER COM BRILHO LARANJA (#ff9e00) — cards "Todos os passeios" ===== */
.all-tour-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.all-tour-card:hover {
    transform: translateY(-6px);
    box-shadow:

        0 0 22px rgb(58, 199, 255);

}

.all-tour-card:hover .all-tour-badge {
    background: rgba(62, 188, 247, 0.973);
    box-shadow: 0 0 18px rgba(128, 215, 255, 0.973);
    color: white;
}

/* ==========================================================
   HEADER COM EFEITO VIDRO (ATIVO NO ESTÁGIO 2) — CLARO
   ========================================================== */

header.header-glass {
  background: rgba(255, 255, 255, 0); /* vidro branco */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.034);
}

/* Links dentro do header no modo vidro */
header.header-glass nav a {
  color: rgba(255, 255, 255, 0.94);
}

/* Hover mais suave */
header.header-glass nav a:hover {
    color: #ffffff;
  background: #f5ac37;
  border-color:#ffce80;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
  
}

/* Botão mobile no vidro */
header.header-glass .mobile-menu-btn {
  color: rgb(255, 255, 255);
}
