/* === MODAL PROMOÇÃO ESPECIAL === */
.promo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 41, 59, 0.55);
    backdrop-filter: blur(6px) saturate(1.2);
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}
.promo-modal.show {
    display: flex;
    opacity: 1;
}
.promo-modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 64px 0 rgba(30,41,59,0.18), 0 2px 0 0 #e0e7ef;
    max-width: 96vw;
    width: 390px;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.7s cubic-bezier(.4,1.4,.6,1) 1;
    border: 2.5px solid rgba(56,189,248,0.13);
    overflow: hidden;
    padding: 0;
}
.promo-image-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 0;
}
.promo-image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
.promo-body {
    padding: 0 1.5em 2.2em 1.5em;
    text-align: center;
}
.promo-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 2.1rem;
    color: #1e293b;
    cursor: pointer;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px 0 rgba(30,41,59,0.10);
    transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.2s;
    z-index: 4;
}
.promo-modal-close:hover {
    background: var(--azul-profundo, #1e3a8a);
    color: #fff;
    transform: scale(1.12) rotate(10deg);
    box-shadow: 0 4px 18px 0 #38bdf8cc;
}
.promo-emoji {
    color: #1e3a8a;
    font-size: 1.3em;
    vertical-align: -2px;
    margin-right: 0.1em;
}
.promo-modal-title {
    font-size: 1.7rem;
    font-family: var(--font-titulo, 'Bebas Neue', Arial, sans-serif);
    margin: 0.7em 0 0.2em 0;
    letter-spacing: 0.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
}
.promo-gradient-text {
    background: linear-gradient(135deg, #0EA5E9, #38BDF8, #7DD3FC, #0EA5E9) !important;
    background-size: 300% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline-block;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.3em;
    animation: gradientShift 4s ease infinite;
}
.promo-modal-text {
    font-size: 1.13rem;
    color: #334155;
    margin-bottom: 0.7em;
    font-family: var(--font-subtitulo, 'Montserrat', sans-serif);
    line-height: 1.5;
}
.promo-modal-prices {
    margin: 1em 0 0.7em 0;
}
.promo-price-old {
    color: #64748b;
    font-size: 1.08em;
}
.promo-price-new {
    color: #059669;
    font-size: 1.45em;
    font-weight: 800;
}
.promo-modal-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1em 0;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.promo-modal-benefits li {
    font-size: 1.01rem;
    color: #1e3a8a;
    font-family: var(--font-subtitulo, 'Montserrat', sans-serif);
    margin-bottom: 0.3em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.promo-modal-benefits .star {
    color: #fbbf24;
    font-size: 1.1em;
}
.promo-modal-cta {
    margin: 1.1em 0 0.7em 0;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 1.13rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--sombra-btn);
    background: var(--grad-cta);
    color: #fff;
    padding: 0.95em 0;
    text-align: center;
    border: none;
    transition: background 0.3s, transform 0.2s;
}
.promo-modal-cta:hover {
    background-position: 100% 0;
    transform: translateY(-2px) scale(1.03);
}
.promo-modal-adventures {
    margin-top: 0.7em;
    font-size: 0.98rem;
    color: #64748b;
    font-family: var(--font-subtitulo, 'Montserrat', sans-serif);
}
.promo-modal-link {
    display: block;
    color: var(--turquesa);
    font-weight: 600;
    margin-top: 0.2em;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}
.promo-modal-link:hover {
    color: #1e3a8a;
}
@keyframes modalFadeIn {
    0% { opacity: 0; transform: translateY(-40px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
    .promo-modal-content {
        width: 95vw;
        min-width: 0;
        border-radius: 12px;
    }
    .promo-image {
        height: 140px;
    }
    .promo-modal-title {
        font-size: 1.18rem;
    }
    .promo-modal-cta {
        font-size: 1.01rem;
        padding: 1em 0;
        width: 100%;
    }
}
/* ====== CARD FOOTER MODERN LAYOUT ====== */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0.7em 0 0.2em 0;
    border-top: 1px solid #e0e7ef;
    margin-top: 1.2em;
    gap: 38px; /* Increased gap for more separation */
}
.people-info {
        font-size: 1.04em;
        color: var(--texto-escuro, #1e293b);
        font-weight: 500;
        letter-spacing: 0.01em;
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
/* === BLOCO DE PREÇO PROMOCIONAL (de/por) === */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
    gap: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}
.price-box .price-old {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 0.78rem;
    color: #a0a0a0;
    font-weight: 400;
    text-decoration: line-through;
    text-decoration-color: #c0c0c0;
}
.price-box .price-new {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--azul-profundo, #1e3a8a);
}
.price-box .new-value {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
@media (max-width: 600px) {
    .card-footer {
        gap: 10px;
        padding: 0.6em 0 0.1em 0;
    }
    .price-box {
        align-items: flex-end;
    }
    .people-info {
        font-size: 0.99em;
    }
}
/* Acessibilidade: respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .card-passeio,
    .card-passeio::before,
    .card-passeio::after,
    .churrasco-incluso,
    .card-tag-destaque {
        animation: none;
        transition: none;
    }
}
/* Unidade do preço compartilhado */
.preco-unit {
    font-size: 0.72rem;
    color: #999;
    font-weight: 400;
}
.preco-unit-inline {
    display: block;
    font-size: 0.65rem;
    color: #999;
    font-weight: 400;
    text-align: right;
    margin-top: -1px;
    line-height: 1;
}

/* Badge de desconto nos preços */
.discount-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 1px 6px;
    border-radius: 50px;
    margin-left: 4px;
    letter-spacing: 0.03em;
    vertical-align: middle;
    line-height: 1.5;
    white-space: nowrap;
}
/* === SEÇÃO DE VÍDEOS - CARROSSEL (YouTube Shorts) === */
.video-experience-section {
    padding: 60px 0 40px 0;
    background: #f8fafc;
}

.video-experience-header {
    text-align: center;
    margin-bottom: 32px;
}

.video-experience-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a2233;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-family: var(--font-titulo, 'Bebas Neue', Arial, sans-serif);
}

.video-experience-header p {
    font-size: 1.15rem;
    color: #4b5563;
    margin: 0;
    font-family: var(--font-subtitulo, 'Montserrat', sans-serif);
}

/* Carrossel */
.video-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.carousel-track .video-experience-card {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.18);
    color: var(--azul-profundo, #1E3A8A);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.carousel-arrow:hover {
    background: var(--turquesa, #0EA5E9);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.3);
}

.carousel-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.carousel-arrow-left {
    left: 4px;
}

.carousel-arrow-right {
    right: 4px;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-dot {
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--turquesa, #0EA5E9);
    transform: scale(1.3);
}

/* Cards */
.video-experience-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.10);
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
    will-change: transform;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-experience-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.16);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 */
    background: #e5e7eb;
    overflow: hidden;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0 0 20px 20px;
    object-fit: cover;
    background: #000;
}

/* Responsivo carrossel */
@media (max-width: 1024px) {
    .carousel-track .video-experience-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .video-experience-section {
        padding: 36px 0 24px 0;
    }
    .video-carousel {
        padding: 0 40px;
    }
    .carousel-track .video-experience-card {
        flex: 0 0 100%;
    }
    .carousel-track {
        gap: 16px;
    }
    .video-experience-header h2 {
        font-size: 1.5rem;
    }
    .video-experience-card {
        border-radius: 14px;
    }
    .video-iframe-container iframe {
        border-radius: 0 0 14px 14px;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .carousel-arrow-left { left: 0; }
    .carousel-arrow-right { right: 0; }
}
/* --- Seção de vídeos aprimorada --- */
.videos-bg {
    background: linear-gradient(135deg, #e0f7fa 60%, #fff 100%);
    border-radius: 32px;
    padding: 3rem 2vw 3.5rem 2vw;
    margin: 0 auto 3rem auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-width: 1200px;
}

.videos-cabecalho {
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
}

@media (min-width: 600px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1000px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.video-wrapper:hover {
    transform: scale(1.025);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    border: 0;
    border-radius: 18px;
    display: block;
}
/* --- Vídeos responsivos e grid --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
}
/* ===================================================
   MEU CARIBE - MARAGOGI/AL
   Paleta Oceânica Premium + Layout Responsivo
   =================================================== */

/* --- RESET & VARIÁVEIS --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Maragogi */
    --azul-profundo: #1E3A8A;
    --turquesa: #0EA5E9;
    --azul-ceu: #3B82F6;
    --por-do-sol: #F59E0B;
    --branco: #FFFFFF;
    --cinza-claro: #F1F5F9;
    --cinza-medio: #94A3B8;
    --texto-escuro: #0F172A;
    --texto-corpo: #334155;

    /* Gradientes */
    --grad-primario: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 100%);
    --grad-hero: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 58, 138, 0.7) 100%);
    --grad-cta: linear-gradient(135deg, #1E3A8A 0%, #0EA5E9 50%, #3B82F6 100%);

    /* Tipografia */
    --font-titulo: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-subtitulo: 'Montserrat', sans-serif;
    --font-corpo: 'Poppins', sans-serif;

    /* Espaçamento */
    --secao-padding: 5rem 2rem;
    --container-max: 1200px;
    --border-radius: 16px;

    /* Sombras */
    --sombra-card: 0 12px 45px rgba(30, 58, 138, 0.28), 0 4px 15px rgba(14, 165, 233, 0.16), 0 0 0 1px rgba(14, 165, 233, 0.06);
    --sombra-card-hover: 0 25px 70px rgba(30, 58, 138, 0.25), 0 10px 25px rgba(14, 165, 233, 0.15);
    --sombra-btn: 0 4px 15px rgba(14, 165, 233, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-corpo);
    line-height: 1.6;
    color: var(--texto-corpo);
    background-color: var(--branco);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* --- ANIMAÇÕES --- */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5); }
    50% { box-shadow: 0 0 0 14px rgba(14, 165, 233, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.3), 0 0 40px rgba(14, 165, 233, 0.1); }
    50% { box-shadow: 0 0 30px rgba(14, 165, 233, 0.5), 0 0 60px rgba(14, 165, 233, 0.2); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(14, 165, 233, 0.3); }
    50% { border-color: rgba(14, 165, 233, 0.8); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes floatBubble {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes textReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.fade-in.visivel .card-servico,
.fade-in.visivel .card-passeio,
.fade-in.visivel .valor-card,
.fade-in.visivel .diferencial-item,
.fade-in.visivel .contato-info-item {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-in.visivel .card-servico:nth-child(1),
.fade-in.visivel .card-passeio:nth-child(1),
.fade-in.visivel .valor-card:nth-child(1),
.fade-in.visivel .diferencial-item:nth-child(1),
.fade-in.visivel .contato-info-item:nth-child(1) { animation-delay: 0.1s; }

.fade-in.visivel .card-servico:nth-child(2),
.fade-in.visivel .card-passeio:nth-child(2),
.fade-in.visivel .valor-card:nth-child(2),
.fade-in.visivel .diferencial-item:nth-child(2),
.fade-in.visivel .contato-info-item:nth-child(2) { animation-delay: 0.25s; }

.fade-in.visivel .card-servico:nth-child(3),
.fade-in.visivel .card-passeio:nth-child(3),
.fade-in.visivel .valor-card:nth-child(3),
.fade-in.visivel .diferencial-item:nth-child(3),
.fade-in.visivel .contato-info-item:nth-child(3) { animation-delay: 0.4s; }

.fade-in.visivel .card-servico:nth-child(4),
.fade-in.visivel .valor-card:nth-child(4),
.fade-in.visivel .diferencial-item:nth-child(4),
.fade-in.visivel .contato-info-item:nth-child(4) { animation-delay: 0.55s; }

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-cta);
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--azul-profundo);
    border: 1px solid rgba(30, 58, 138, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.back-to-top.visivel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--azul-profundo);
    color: var(--branco);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    border-color: transparent;
}

/* --- BARRA TOPO (ANÚNCIO) --- */
.barra-topo {
    background: var(--grad-primario);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    color: var(--branco);
    text-align: center;
    padding: 0.5rem 1rem;
    font-family: var(--font-subtitulo);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.barra-topo p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.3rem 0.8rem;
    margin: 0;
}

.barra-topo .tide-item {
    white-space: nowrap;
}

.barra-topo .weather-item i {
    color: var(--por-do-sol);
}

.barra-topo .tide-sep {
    opacity: 0.5;
}

.barra-topo a {
    color: var(--por-do-sol);
    text-decoration: underline;
}

.barra-topo i {
    margin: 0 0.3rem;
    color: var(--por-do-sol);
}

/* --- HEADER --- */
header {
    background-color: var(--branco);
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, 0.92);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-left img {
    height: 55px;
    transition: transform 0.3s ease;
}

.header-left img:hover {
    transform: scale(1.05);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#nav-wrapper ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
}

#nav-wrapper a {
    color: var(--texto-escuro);
    font-family: var(--font-subtitulo);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

#nav-wrapper a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--grad-primario);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(-50%);
}

