/* ==========================================================================
   MOSSORÓ ACQUA PARK - DESIGN SYSTEM & BRAND STYLE SHEET
   Identidade Visual Oficial: Laranja #FF8630 + Azul #2745E3 + Ciano #2EB7FF + Lime #CFFF40 + Bege #FEF5F1
   ========================================================================== */

/* 1. CSS VARIABLES & SYSTEM DESIGN TOKENS */
:root {
    /* ===== BRAND COLORS (Paleta Oficial da Empresa) ===== */
    --brand-orange: #FF8630;
    /* Laranja vibrante de destaque     */
    --brand-blue-deep: #2745E3;
    /* Azul principal do logo           */
    --brand-blue-light: #2EB7FF;
    /* Azul ciano das ondas             */
    --brand-lime: #CFFF40;
    /* Verde-limão de destaque          */
    --brand-beige: #FEF5F1;
    /* Bege/Rosa pálido de fundo        */
    --brand-navy: #2745E3;
    /* Fundo escuro profundo substituído pelo azul real #2745E3 */

    /* Gradientes */
    --primary-gradient: linear-gradient(135deg, #2EB7FF 0%, #2745E3 100%);
    --primary-gradient-v: linear-gradient(180deg, #2EB7FF 0%, #2745E3 100%);
    --lime-gradient: linear-gradient(135deg, rgba(207, 255, 64, 0.8) 0%, #CFFF40 100%);
    --orange-gradient: linear-gradient(135deg, rgba(255, 134, 48, 0.8) 0%, #FF8630 100%);
    --hero-overlay: linear-gradient(180deg, rgba(39, 69, 227, 0.45) 0%, rgba(39, 69, 227, 0.85) 100%);

    /* Aliases semânticos */
    --primary-blue: var(--brand-blue-deep);
    --primary-cyan: var(--brand-blue-light);
    --lime-green: var(--brand-lime);
    --dark-navy: var(--brand-navy);
    --mid-navy: #172FB3;
    /* Baseado no azul #2745E3 */
    --soft-white: var(--brand-beige);
    --accent-orange: var(--brand-orange);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(39, 69, 227, 0.07);
    --shadow-md: 0 10px 30px rgba(39, 69, 227, 0.14);
    --shadow-lg: 0 24px 50px rgba(39, 69, 227, 0.20);
    --shadow-glow: 0 0 25px rgba(207, 255, 64, 0.55);
    --shadow-orange-glow: 0 0 28px rgba(255, 134, 48, 0.55);
    --shadow-blue-glow: 0 0 30px rgba(46, 183, 255, 0.50);
    --shadow-card: 0 8px 32px rgba(39, 69, 227, 0.10);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 18px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE RESET & GLOBAL STYLES */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    background-color: var(--soft-white);
    color: #1E254A;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.text-lime {
    color: var(--lime-green);
}

.bg-lime {
    background-color: var(--lime-green) !important;
}

.rounded-lg {
    border-radius: var(--radius-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-white {
    color: #ffffff !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}


.hidden {
    display: none !important;
}

/* 3. BUTTONS & UI COMPONENTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    gap: 8px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue-glow);
    filter: brightness(1.1);
}

.btn-lime {
    background: var(--lime-gradient);
    color: var(--dark-navy);
    font-weight: 800;
    box-shadow: var(--shadow-glow);
}

.btn-lime:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(207, 255, 64, 0.75);
    filter: brightness(1.08);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--primary-blue);
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn-pulse {
    position: relative;
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(207, 255, 64, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(207, 255, 64, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(207, 255, 64, 0);
    }
}

/* 4. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(39, 69, 227, 0.08);
}

.header.scrolled .nav-link {
    color: var(--dark-navy);
}

.header.scrolled .logo-blue {
    display: block;
}

.header.scrolled .logo-white {
    display: none !important;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: block;
    max-width: 190px;
    flex-shrink: 0;
}

.logo-img {
    height: auto;
    width: 100%;
    transition: var(--transition-fast);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--lime-green);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link::after {
    background-color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.header.scrolled .menu-toggle span {
    background-color: var(--dark-navy);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 245, 241, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 80%;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-link:hover {
    color: var(--lime-green);
    transform: scale(1.05);
}

/* 5. HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-bg-slider .slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 8s ease-in-out;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 10;
    max-width: 800px;
    width: 100%;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207, 255, 64, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(207, 255, 64, 0.5);
    color: var(--brand-lime);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.12;
    text-shadow: 0 4px 24px rgba(10, 22, 40, 0.5);
    animation: fadeInUp 0.8s ease-out forwards;
    word-break: break-word;
}

.hero-title .text-gradient {
    filter: drop-shadow(0 0 2px #ffffff) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-bottom: 12px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Quick Info Bar */
.quick-info-bar {
    display: flex;
    background: rgba(39, 69, 227, 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(207, 255, 64, 0.25);
    border-radius: var(--radius-md);
    padding: 22px 40px;
    width: 100%;
    margin-top: 40px;
    gap: 24px;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(39, 69, 227, 0.3);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.quick-info-item i {
    font-size: 1.8rem;
}

.quick-info-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.quick-info-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* SVG Divider */
.wave-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 15;
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-separator .shape-fill {
    fill: var(--soft-white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* 6. SECTION HEADER & LAYOUTS */
.section-header {
    margin-bottom: 60px;
}

.section-garanta {
    color: #CFFF40;
    margin-bottom: 8px;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 8px;
}

.tagline-light {
    color: var(--lime-green) !important;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #CFFF40;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: var(--radius-full);
    margin-top: 16px;
}

/* 7. O PARQUE SECTION */
.parque-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--soft-white);
}

.parque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.parque-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mid-navy);
    line-height: 1.4;
    margin-bottom: 20px;
}

.parque-text-col p {
    color: #3A426B;
    margin-bottom: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    background: #ffffff;
    padding: 20px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-cyan);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Stack Decor */
.parque-visual-col {
    position: relative;
    height: 450px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-stack-item {
    position: absolute;
    border: 8px solid #ffffff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.image-stack-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.image-stack-item-1 {
    width: 65%;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-stack-item-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.image-stack-item:hover {
    transform: scale(1.03);
    z-index: 3;
}

.water-splash-decor {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 30%;
    left: 55%;
    z-index: 3;
    pointer-events: none;
    animation: floatSplash 6s ease-in-out infinite;
}

@keyframes floatSplash {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}

/* 8. ATRAÇÕES SECTION */
.atracoes-section {
    background: linear-gradient(160deg, var(--brand-navy) 0%, #172FB3 50%, var(--brand-navy) 100%);
    padding: 160px 0 120px;
    position: relative;
}

/* Elevate the content above the wave decorators */
.atracoes-section .container,
.ingressos-section .container {
    position: relative;
    z-index: 10;
}

.wave-top-decor,
.wave-bottom-decor,
.wave-bottom-decor-2,
.wave-top-decor-3 {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-top-decor {
    top: -1px;
    left: 0;
}

.wave-top-decor svg {
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-top-decor .shape-fill {
    fill: var(--soft-white);
}

.wave-bottom-decor-2 {
    bottom: -1px;
    left: 0;
}

.wave-bottom-decor-2 svg {
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-bottom-decor-2 .shape-fill {
    fill: #ffffff;
}

/* Filters */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.filter-btn.active {
    background: var(--lime-green);
    color: var(--dark-navy);
    border-color: var(--lime-green);
    box-shadow: var(--shadow-glow);
}

/* Attractions Grid */
.atracoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.atracao-card {
    background: #ffffff;
    border: 1px solid rgba(39, 69, 227, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(8, 14, 44, 0.08);
}

.atracao-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 183, 255, 0.5);
    box-shadow: 0 20px 40px rgba(8, 14, 44, 0.15);
}

.atracao-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.atracao-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.atracao-card:hover .atracao-img-wrapper img {
    transform: scale(1.08);
}

.badge-cat {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-cat.radical {
    background-color: var(--brand-orange);
    color: #ffffff;
}

.badge-cat.familia {
    background-color: var(--primary-cyan);
    color: #ffffff;
}

.badge-cat.infantil {
    background-color: var(--lime-green);
    color: var(--dark-navy);
}

.atracao-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.atracao-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #1E254A;
    margin-bottom: 12px;
}

.atracao-body p {
    color: #3A426B;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
}

.atracao-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3A426B;
    border-top: 1px solid rgba(39, 69, 227, 0.08);
    padding-top: 16px;
}

/* 9. HOTEL RESORT SECTION */
.hotel-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.hotel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.video-preview-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.video-preview-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(39, 69, 227, 0.7) 0%, rgba(39, 69, 227, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #ffffff;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--lime-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-navy);
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
}

.play-btn i {
    transform: translateX(2px);
}

.video-preview-card:hover .play-btn {
    transform: scale(1.15);
    background: #ffffff;
    color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.video-preview-card:hover img {
    transform: scale(1.05);
}

.video-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.hotel-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-benefits {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hotel-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #3A426B;
    font-weight: 500;
}

.hotel-benefits li i {
    font-size: 1.2rem;
    color: var(--lime-green);
}

/* 10. INGRESSOS SECTION */
.ingressos-section {
    background: var(--brand-navy);
    background-image:
        radial-gradient(ellipse at 10% 50%, rgba(46, 183, 255, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(39, 69, 227, 0.25) 0%, transparent 60%);
    padding: 160px 0 120px;
    position: relative;
}

.wave-top-decor-3 {
    top: -1px;
    left: 0;
}

.wave-top-decor-3 svg {
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-top-decor-3 .shape-fill {
    fill: #ffffff;
}

/* Toggle Switch */
.toggle-pricing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: #ffffff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: var(--lime-green);
    transition: .4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: rgba(255, 255, 255, 0.1);
}

input:checked+.slider:before {
    transform: translateX(30px);
    background-color: #ffffff;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.badge-discount {
    background-color: var(--lime-green);
    color: var(--dark-navy);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 800;
    margin-left: 6px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: #ffffff;
    border: 1px solid rgba(39, 69, 227, 0.12);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    color: #1E254A;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(8, 14, 44, 0.06);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(46, 183, 255, 0.5);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(8, 14, 44, 0.15);
}

.price-card.featured {
    background: #ffffff;
    border: 3px solid var(--brand-orange);
    box-shadow: 0 15px 40px rgba(255, 134, 48, 0.15), 0 20px 50px rgba(8, 14, 44, 0.1);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(255, 134, 48, 0.25), 0 20px 50px rgba(8, 14, 44, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime-gradient);
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 7px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-glow);
    white-space: nowrap;
}

.price-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(39, 69, 227, 0.12);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.price-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1E254A;
}

.price-desc {
    font-size: 0.85rem;
    color: #3A426B;
    min-height: 40px;
}

.price-display {
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--primary-blue);
}

.price-display .currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 4px;
}

.price-display .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.price-display .price-period {
    font-size: 0.9rem;
    color: #3A426B;
    margin-left: 4px;
}

.price-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.price-card-body ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    flex: 1;
}

.price-card-body li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3A426B;
}

.price-card-body li.disabled {
    color: #A0A5C0;
}

.price-card-body li.disabled i {
    color: #A0A5C0 !important;
}

.price-card-body li i {
    font-size: 1.1rem;
}

.price-card-body .btn {
    margin-top: auto;
}

.price-card .btn-outline {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    backdrop-filter: none;
}

.price-card .btn-outline:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue-glow);
}

.price-card.featured .btn-primary {
    background: var(--brand-orange);
    color: #ffffff;
    border-color: var(--brand-orange);
}

.price-card.featured .btn-primary:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

/* 11. DEPOIMENTOS SECTION */
.depoimentos-section {
    padding: 100px 0;
    background-color: var(--soft-white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 4px solid transparent;
    transition: var(--transition-smooth);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-cyan);
}

.depoimento-card .stars {
    color: var(--brand-orange);
    display: flex;
    gap: 4px;
}

.depoimento-card p {
    font-style: italic;
    color: #3A426B;
    font-size: 0.95rem;
    flex: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-cyan);
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.author-info p {
    font-size: 0.8rem;
    color: #777777;
    font-style: normal;
}

/* 12. FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--soft-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(39, 69, 227, 0.05);
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-navy);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.open {
    border-color: rgba(46, 183, 255, 0.25);
    box-shadow: var(--shadow-sm);
}

.faq-item.open .faq-question {
    color: var(--primary-blue);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #3A426B;
    font-size: 0.95rem;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* 13. CONTATO & LOCALIZAÇÃO */
.contato-section {
    padding: 100px 0;
    background-color: var(--soft-white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-form-col {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(39, 69, 227, 0.15);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: rgba(39, 69, 227, 0.02);
    transition: var(--transition-fast);
    color: #1E254A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(46, 183, 255, 0.18);
}

/* Map Card */
.map-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
}

.map-placeholder {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker-glow {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: markerPulse 2s infinite;
}

.marker-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@keyframes markerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 69, 227, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(39, 69, 227, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 69, 227, 0);
    }
}

.map-details {
    padding: 24px;
}

.map-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #3A426B;
    font-weight: 500;
}

.map-details i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-top: 3px;
}

.info-details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-detail-item i {
    font-size: 1.6rem;
    color: var(--primary-blue);
}

.info-detail-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.info-detail-item p {
    font-size: 0.9rem;
    color: #3A426B;
}

/* 14. FOOTER */
.footer {
    background: linear-gradient(180deg, var(--brand-navy) 0%, #122280 100%);
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 4px solid var(--brand-orange);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 69, 227, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 170px;
    margin-bottom: 20px;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--lime-green);
    color: var(--dark-navy);
    border-color: var(--lime-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-links-col h4,
.footer-newsletter-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h4::after,
.footer-newsletter-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brand-orange);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-col a:hover {
    color: var(--lime-green);
    padding-left: 6px;
}

.footer-newsletter-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--brand-orange);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

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

/* 15. RESPONSIVE DESIGN - MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .parque-grid,
    .hotel-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .atracoes-grid,
    .pricing-grid,
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .image-stack {
        height: 380px;
    }
}

/* ---- TABLET ---- */
@media (max-width: 768px) {

    /* Navbar Mobile Menu Trigger */
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
    }

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

    /* Header SEMPRE com fundo sólido no mobile para evitar sobreposição */
    .header {
        padding: 12px 0;
        min-height: 65px;
        background: rgba(39, 69, 227, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    }

    .header.scrolled {
        padding: 10px 0;
        min-height: 65px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-sm);
    }

    .logo-container {
        max-width: 140px;
    }

    /* No mobile com fundo escuro, forçar logo branco e ícone de menu branco */
    .header:not(.scrolled) .logo-blue {
        display: none !important;
    }

    .header:not(.scrolled) .logo-white {
        display: block !important;
    }

    .header:not(.scrolled) .menu-toggle span {
        background-color: #ffffff;
    }

    /* Mobile nav overlay começa ABAIXO do header */
    .mobile-nav-overlay {
        top: 56px;
        height: calc(100vh - 56px);
    }

    /* Hero — conteúdo visível acima do header fixo */
    .hero {
        padding-top: 115px;
        /* header real (~95px) + respiro generoso */
        padding-bottom: 32px;
        min-height: 100svh;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-content {
        gap: 12px;
        padding-top: 8px;
        padding-bottom: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.18;
    }

    .hero-subtitle {
        font-size: 0.97rem;
        margin-bottom: 4px;
    }

    .badge-accent {
        font-size: 0.75rem;
        padding: 6px 14px;
        letter-spacing: 1.5px;
    }

    .quick-info-bar {
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
        margin-top: 20px;
    }

    .quick-info-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 10px;
    }

    .quick-info-item:last-child {
        border: none;
        padding-bottom: 0;
    }

    .quick-info-item i {
        font-size: 1.4rem;
    }

    /* Seções com padding menor */
    .parque-section {
        padding: 70px 0;
    }

    .atracoes-section {
        padding: 100px 0 80px;
    }

    .hotel-section {
        padding: 70px 0;
    }

    .ingressos-section {
        padding: 100px 0 80px;
    }

    .faq-section {
        padding: 70px 0;
    }

    .contato-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .atracoes-grid,
    .pricing-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .image-stack {
        height: 280px;
    }

    .parque-visual-col {
        height: 280px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .contato-form-col {
        padding: 28px 20px;
    }

    /* Pricing toggle flex-wrap */
    .toggle-pricing-container {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.9rem;
    }

    .price-card {
        padding: 28px 20px;
    }

    /* Esconde a onda branca no mobile para evitar sobreposição no hero */
    .wave-separator {
        display: none;
    }
}

/* ---- MOBILE PEQUENO ---- */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    /* Logo ainda menor */
    .logo-container {
        max-width: 120px;
    }

    /* Hero totalmente otimizado — título sempre visível */
    .hero {
        padding-top: 105px;
        /* header real + respiro */
        padding-bottom: 24px;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-content {
        gap: 10px;
        padding-top: 4px;
        width: 100%;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.18;
    }

    .hero-subtitle {
        font-size: 0.93rem;
        line-height: 1.55;
    }

    .badge-accent {
        font-size: 0.7rem;
        padding: 5px 12px;
        letter-spacing: 1px;
    }

    .btn-lg {
        padding: 13px 22px;
        font-size: 0.95rem;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Quick info mais compacto */
    .quick-info-bar {
        padding: 14px 16px;
        border-radius: 12px;
        margin-top: 16px;
    }

    .quick-info-item i {
        font-size: 1.3rem;
    }

    .quick-info-item h4 {
        font-size: 0.88rem;
    }

    .quick-info-item p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 36px;
    }

    /* Cards de atração menores */
    .atracao-img-wrapper {
        height: 180px;
    }

    .atracao-body {
        padding: 16px;
    }

    /* Preços */
    .price-card {
        padding: 24px 16px;
    }

    .price-display .price-amount {
        font-size: 2.8rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 18px 16px;
    }

    .faq-answer {
        padding: 0 16px 18px;
        font-size: 0.9rem;
    }

    /* Contato form */
    .contato-form-col {
        padding: 24px 16px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 24px;
    }

    .footer-bottom-inner {
        gap: 4px;
    }

    /* Botão WhatsApp menor */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================================
   16. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: var(--transition-smooth);
    animation: waPulse 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.7);
    animation: none;
    background: #1ebe5d;
}

.whatsapp-float i {
    line-height: 1;
    transition: var(--transition-fast);
}

/* Tooltip label */
.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: #2745E3;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2745E3;
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================================
   17. FOOTER BOTTOM UPDATED LAYOUT
   ============================================================ */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-bottom-inner p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner p strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.footer-dev {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.footer-dev a {
    color: var(--brand-lime) !important;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-dev a:hover {
    opacity: 0.8;
    text-decoration: underline;
}