        /* VARIÁVEIS - Design: Tropical Vibrant */
        :root {
            --orange-primary: #F26431;
            --orange-dark: #D45003;
            --yellow-accent: #F1B434;
            --green-tropical: #55A630;
            --blue-water: #0da9e0;
            --purple-accent: #9B59B6;
            --red-accent: #f26431;
            --white: #FFFFFF;
            --black: #1A1A1A;
            --gray-light: #F5F5F5;
            --gray-medium: #6B7280;
            --font-display: 'Archivo Black', sans-serif;
            --font-body: 'Inter', sans-serif;
            --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
            --shadow-xl: 0 12px 48px rgba(0,0,0,0.25);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-body); color: var(--black); line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); text-transform: uppercase; line-height: 1.1; }
        
        /* ANIMAÇÕES */
        @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
        @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        .animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
        .cta-pulse { animation: pulse 2s infinite; }
        .cta-pulse:hover { animation: none; transform: scale(1.05); }
        .whatsapp-shake:hover { animation: shake 0.5s ease-in-out; }
        
        /* BOTÕES */
        .btn-primary-custom {
            background: var(--orange-primary); color: var(--white); font-family: var(--font-display);
            font-size: 1rem; text-transform: uppercase; padding: 1rem 2rem; border: none;
            border-radius: 50px; transition: all 0.3s ease; box-shadow: var(--shadow-md);
            text-decoration: none; display: inline-block;
        }
        .btn-primary-custom:hover {
            background: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg);
        }
        .btn-whatsapp {
            background: #25D366; color: var(--white); font-family: var(--font-display);
            font-size: 1rem; text-transform: uppercase; padding: 1rem 2rem; border: none;
            border-radius: 50px; transition: all 0.3s ease; box-shadow: var(--shadow-md);
            text-decoration: none; display: inline-block;
        }
        .btn-whatsapp:hover { background: #128C7E; color: var(--white); scale: 1.05; box-shadow: var(--shadow-lg); }
        
        /* HERO SECTION */
        .hero-section { position: relative; min-height: 95vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .hero-bg { position: absolute; inset: 0; background: url('../ingressos/images/ingressos-min.png') center/cover no-repeat; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), transparent); }
        .hero-content { position: relative; z-index: 10; padding: 2rem; max-width: 1100px; text-align: center; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange-primary);
            padding: 0.5rem 1.5rem; border-radius: 50px; margin-bottom: 1.5rem;
        }
        .hero-badge span { color: var(--white); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; }
        .hero-title { color: var(--white); font-size: clamp(2.5rem, 8vw, 5rem); margin-bottom: 1.5rem; }
        .hero-title .highlight { color: var(--yellow-accent); }
        .hero-subtitle {
            color: rgba(255,255,255,0.95); font-size: 1.25rem; margin-bottom: 2rem;
        }
        .hero-subtitle strong { color: var(--orange-primary); }
        
        /* BENEFÍCIOS SECTION */
        .beneficios-section { padding: 4rem 0; background: var(--orange-primary); }
        .beneficio-item { text-align: center; color: var(--white); }
        .beneficio-icon {
            width: 56px; height: 56px; background: rgba(255,255,255,0.2); border-radius: 12px;
            display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
        }
        .beneficio-icon i { font-size: 1.75rem; }
        .beneficio-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
        .beneficio-item p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin: 0; }
        
        /* PACOTES SECTION */
        .pacotes-section { padding: 5rem 0; background: var(--white); }
        .section-badge {
            display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange-primary);
            color: var(--white); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem;
            font-weight: 700; text-transform: uppercase; margin-bottom: 1rem;
        }
        .section-title { font-size: clamp(2rem, 5vw, 3rem); color: var(--black); margin-bottom: 1rem; }
        .section-title .highlight { color: var(--orange-primary); }
        .section-subtitle { color: var(--gray-medium); font-size: 1.125rem; max-width: 700px; margin: 0 auto 3rem; }
        
        /* CARDS DE PACOTES */
        .pacote-card {
            background: var(--white); border: 2px solid #E5E7EB; border-radius: 1rem; overflow: hidden;
            transition: all 0.3s ease; height: 100%;
        }
        .pacote-card:hover { border-color: var(--orange-primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .pacote-card.destaque { border: 4px solid var(--orange-primary); transform: scale(1.05); box-shadow: var(--shadow-xl); }
        .pacote-badge {
            background: var(--orange-primary); color: var(--white); text-align: center; padding: 0.5rem;
            font-weight: 700; font-size: 0.875rem; text-transform: uppercase;
        }
        .pacote-header { padding: 2rem 1.5rem 1rem; text-align: center; }
        .pacote-icon {
            width: 64px; height: 64px; border-radius: 1rem; display: flex; align-items: center;
            justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: var(--white);
        }
        .pacote-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .pacote-validade { color: var(--gray-medium); font-size: 0.875rem; margin-bottom: 1rem; }
        .pacote-preco-antigo {
            text-decoration: line-through; color: var(--gray-medium); font-size: 1rem;
        }
        .pacote-preco { margin-top: 0.5rem; }
        .pacote-preco-valor { font-family: var(--font-display); font-size: 3rem; color: var(--orange-primary); }
        .pacote-preco-periodo { color: var(--gray-medium); font-size: 0.875rem; }
        .pacote-body { padding: 0 1.5rem 2rem; }
        .pacote-beneficios { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
        .pacote-beneficios li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.875rem; }
        .pacote-beneficios i { color: var(--green-tropical); font-size: 1.25rem; flex-shrink: 0; }
        .btn-comprar {
            display: flex;
            text-decoration: none;
            text-align: center;
            background: var(--orange-primary);
            color: var(--white);
            font-family: var(--font-display);
            text-transform: uppercase;
            padding: 1rem 4rem;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            flex-direction: column;
            align-content: center;
            align-items: center;
        }
        .btn-comprar:hover { background: var(--orange-dark); transform: translateY(-2px); }
        .pacote-card.destaque .btn-comprar { background: var(--red-accent); }
        .pacote-card.destaque .btn-comprar:hover { background: #D62828; }
        
        /* ATRACOES SECTION */
        .atracoes-section { padding: 5rem 0; background: var(--gray-light); }
        .atracao-item {
            background: var(--white); border-radius: 1rem; padding: 1.5rem; text-align: center;
            transition: all 0.3s ease; height: 100%;
        }
        .atracao-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
        .atracao-icon {
            width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center;
            justify-content: center; margin: 0 auto 1rem; font-size: 1.75rem; color: var(--white);
        }
        .atracao-item h4 { font-size: 0.875rem; margin-bottom: 0.5rem; }
        .atracao-item p { color: var(--gray-medium); font-size: 0.75rem; margin: 0; }
        
        /* CTA SECTION */
        .cta-section {
            padding: 5rem 0; background: linear-gradient(135deg, var(--orange-primary), var(--red-accent));
            text-align: center; color: var(--white);
        }
        .cta-section h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
        .cta-section p { font-size: 1.25rem; margin-bottom: 2rem; max-width: 750px; margin-left: auto; margin-right: auto; }
        
        /* FOOTER */
        .footer { background: var(--black); color: var(--white); padding: 4rem 0 2rem; }
        .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 3rem; }
        @media (min-width: 768px) { .footer-links { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 992px) { .footer-links { grid-template-columns: repeat(6, 1fr); } }
        .footer-link {
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
            padding: 1rem; border-radius: 1rem; color: var(--white); text-decoration: none; font-weight: 600;
            font-size: 0.875rem; transition: all 0.3s ease;
        }
        .footer-link:hover { transform: scale(1.05); color: var(--white); }
        .footer-link i { font-size: 1.5rem; }
        .footer-link.site { background: var(--blue-water); }
        .footer-link.instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
        .footer-link.facebook { background: #1877F2; }
        .footer-link.contratos { background: var(--orange-primary); }
        .footer-link.hospedagem { background: var(--green-tropical); }
        .footer-link.grupos { background: var(--red-accent); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
        .footer-brand h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin: 0; }
        .footer-copyright { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-top: 2rem; }
        
        /* RESPONSIVIDADE */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .section-title { font-size: 1.75rem; }
            .btn-primary-custom, .btn-whatsapp { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
        }



               /* ============================================
           ATRAÇÕES SECTION
        ============================================ */
        .atracoes-section {
            padding: 5rem 0;
            background: var(--white);
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--orange-primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--black);
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            color: var(--orange-primary);
        }

        .section-subtitle {
            color: var(--gray-medium);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        /* Attraction Cards */
        .excursao-box{
        position: absolute;
        padding: 15px 20px;
        }

        .text-box{
        padding: 10px 20px;
        font-size: 15px;
        border-radius: 50px;
        }

        .card{
        padding: 0;
        width: 100%;
        height: 360px;
        border-radius: 25px;
        }

        .card img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
        margin-bottom: 0;
        }

        .excursao-text{
        padding: 0px 60px 0px 0px;
        }

        .excursions__box {
        position: relative;
        /* overflow: hidden; */
        border-radius: 20px;
        transition: transform 0.3s ease;
        }

        .excursions__box-image {
        position: relative;
        }

        .excursions__box-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .excursions__box-leg {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 8px 20px;
        color: white;
        font-weight: bold;
        border-radius: 20px;
        text-transform: uppercase;
        font-size: 0.9rem;
        }

        .blue{
        color: #00a9e0 ;
        }

        .excursions__box-leg.groups {
        background-color: #27a4f2;
        }

        .excursions__box-leg.best-age {
        background-color: #00a3ad;
        }

        .excursions__box-leg.school {
        background-color: #e91e63;
        }

        .excursions__box-element-groups,
        .excursions__box-element-best-age,
        .excursions__box-element-school {
        overflow: visible;
        position: absolute;
        pointer-events: none;
        z-index: 2;
        }

        .excursions__box-element-groups {
        bottom: 30px;
        left: -35px;
        width: 200px !important;
        height: auto;
        fill: #00a9e0;
        }

        .excursions__box-element-best-age {
        position: absolute;
        top: -50px;
        right: 0px;
        width: 180px;
        height: auto;
        z-index: 2;
        fill: #00a3ad;
        }

        .svg-wrapper{
        max-width: 150px;
        width: 100%;
        /* overflow: hidden; */
        margin: 0 auto;
        }

        .excursions__box-element-school {
        bottom: 50px;
        right: 90px;
        width: 40px;
        height: auto;
        fill: #e91e63;
        }

        .title-excursao{
        color: #00a9e0;
        }

        .p-excursao{
        color: #797563;
        }

        @media (max-width: 991px) {
        .excursao-text{
            width: 100%;
            padding: 0px 0px 50px 0px;
        }

        .svg-wrapper {
            max-width: 200px;
        }

        .onda-banner{
            height: 50vh;
        }

        .excursao-banner{
            height: 49vh;
        }

        .excursao-title{
            top: 50%;
            font-size: 3rem;
        }
        }
        
        @media (max-width: 568px) {
        }
        
        @media (max-width: 480px) {
        .excursions__box-element-groups{
            bottom: 80px;
            right: 120px;
        }
        .svg-wrapper {
            max-width: 100px;
        }

        .excursao-banner{
            height: 39vh;
        }

        .excursao-title {
            top: 60%;
            font-size: 2rem;
        }
        
        .excursao-title p{
            font-size: 15px;
        }
        .onda-banner {
            height: 40vh;
        }
        
        .offcanvas{
            max-width: 75% !important;
        }
        }
        
                /* ============================================
           VIDEO SECTION
        ============================================ */
        .video-section {
            padding: 10rem 0;
            position: relative;
        }

        .video-section .section-title {
            color: var(--white);
        }

        .video-section .section-subtitle {
            color: rgba(255,255,255,0.9);
        }

        .video-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .video-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--blue-light), var(--blue-water));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            transform: scale(1.02);
        }

        .video-placeholder {
            background: url("https://img.youtube.com/vi/OD9Yg6nW82Y/maxresdefault.jpg") center/cover no-repeat;
        }


        .play-button {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--orange-primary);
            margin-bottom: 1rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
            background: var(--orange-primary);
            color: var(--white);
        }

        .video-placeholder p {
            color: var(--white);
            font-size: 0.875rem;
        }






                /* HEADER FLUTUANTE */