#nav-wrapper a:hover::after,
#nav-wrapper a.nav-ativo::after {
    width: 60%;
}

#nav-wrapper a:hover,
#nav-wrapper a.nav-ativo {
    color: var(--turquesa);
    background-color: rgba(14, 165, 233, 0.06);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128C7E);
    background-size: 200% 100%;
    color: var(--branco) !important;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
    animation: headerCtaPulse 3s ease-in-out infinite;
}

@keyframes headerCtaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.55), 0 0 15px rgba(37, 211, 102, 0.2); }
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-header-cta:hover::before {
    left: 100%;
}

.btn-header-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background-position: 100% 0;
    animation: none;
}

#hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--azul-profundo);
    cursor: pointer;
    padding: 0.5rem;
}

/* --- LANGUAGE SELECTOR --- */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    padding: 0;
    overflow: hidden;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
}

.lang-btn:hover {
    transform: scale(1.15);
    border-color: var(--turquesa);
}

.lang-btn.active {
    border-color: var(--turquesa);
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
}

/* --- HERO BANNER --- */
#banner {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('./assets/img/lancha21.jpg') center/cover no-repeat;
    color: var(--branco);
    overflow: hidden;
}

/* Floating bubbles in hero */
.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bubbles span {
    position: absolute;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: floatBubble linear infinite;
}

