* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #667eea; }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 6rem; /* Espaço para o header fixo */
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/bate-bate.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(79, 70, 229, 0.15));
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.highlights {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.highlights-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.highlights-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--secondary-color) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-line {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    opacity: 0.3;
}

.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
}

.highlight-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    position: relative;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s infinite;
}

.highlight-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.highlights-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.highlights-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
}

.floating-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-icons .floating-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-icons .floating-icon:nth-child(2) {
    animation-delay: 1s;
}

.floating-icons .floating-icon:nth-child(3) {
    animation-delay: 2s;
}

/* ===== SEÇÃO DE EXPERIÊNCIAS ===== */
.experiences {
    padding: 6rem 0;
    background: var(--bg-light);
}

.experiences-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Grid de Jogos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.game-category {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-info {
    padding: 1.5rem;
}

.game-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.game-features {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.game-features span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Grid de Festas */
.parties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.party-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.party-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.party-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.party-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.party-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.party-card ul {
    list-style: none;
    text-align: left;
}

.party-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.party-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Grid de Atividades */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.activity-card p {
    color: var(--text-light);
}

/* ===== SEÇÃO DE HORÁRIOS ===== */
.schedule {
    padding: 6rem 0;
    background: var(--bg-white);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.schedule-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.schedule-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.schedule-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.schedule-visual {
    display: flex;
    justify-content: center;
}

.clock-animation {
    width: 200px;
    height: 200px;
    position: relative;
}

.clock-face {
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.clock-hand {
    position: absolute;
    background: var(--text-dark);
    border-radius: 4px;
    transform-origin: bottom center;
}

.clock-hand.hour {
    width: 4px;
    height: 60px;
    top: 40px;
    left: 98px;
    animation: rotate 12s linear infinite;
}

.clock-hand.minute {
    width: 3px;
    height: 80px;
    top: 20px;
    left: 98.5px;
    animation: rotate 6s linear infinite;
}

.clock-center {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 92px;
    left: 92px;
}

/* ===== SEÇÃO DE LOCALIZAÇÃO ===== */
.location {
    padding: 6rem 0;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.address-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.address-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.address-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.transport-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.transport-option i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== SEÇÃO DO INSTAGRAM ===== */
.instagram {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
}

.instagram .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.instagram .header-badge i {
    font-size: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.instagram-post {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 1;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 67, 0.8), rgba(188, 24, 136, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.post-info i {
    color: #ff6b9d;
    animation: pulse 2s infinite;
}

.instagram-cta {
    text-align: center;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 0.9375rem 1.875rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-instagram i {
    font-size: 1.125rem;
}

/* ===== SEÇÃO DE CONTATO ===== */
.contact {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 2rem;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .card-features {
        flex-direction: column;
        align-items: center;
    }
    
    .highlights-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-visual {
        display: none;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer responsivo removido - usando o do layout principal */
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .experiences-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .btn-instagram {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* ===== SEÇÃO ATRAÇÕES ===== */
.atracoes-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.atracoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.atracoes-header {
    text-align: center;
    margin-bottom: 0.5rem; /* espaço mínimo entre descrição e carrossel */
    margin-top: 32px;    /* mais espaço acima */
    position: relative;
    z-index: 2;
}

.atracoes-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px; /* menos espaço abaixo do título */
}

.atracoes-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 700px; /* mais espaço para o texto respirar */
    margin: 0 auto;
    margin-bottom: 0; /* removido margin-bottom do subtitle */
    line-height: 1.6;
    padding-left: 16px;
    padding-right: 16px;
}

.atracoes-section .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 100vw;
  padding: 0;
}

.atracoes-header {
  flex: 0 0 50vw;
  max-width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  margin: 0;
  margin-bottom: 0.5rem; /* espaço mínimo entre descrição e carrossel */
  padding: 3rem 2rem 0.5rem 0;
  box-sizing: border-box;
}

.carrossel-container {
  flex: 0 0 50vw;
  max-width: 38vw;
  width: 30vw;
  margin: 0 auto;
  margin-top: 0.5rem; /* espaço mínimo acima do carrossel */
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
  .atracoes-section .container {
    flex-direction: column;
    padding: 0 15px;
  }
  
  .atracoes-header {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 0.5rem 0;
    margin-bottom: 0;
  }
  
  .carrossel-container {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    margin-top: 0.5rem;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .atracoes-section .container {
    flex-direction: column;
    padding: 0 15px;
  }
  
  .atracoes-header {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 0.5rem 0;
    margin-bottom: 0;
  }
  
  .carrossel-container {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    margin-top: 0.5rem;
    padding: 0;
  }
}

.carrossel-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.carrossel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrossel-item {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100% !important;
    max-width: 100% !important;
}

.atracao-card {
    position: relative;
    height: 24rem;
    max-width: none !important;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 768px) {
    .atracao-card {
        height: 18rem;
        max-width: 24rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .atracao-card {
        height: 14rem;
        max-width: 18rem;
        margin: 0 auto;
    }
}

.atracao-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.atracao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s ease;
}

.atracao-card:hover .atracao-image img {
    transform: scale(1.1);
}

.atracao-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.atracao-card:hover .atracao-overlay {
    opacity: 1;
}

.atracao-content {
    color: var(--bg-white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.atracao-card:hover .atracao-content {
    transform: translateY(0);
}

.atracao-titulo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.atracao-descricao {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px; /* menor */
    height: 36px; /* menor */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
    padding: 0;
}

.carrossel-btn:hover {
    background: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carrossel-btn i {
    color: var(--text-dark);
    font-size: 1rem; /* menor */
}

.carrossel-btn-prev {
    left: 0.5rem; /* bem próximo da imagem */
}

.carrossel-btn-next {
    right: 0.5rem; /* bem próximo da imagem */
}

@media (max-width: 768px) {
    .carrossel-btn-prev {
        left: 0.2rem;
    }
    .carrossel-btn-next {
        right: 0.2rem;
    }
}

.carrossel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carrossel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-indicator.active,
.carrossel-indicator:hover {
    background: var(--bg-white);
    transform: scale(1.2);
}

.atracoes-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--bg-white);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.atracoes-empty p {
    font-size: 1.2rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .atracoes-section {
        padding: 60px 0;
    }
    
    .atracoes-section .container {
        padding: 0 15px;
    }
    
    .atracoes-header {
        padding: 1.5rem 0 0.5rem 0;
        margin-bottom: 0;
    }
    
    .carrossel-container {
        margin-top: 0.5rem;
        padding: 0;
    }
    
    .atracoes-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .atracoes-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .carrossel-container {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .atracao-card {
        height: 18rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .atracao-overlay {
        padding: 30px 20px;
        opacity: 1; /* Sempre visível em mobile */
    }
    
    .atracao-titulo {
        font-size: 1.5rem;
    }
    
    .atracao-descricao {
        font-size: 1rem;
    }
    
    .carrossel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carrossel-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .atracoes-section {
        padding: 40px 0;
    }
    
    .atracoes-section .container {
        padding: 0 10px;
    }
    
    .atracoes-header {
        padding: 1rem 0 0.25rem 0;
        margin-bottom: 0;
    }
    
    .carrossel-container {
        margin-top: 0.25rem;
        padding: 0;
    }
    
    .atracoes-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .atracoes-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .carrossel-container {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .atracao-card {
        height: 14rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .atracao-overlay {
        padding: 20px 15px;
        opacity: 1; /* Sempre visível em mobile */
    }
    
    .atracao-titulo {
        font-size: 1.3rem;
    }
    
    .atracao-descricao {
        font-size: 0.9rem;
    }
    
    .carrossel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carrossel-btn i {
        font-size: 0.9rem;
    }
}

/* ===== SEÇÃO ESPAÇO KIDS ===== */
.espaco-kids-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.espaco-kids-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.espaco-kids-header {
    text-align: center;
    margin-bottom: 0.5rem; /* espaço mínimo entre descrição e carrossel */
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

.espaco-kids-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}

.espaco-kids-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 0; /* removido margin-bottom do subtitle */
    line-height: 1.6;
    padding-left: 16px;
    padding-right: 16px;
}

.espaco-kids-section .container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 100vw;
    padding: 0;
}

.espaco-kids-header {
    flex: 0 0 50vw;
    max-width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    margin: 0;
    margin-bottom: 0.5rem; /* espaço mínimo entre descrição e carrossel */
    padding: 3rem 2rem 0.5rem 0;
    box-sizing: border-box;
}

.kids-carrossel {
    flex: 0 0 50vw;
    max-width: 38vw;
    width: 30vw;
    margin: 0 auto;
    margin-top: 0.5rem; /* espaço mínimo acima do carrossel */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 900px) {
    .espaco-kids-section .container {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .espaco-kids-header {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 0 0.5rem 0;
        margin-bottom: 0;
    }
    
    .kids-carrossel {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        margin-top: 0.5rem;
        padding: 0;
    }
}

.kids-card {
    position: relative;
    height: 24rem;
    max-width: none !important;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 768px) {
    .kids-card {
        height: 18rem;
        max-width: 24rem;
    }
}

@media (max-width: 480px) {
    .kids-card {
        height: 14rem;
        max-width: 18rem;
    }
}

.kids-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.kids-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s ease;
}

.kids-card:hover .kids-image img {
    transform: scale(1.1);
}

.kids-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kids-card:hover .kids-overlay {
    opacity: 1;
}

.kids-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.kids-card:hover .kids-content {
    transform: translateY(0);
}

.kids-titulo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.kids-descricao {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.espaco-kids-empty {
    text-align: center;
    padding: 60px 20px;
    color: #92400e;
}

.espaco-kids-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
    color: #f59e0b;
}

.espaco-kids-empty p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #a16207;
}

@media (max-width: 768px) {
    .espaco-kids-section {
        padding: 60px 0;
    }
    
    .espaco-kids-section .container {
        padding: 0 15px;
    }
    
    .espaco-kids-header {
        padding: 1.5rem 0 0.5rem 0;
        margin-bottom: 0;
    }
    
    .kids-carrossel {
        margin-top: 0.5rem;
        padding: 0;
    }
    
    .espaco-kids-title {
        font-size: 2.5rem;
    }
    
    .espaco-kids-subtitle {
        font-size: 1.1rem;
    }
    
    .kids-card {
        height: 18rem;
        max-width: 24rem;
        margin: 0 auto;
    }
    
    .kids-overlay {
        padding: 30px 20px;
        opacity: 1; /* Sempre visível em mobile */
    }
    
    .kids-titulo {
        font-size: 1.5rem;
    }
    
    .kids-descricao {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .espaco-kids-section .container {
        padding: 0 10px;
    }
    
    .espaco-kids-header {
        padding: 1rem 0 0.25rem 0;
        margin-bottom: 0;
    }
    
    .kids-carrossel {
        margin-top: 0.25rem;
        padding: 0;
    }
    
    .espaco-kids-title {
        font-size: 2rem;
    }
    
    .espaco-kids-subtitle {
        font-size: 1rem;
    }
    
    .kids-card {
        height: 14rem;
        max-width: 18rem;
        margin: 0 auto;
    }
    
    .kids-overlay {
        padding: 20px 15px;
        opacity: 1; /* Sempre visível em mobile */
    }
    
    .kids-titulo {
        font-size: 1.3rem;
    }
    
    .kids-descricao {
        font-size: 0.9rem;
    }
}

/* Seção de Pacotes */
.pacotes-section {
    background: var(--bg-white);
    padding: 4rem 0;
    margin-top: 2rem;
}

.pacotes-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.pacotes-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pacote-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pacote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.pacote-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pacote-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pacote-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pacote-preco {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pacote-itens, .pacote-caracteristicas {
    margin-bottom: 1.5rem;
}

.pacote-itens h5, .pacote-caracteristicas h5 {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pacote-itens ul {
    list-style: none;
    padding-left: 0;
}

.pacote-itens li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pacote-itens li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.pacote-caracteristicas p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.btn-pacote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.btn-pacote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3730a3 100%);
}

/* Responsividade para pacotes */
@media (max-width: 768px) {
    .pacotes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pacote-card {
        padding: 1.5rem;
    }
    
    .pacotes-title {
        font-size: 2rem;
    }
    
    .pacote-preco {
        font-size: 1.8rem;
    }
}