/* HEADER FIXO REAL */
.floating-header {
    position: fixed;
    top: 16px;
    /* left: 0; */
    width: 100%;
    z-index: 1050;
  }
  
  /* container centraliza, não o header */
  .floating-header .container {
    max-width: 1320px;
  }
  
  
  /* RETÂNGULO */
  .header-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 16px 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  section[id] {
    scroll-margin-top: 140px;
  }
  
  /* LOGO */
  .logo {
    color: transparent;
    font-size: 1.4rem;
    font-weight: 700;
  }
  
  .logo span {
    color: transparent;
  }
  
  /* LINKS */
  .nav-link-custom {
    color: #222;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
  }
  
  .nav-link-custom:hover {
    opacity: 1;
  }
  
  /* BOTÃO */
  .btn-header {
    border-radius: 12px;
    font-weight: 600;
  }
        /* ============================================
           FOOTER
        ============================================ */
.footer-simple {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 5rem 0 3rem;
  position: relative;
}

/* CTA */
.footer-cta h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* DIVISOR */
.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 3rem 0;
}

/* LOGO */
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo span {
  color: var(--blue-water);
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* NAV */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--blue-water);
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  color: #fff;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--blue-water);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.8rem;
}

/* MOBILE */
@media (max-width: 991px) {
  .footer-social {
    justify-content: center;
  }
}