.hero-bubbles span:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 12s; animation-delay: 0s; }
.hero-bubbles span:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 8s; animation-delay: 2s; }
.hero-bubbles span:nth-child(3) { width: 60px; height: 60px; left: 35%; animation-duration: 15s; animation-delay: 4s; }
.hero-bubbles span:nth-child(4) { width: 30px; height: 30px; left: 50%; animation-duration: 10s; animation-delay: 1s; }
.hero-bubbles span:nth-child(5) { width: 50px; height: 50px; left: 65%; animation-duration: 13s; animation-delay: 3s; }
.hero-bubbles span:nth-child(6) { width: 25px; height: 25px; left: 80%; animation-duration: 9s; animation-delay: 5s; }
.hero-bubbles span:nth-child(7) { width: 45px; height: 45px; left: 90%; animation-duration: 11s; animation-delay: 2.5s; }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(30, 58, 138, 0.65) 100%);
    z-index: 1;
}

/* Internal banners: stronger overlay for readability */
#banner-lancha .banner-overlay,
#banner-aventura .banner-overlay,
#banner-sobre .banner-overlay,
#banner-contato .banner-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 58, 138, 0.75) 100%);
}

.banner-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.banner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-family: var(--font-subtitulo);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s 0.3s both;
}

.banner-tag i {
    color: var(--por-do-sol);
    margin-right: 0.4rem;
}

#banner h1 {
    font-family: var(--font-titulo);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s 0.5s both;
}

.texto-destaque {
    background: linear-gradient(135deg, #0EA5E9, #38BDF8, #7DD3FC, #0EA5E9);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

#banner p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s 0.7s both;
}

.banner-botoes {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.9s both;
}

/* --- BUTTONS PREMIUM --- */
.btn-primario {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--grad-cta);
    background-size: 200% 100%;
    color: var(--branco);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--sombra-btn);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shimmer effect on buttons */
.btn-primario::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primario:hover::before {
    left: 100%;
}

.btn-primario:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5), 0 0 20px rgba(14, 165, 233, 0.2);
    background-position: 100% 0;
}

.btn-primario:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-pulse {
    animation: pulse 2.5s infinite, glowPulse 3s ease-in-out infinite;
}

.btn-grande {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--branco);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.btn-secundario:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--branco);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-secundario:active {
    transform: translateY(-1px) scale(0.98);
}

/* Ripple effect container */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* Onda decorativa do hero */
.onda-hero {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.onda-hero svg {
    width: 100%;
    height: 100px;
    filter: drop-shadow(0 -5px 15px rgba(0, 0, 0, 0.05));
}

/* --- SEÇÕES GENÉRICAS --- */
.secao-cabecalho {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secao-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(59, 130, 246, 0.08));
    color: var(--turquesa);
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.secao-cabecalho h2 {
    font-family: var(--font-titulo);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--azul-profundo);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.secao-cabecalho h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--grad-primario);
    border-radius: 4px;
    margin: 0.6rem auto 0;
}

.secao-subtitulo {
    color: var(--cinza-medio);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* --- SERVIÇOS --- */
#servicos {
    padding: var(--secao-padding);
    background: var(--branco);
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.card-servico {
    background: var(--branco);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--sombra-card);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    border: 2px solid rgba(14, 165, 233, 0.45);
    display: flex;
    flex-direction: column;
}

.card-servico .card-corpo {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-servico .btn-card {
    margin-top: auto;
}

.card-servico::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.card-servico::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), rgba(30, 58, 138, 0.2), rgba(245, 158, 11, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-servico:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(30, 58, 138, 0.18),
        0 8px 24px rgba(14, 165, 233, 0.1),
        0 0 0 1px rgba(14, 165, 233, 0.06);
}

.card-servico:hover::before {
    opacity: 1;
}

.card-servico:hover::after {
    opacity: 1;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-servico:hover .card-img-wrapper::after {
    opacity: 1;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-servico:hover .card-img-wrapper img {
    transform: scale(1.12);
}

.card-servico:hover .card-corpo h3 {
    background: var(--grad-primario);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: var(--grad-primario);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.card-servico:hover .card-badge {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.5);
}

.card-corpo {
    padding: 1.5rem;
}

.card-corpo h3 {
    font-family: var(--font-subtitulo);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-profundo);
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.card-servico:hover .card-corpo h3 {
    color: var(--turquesa);
}

.card-corpo p {
    color: var(--texto-corpo);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--turquesa);
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primario);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
}

.card-link:hover {
    color: var(--azul-profundo);
    gap: 1rem;
}

.card-link:hover::after {
    width: 100%;
}

/* --- GALERIA --- */
#galeria {
    padding: var(--secao-padding);
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #F1F5F9 100%);
    overflow: hidden;
    position: relative;
}

#galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

#galeria::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.galeria-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.galeria-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.galeria-scroll::-webkit-scrollbar {
    height: 6px;
}

.galeria-scroll::-webkit-scrollbar-thumb {
    background: var(--turquesa);
    border-radius: 10px;
}

.galeria-scroll::-webkit-scrollbar-track {
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
}

.galeria-scroll img {
    flex-shrink: 0;
    width: 350px;
    height: 460px;
    object-fit: cover;
    border-radius: var(--border-radius);
    scroll-snap-align: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.galeria-scroll img:hover {
    transform: scale(1.04) translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2), 0 0 20px rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
}

.galeria-scroll iframe {
    flex-shrink: 0;
    border-radius: var(--border-radius);
    scroll-snap-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(30, 58, 138, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.galeria-scroll iframe:hover {
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-3px);
}

/* Setas de galeria */
.galeria-seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--azul-profundo);
    border: 2px solid rgba(30, 58, 138, 0.1);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.galeria-seta:hover {
    background: var(--grad-primario);
    color: var(--branco);
    border-color: transparent;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
}

.galeria-seta-esq {
    left: 0.5rem;
}

.galeria-seta-dir {
    right: 0.5rem;
}

/* --- DEPOIMENTOS --- */
#depoimentos {
    padding: var(--secao-padding);
    background-color: var(--branco);
    overflow: hidden;
    position: relative;
}

#depoimentos::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 15rem;
    font-family: serif;
    color: rgba(14, 165, 233, 0.04);
    line-height: 1;
    pointer-events: none;
}

.depoimentos-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.depoimentos-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.2rem;
    padding: 1rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.depoimentos-container::-webkit-scrollbar {
    height: 6px;
}

.depoimentos-container::-webkit-scrollbar-thumb {
    background: var(--turquesa);
    border-radius: 10px;
}

.depoimentos-container::-webkit-scrollbar-track {
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
}

.depoimentos-container figure {
    flex-shrink: 0;
    scroll-snap-align: center;
}

.depoimentos-container figure img {
    width: 280px;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--sombra-card);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
}

.depoimentos-container figure img:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow:
        0 20px 50px rgba(30, 58, 138, 0.2),
        0 8px 20px rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.25);
}

/* --- CTA FINAL (CONTATO) --- */
#contato {
    padding: 5rem 2rem;
    background: var(--grad-cta);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    position: relative;
    overflow: hidden;
}

#contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/img/lancha21.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

/* Decorative floating elements in CTA */
#contato::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -200px;
    right: -100px;
    z-index: 0;
}

.contato-conteudo {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contato-icone {
    font-size: 3rem;
    color: var(--por-do-sol);
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

#contato h2 {
    font-family: var(--font-titulo);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--branco);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

#contato p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#contato .btn-primario {
    background: var(--branco);
    color: var(--azul-profundo);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

#contato .btn-primario:hover {
    background: var(--por-do-sol);
    color: var(--branco);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

#contato .btn-primario::before {
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

/* --- FOOTER --- */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #0B1120 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 2rem 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-cta);
}

.footer-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-logo {
    height: 120px;
    margin-bottom: 0.8rem;
}

.footer-descricao {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rede-social {
    display: flex;
    gap: 1rem;
}

.rede-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--branco);
    transition: all 0.3s ease;
}

.rede-social a:hover {
    background: var(--turquesa);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.footer h3 {
    font-family: var(--font-subtitulo);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--turquesa);
    border-radius: 2px;
}

.footer-col-2 address {
    font-style: normal;
}

.footer-col-2 p {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col-2 p i {
    color: var(--turquesa);
    width: 18px;
    text-align: center;
}

.footer-col-2 a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col-2 a:hover {
    color: var(--turquesa);
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '›';
    color: var(--turquesa);
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--turquesa);
    padding-left: 0.3rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: whatsappBounce 3s ease infinite;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128C7E);
    font-size: 26px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.15);
    position: relative;
}

.whatsapp-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-texto {
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    white-space: nowrap;
    font-family: var(--font-subtitulo);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-flutuante:hover {
    animation: none;
}

.whatsapp-flutuante:hover .whatsapp-texto {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-flutuante:hover .whatsapp-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2);
}

/* ===================================================
   RESPONSIVO
   =================================================== */

/* Tablet */
@media (max-width: 900px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #banner h1 {
        font-size: 2.8rem;
    }
}

    #nossa-historia {
        padding: 2.2rem 0.7rem 2.7rem;
    }

    .historia-conteudo {
        padding: 0.7rem;
        gap: 1.2rem;
    }

    #missao-valores {
        padding: 2.2rem 0.7rem 2.7rem;
    }

    #missao-valores .secao-subtitulo {
        font-size: 1rem;
        padding: 0.7rem 0.7rem;
        border-radius: 12px;
    }

    .valor-card {
        font-size: 0.98rem;
        padding: 1.1rem 0.7rem;
    }

/* Mobile */
@media (max-width: 768px) {
    /* Header mobile */
    #nav-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--branco);

    #nossa-historia {
        padding: 1.2rem 0.2rem 1.7rem;
    }

    .historia-conteudo {
        padding: 0.2rem;
        gap: 0.7rem;
    }

    #missao-valores {
        padding: 1.2rem 0.2rem 1.7rem;
    }

    #missao-valores .secao-subtitulo {
        font-size: 0.97rem;
        padding: 0.5rem 0.4rem;
        border-radius: 8px;
    }

    .valor-card {
        font-size: 0.95rem;
        padding: 0.7rem 0.4rem;
    }
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 2px solid rgba(14, 165, 233, 0.2);
        z-index: 999;
    }

    #nav-wrapper.ativo {
        display: block;
    }

    #nav-wrapper ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    #nav-wrapper a {
        display: block;
        padding: 0.8rem 1rem;
        border-radius: 10px;
        font-size: 1rem;
    }

    #nav-wrapper a:hover {
        background-color: rgba(14, 165, 233, 0.08);
    }

    .btn-header-cta {
        display: none;
    }

    .lang-selector {
        gap: 0.15rem;
    }

    .lang-btn {
        width: 28px;
        height: 28px;
    }

    #hamburger-btn {
        display: flex;
    }

    /* Hero mobile */
    #banner {
        min-height: 80vh;
    }

    #banner h1 {
        font-size: 2.2rem;
    }

    .banner-conteudo {
        padding: 1.5rem;
    }

    .banner-botoes {
        flex-direction: column;
        align-items: center;
    }

    .btn-primario,
    .btn-secundario {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Cards mobile */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-img-wrapper {
        height: 250px;
    }

    /* Galeria mobile */
    .galeria-scroll img {
        width: 280px;
        height: 370px;
    }

    .galeria-seta {
        display: none;
    }

    /* Depoimentos mobile */
    .depoimentos-container figure img {
        width: 230px;
    }

    /* Footer mobile */
    .footer-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .rede-social {
        justify-content: center;
    }

    .footer-col-2 p {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    /* Barra topo */
    .barra-topo {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }

    .barra-topo p {
        gap: 0.2rem 0.5rem;
    }

    /* Seções padding */
    #servicos,
    #galeria,
    #depoimentos,
    #contato {
        padding: 3rem 1rem;
    }

    .secao-cabecalho h2 {
        font-size: 2rem;
    }

    /* WhatsApp mobile */
    .whatsapp-flutuante {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-texto {
        display: none;
    }

    /* Back to top mobile */
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    /* Disable parallax on mobile */
    #banner,
    #banner-lancha,
    #banner-aventura,
    #banner-sobre,
    #banner-contato {
        background-attachment: scroll !important;
    }

    /* Disable tilt effect indicators on mobile */
    .card-servico,
    .card-passeio,
    .valor-card {
        transform: none !important;
    }

    /* Sombras elegantes no mobile */
    :root {
        --sombra-card: 0 8px 35px rgba(30, 58, 138, 0.25), 0 3px 12px rgba(14, 165, 233, 0.14), 0 0 0 1px rgba(14, 165, 233, 0.08);
    }

    .card-servico,
    .card-passeio,
    .valor-card,
    #form-contato,
    .faq-item,
    .contato-info-item {
        border-color: rgba(14, 165, 233, 0.35);
    }
}

/* Mobile pequeno */
@media (max-width: 400px) {
    header {
        padding: 0.5rem 1rem;
    }

    .header-left img {
        height: 42px;
    }

    #banner {
        min-height: 70vh;
    }

    #banner h1 {
        font-size: 1.8rem;
    }

    .galeria-scroll img {
        width: 240px;
        height: 320px;
    }
}

/* ===================================================
   PÁGINAS INTERNAS — PREMIUM OVERRIDES
   =================================================== */

/* --- BANNERS INTERNOS --- */
#banner-lancha,
#banner-aventura,
#banner-sobre,
#banner-contato {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#banner-lancha { background-image: url('./assets/img/lancha37.jpg'); }
#banner-aventura { background-image: url('./assets/img/jet8.jpg'); }
#banner-sobre { background-image: url('./assets/img/lancha2.jpeg'); }
#banner-contato { background-image: url('./assets/img/sobre.jpg'); }

/* Internal banner content animations */
#banner-lancha .banner-conteudo,
#banner-aventura .banner-conteudo,
#banner-sobre .banner-conteudo,
#banner-contato .banner-conteudo {
    animation: fadeInUp 1s 0.2s both;
}

#banner-lancha h1,
#banner-aventura h1,
#banner-sobre h1,
#banner-contato h1 {
    font-family: var(--font-titulo);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.5);
    color: var(--branco);
}

#banner-lancha p,
#banner-aventura p,
#banner-sobre p,
#banner-contato p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    color: var(--branco);
}

#banner-lancha .banner-tag,
#banner-aventura .banner-tag,
#banner-sobre .banner-tag,
#banner-contato .banner-tag {
    background: rgba(255, 255, 255, 0.18);
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* --- PASSEIOS DE LANCHA — CARDS --- */
.passeio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.card-passeio {
    background: var(--branco);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--sombra-card);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(14, 165, 233, 0.45);
    position: relative;
}

.card-passeio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primario);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
    z-index: 2;
}

.card-passeio::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35), rgba(30, 58, 138, 0.15), rgba(245, 158, 11, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-passeio:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 25px 60px rgba(30, 58, 138, 0.16),
        0 10px 25px rgba(14, 165, 233, 0.1),
        0 0 0 1px rgba(14, 165, 233, 0.05);
}

.card-passeio:hover::before {
    transform: scaleX(1);
}

.card-passeio:hover::after {
    opacity: 1;
}

.card-passeio.destaque {
    border: 2px solid var(--por-do-sol);
    position: relative;
    box-shadow:
        0 8px 30px rgba(245, 158, 11, 0.15),
        0 4px 15px rgba(245, 158, 11, 0.08),
        var(--sombra-card);
}

.card-passeio.destaque:hover {
    box-shadow:
        0 30px 70px rgba(245, 158, 11, 0.2),
        0 12px 30px rgba(14, 165, 233, 0.08),
        0 0 35px rgba(245, 158, 11, 0.1);
}

.card-passeio.destaque::after {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4), rgba(14, 165, 233, 0.25), rgba(245, 158, 11, 0.4));
}

.card-tag-destaque {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--por-do-sol), #F97316);
    color: var(--branco);
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: pulse 2.5s infinite;
}

.badge-destaque {
    background: var(--por-do-sol) !important;
}

.card-passeio .card-img-wrapper {
    height: 260px;
    position: relative;
}

.card-passeio .card-corpo {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-passeio h3 {
    font-family: var(--font-subtitulo);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-profundo);
    margin-bottom: 1rem;
}

.passeio-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.passeio-detalhe {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--cinza-medio);
    background: var(--cinza-claro);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.passeio-detalhe i {
    color: var(--turquesa);
    font-size: 0.8rem;
}

.passeio-roteiro {
    background: var(--cinza-claro);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
}

.roteiro-titulo {
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--azul-profundo);
    margin-bottom: 0.6rem;
}

.roteiro-titulo i {
    color: var(--turquesa);
}

.passeio-roteiro ul {
    list-style: none;
    padding: 0;
}

.passeio-roteiro li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    color: var(--texto-corpo);
    line-height: 1.8;
}

.passeio-roteiro li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--turquesa);
    font-size: 0.75rem;
}

.passeio-precos {
    margin-bottom: 1rem;
}

.preco-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.preco-item:last-child {
    border-bottom: none;
}

.preco-label {
    font-size: 0.88rem;
    color: var(--texto-corpo);
    flex: 1;
    min-width: 0;
}

.preco-valor {
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--azul-profundo);
    white-space: nowrap;
    flex-shrink: 0;
}

.passeio-obs {
    font-size: 0.8rem;
    color: var(--cinza-medio);
    background: #FFF7ED;
    border-left: 3px solid var(--por-do-sol);
    padding: 0.6rem 0.8rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.passeio-obs i {
    color: var(--por-do-sol);
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
}

/* Churrasco Deluxe */
.churrasco-incluso {
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.4s ease;
}

.churrasco-incluso:hover {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
    transform: translateY(-2px);
}

.churrasco-titulo {
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--por-do-sol);
    margin-bottom: 0.5rem;
}

.churrasco-incluso > p:not(.churrasco-titulo) {
    font-size: 0.85rem;
    color: var(--texto-corpo);
    margin-bottom: 0.8rem;
}

.churrasco-itens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.churrasco-itens span {
    background: var(--branco);
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    color: var(--texto-corpo);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* --- FAQ ACCORDION --- */
#faqs-lancha {
    padding: var(--secao-padding);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    border: 2px solid rgba(14, 165, 233, 0.35);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    position: relative;
    box-shadow: var(--sombra-card);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 14px 0 0 14px;
    background: var(--grad-primario);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.1), 0 4px 12px rgba(14, 165, 233, 0.06);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(6px);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item.ativo {
    border-color: var(--turquesa);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.12), 0 0 0 1px rgba(14, 165, 233, 0.08);
    background: linear-gradient(135deg, var(--branco), #F0F9FF);
}

.faq-item.ativo::before {
    transform: scaleY(1);
}

.faq-pergunta {
    font-family: var(--font-subtitulo);
    font-size: 1rem;
    font-weight: 700;
    color: var(--azul-profundo);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 0.7rem;
    color: var(--turquesa);
    transition: transform 0.3s ease;
}

.faq-item.ativo .faq-icon {
    transform: rotate(90deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
    color: var(--texto-corpo);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.ativo .faq-resposta {
    max-height: 300px;
    margin-top: 0.8rem;
}

/* --- SOBRE — HISTÓRIA --- */
#nossa-historia {
    padding: var(--secao-padding);
    position: relative;
    overflow: hidden;
}

#nossa-historia::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 72%);
    pointer-events: none;
}

.historia-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem;
    border-radius: calc(var(--border-radius) + 8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.92));
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow: 0 24px 65px rgba(30, 58, 138, 0.08), 0 6px 18px rgba(14, 165, 233, 0.08);
    position: relative;
    z-index: 1;
}

.historia-imagem img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-card);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.historia-imagem img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.2);
}

.historia-texto p {
    color: var(--texto-corpo);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.historia-texto p:first-child {
    font-size: 1.08rem;
    color: var(--texto-escuro);
}

.historia-texto strong {
    color: var(--azul-profundo);
}

#missao-valores {
    padding: 3.5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(241, 245, 249, 0.6), rgba(255, 255, 255, 0.95));
}

#missao-valores::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 72%);
    pointer-events: none;
}

#missao-valores .secao-cabecalho {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

#missao-valores .secao-subtitulo {
    max-width: 700px;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.85));
    border: 1px solid rgba(14, 165, 233, 0.16);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.06);
}

#missao-valores .valor-card {
    background: rgba(255, 255, 255, 0.97);
}

/* --- SOBRE — VALORES GRID --- */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.valor-card {
    background: var(--branco);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--sombra-card);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid rgba(14, 165, 233, 0.45);
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primario);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

.valor-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, bottom 0.6s ease;
    pointer-events: none;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(30, 58, 138, 0.15),
        0 8px 20px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.15);
}

.valor-card:hover::before {
    transform: scaleX(1);
}

.valor-card:hover::after {
    opacity: 1;
    bottom: -20px;
}

.valor-icone {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--grad-primario);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.valor-card:hover .valor-icone {
    transform: scale(1.18) rotate(10deg);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.35), 0 0 20px rgba(14, 165, 233, 0.2);
}

.valor-icone i {
    color: var(--branco);
    font-size: 1.5rem;
}

.valor-card h3 {
    font-family: var(--font-subtitulo);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--azul-profundo);
    margin-bottom: 0.6rem;
}

.valor-card p {
    font-size: 0.9rem;
    color: var(--texto-corpo);
    line-height: 1.6;
}

/* --- SOBRE — DIFERENCIAIS / NÚMEROS --- */
#diferenciais {
    padding: var(--secao-padding);
    background: var(--grad-cta);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

#diferenciais::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -250px;
    left: -100px;
    pointer-events: none;
}

#diferenciais::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    bottom: -150px;
    right: -50px;
    pointer-events: none;
}

#diferenciais .secao-tag {
    color: var(--branco);
    border-color: rgba(255, 255, 255, 0.3);
}

#diferenciais h2 {
    color: var(--branco);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.diferencial-item {
    padding: 2rem 1rem;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: var(--border-radius);
    position: relative;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.diferencial-item:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diferencial-item:hover::before {
    opacity: 1;
}

.diferencial-item i {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
}

.diferencial-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.4));
}

.diferencial-numero {
    font-family: var(--font-titulo);
    font-size: 3rem;
    display: block;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.diferencial-item:hover .diferencial-numero {
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.diferencial-item p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* --- CONTATO PAGE --- */
#conteudo-contato {
    padding: var(--secao-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 0;
}

.contato-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 14px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
    position: relative;
    background: var(--branco);
    box-shadow: var(--sombra-card);
    border: 2px solid rgba(14, 165, 233, 0.35);
}}

.contato-info-item:hover {
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1), 0 4px 12px rgba(30, 58, 138, 0.06);
    border-color: rgba(14, 165, 233, 0.12);
}

.contato-info-item > i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primario);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.contato-info-item:hover > i {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3), 0 0 15px rgba(14, 165, 233, 0.15);
}

.contato-info-item div {
    display: flex;
    flex-direction: column;
}

.contato-info-item strong {
    font-family: var(--font-subtitulo);
    font-size: 0.9rem;
    color: var(--azul-profundo);
    margin-bottom: 0.2rem;
}

.contato-info-item a,
.contato-info-item span {
    font-size: 0.92rem;
    color: var(--texto-corpo);
}

.contato-info-item a:hover {
    color: var(--turquesa);
}

.contato-social p {
    font-family: var(--font-subtitulo);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--azul-profundo);
    margin-bottom: 0.8rem;
}

.contato-social .redes-sociais {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

.contato-social .redes-sociais a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primario);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contato-social .redes-sociais a:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
}

/* Form premium */
#form-contato {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-card);
    border: 2px solid rgba(14, 165, 233, 0.45);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

#form-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primario);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}

#form-contato:hover {
    box-shadow:
        0 20px 50px rgba(30, 58, 138, 0.12),
        0 8px 20px rgba(14, 165, 233, 0.06);
    border-color: rgba(14, 165, 233, 0.12);
    transform: translateY(-4px);
}

#form-contato:hover::before {
    transform: scaleX(1);
}

#form-contato h3 {
    font-family: var(--font-subtitulo);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-profundo);
    margin-bottom: 1.5rem;
}

#form-contato h3 i {
    color: var(--turquesa);
    margin-right: 0.4rem;
}

.form-grupo {
    margin-bottom: 1.2rem;
}

.form-grupo label {
    display: block;
    font-family: var(--font-subtitulo);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--azul-profundo);
    margin-bottom: 0.4rem;
}

.form-grupo input,
.form-grupo textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    border: 2px solid rgba(30, 58, 138, 0.08);
    border-radius: 12px;
    font-family: var(--font-corpo);
    font-size: 0.92rem;
    color: var(--texto-escuro);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
    background: var(--cinza-claro);
}

.form-grupo input:focus,
.form-grupo textarea:focus {
    border-color: var(--turquesa);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1), 0 4px 20px rgba(14, 165, 233, 0.08);
    background: var(--branco);
    transform: translateY(-1px);
}

.form-grupo input::placeholder,
.form-grupo textarea::placeholder {
    color: var(--cinza-medio);
}

.btn-form {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-form:hover {
    transform: translateY(-2px) scale(1.01);
}

/* MAP */
.mapa-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30, 58, 138, 0.12);
    border: 2px solid rgba(30, 58, 138, 0.06);
    transition: box-shadow 0.4s ease;
}

.mapa-wrapper:hover {
    box-shadow: 0 12px 50px rgba(30, 58, 138, 0.18);
}

.mapa-wrapper iframe {
    border: none;
    display: block;
}

/* BTN GRANDE */
.btn-grande {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* --- GALERIA / VÍDEOS INTERNAS --- */
#galeria-lancha,
#galeria-fotos-aventura {
    padding: var(--secao-padding);
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #F1F5F9 100%);
    position: relative;
}

#galeria-lancha::before,
#galeria-fotos-aventura::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

#galeria-videos,
#galeria-videos-aventura {
    padding: var(--secao-padding);
}

/* --- CTA FINAL INTERNAS --- */

#contato-final {
    padding: 5rem 2rem;
    background: var(--grad-cta);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

#contato-final.lancha::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/img/lancha37.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
#contato-final.aventura::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/img/jet8.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
#contato-final.sobre::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('./assets/img/lancha2.jpeg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}


#contato-final .contato-conteudo {
    position: relative;
    z-index: 1;
}

#contato-final .contato-icone {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

#contato-final h2 {
    font-family: var(--font-titulo);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    color: var(--branco);
}

#contato-final p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- LOCALIZAÇÃO --- */
#localizacao {
    padding: var(--secao-padding);
    text-align: center;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #F1F5F9 100%);
    position: relative;
}

#localizacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

/* ===================================================
   RESPONSIVO — PÁGINAS INTERNAS
   =================================================== */

@media (max-width: 900px) {


    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .historia-conteudo {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #banner-lancha,
    #banner-aventura,
    #banner-sobre,
    #banner-contato {
        min-height: 75vh;
        background-attachment: scroll !important;
    }

    #banner-lancha h1,
    #banner-aventura h1,
    #banner-sobre h1,
    #banner-contato h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    #banner-lancha p,
    #banner-aventura p,
    #banner-sobre p,
    #banner-contato p {
        font-size: 0.95rem;
    }

    .valores-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
    }

    .historia-imagem img {
        height: 280px;
    }

    #missao-valores {
        padding: 3rem 1.5rem 4rem;
    }

    #missao-valores .secao-subtitulo {
        padding: 0.9rem 1rem;
    }

    .contato-info-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    #banner-lancha h1,
    #banner-aventura h1,
    #banner-sobre h1,
    #banner-contato h1 {
        font-size: 1.8rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
    }

    .diferencial-numero {
        font-size: 2rem;
    }

    .card-passeio .card-img-wrapper {
        height: 200px;
    }

    .card-passeio:hover,
    .valor-card:hover {
        transform: translateY(-4px) !important;
    }

    /* Pre\u00e7os em telas muito pequenas */
    .preco-item {
        flex-wrap: wrap;
    }
    .preco-label {
        flex: 1 1 100%;
        font-size: 0.82rem;
    }
    .price-box {
        margin-left: auto;
    }
    .discount-badge {
        font-size: 0.55rem;
        padding: 1px 5px;
    }
}