/* ===== CIRCO MODERNO - TEMPLATE INOVADOR 2024 ===== */

:root {
    /* Paleta Circense Moderna */
    --circus-red: #E53E3E;
    --circus-gold: #D69E2E;
    --circus-blue: #3182CE;
    --circus-purple: #805AD5;
    --circus-orange: #FF8C00;
    --circus-pink: #ED64A6;
    
    /* Gradientes Mágicos */
    --gradient-circus: linear-gradient(135deg, #E53E3E 0%, #FF8C00 50%, #D69E2E 100%);
    --gradient-magic: linear-gradient(135deg, #805AD5 0%, #ED64A6 100%);
    --gradient-sky: linear-gradient(135deg, #3182CE 0%, #63B3ED 100%);
    --gradient-night: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    
    /* Cores Base */
    --white: #FFFFFF;
    --black: #000000;
    --dark: #1A202C;
    --light: #F7FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-400: #A0AEC0;
    --gray-500: #718096;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --gray-800: #1A202C;
    
    /* Sombras Dramáticas */
    --shadow-circus: 0 20px 60px rgba(229, 62, 62, 0.3);
    --shadow-magic: 0 15px 50px rgba(128, 90, 213, 0.25);
    --shadow-glow: 0 0 30px rgba(255, 140, 0, 0.4);
    --shadow-deep: 0 25px 80px rgba(0, 0, 0, 0.3);
    
    /* Animações */
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --quick: 0.2s;
    --normal: 0.3s;
    --slow: 0.6s;
    
    /* Bordas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== LOADING SPINNER CIRCENSE ===== */
.circus-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-circus);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--slow), visibility var(--slow);
}

.loader-tent {
    width: 80px;
    height: 80px;
    position: relative;
    animation: tentSpin 2s infinite linear;
}

.loader-tent::before {
    content: '🎪';
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 1s infinite ease-in-out;
}

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

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* ===== HEADER CIRCO ESPETACULAR ===== */
.circus-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px);
    border-bottom: 4px solid transparent;
    border-image: var(--gradient-circus) 1;
    transition: all var(--normal);
    padding: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.circus-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(229, 62, 62, 0.05) 0%, 
        rgba(255, 140, 0, 0.05) 50%, 
        rgba(214, 158, 46, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.circus-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-circus);
    border-bottom-width: 2px;
}

.circus-header.scrolled::before {
    opacity: 0.3;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    position: relative;
}

.circus-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 800;
    font-size: 32px;
    font-family: 'Fredoka One', cursive;
    background: var(--gradient-circus);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--normal);
    position: relative;
    padding: 10px 15px;
    border-radius: var(--radius-lg);
}

.circus-brand:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 25px rgba(229, 62, 62, 0.4));
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.circus-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(229, 62, 62, 0.1) 0%, 
        rgba(255, 140, 0, 0.1) 100%);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--normal);
    z-index: -1;
}

.circus-brand:hover::before {
    opacity: 1;
}

.brand-icon {
    font-size: 45px;
    animation: brandFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(229, 62, 62, 0.3));
}

.brand-logo-img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    animation: brandFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(229, 62, 62, 0.3));
}

@keyframes brandFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(3deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-3deg); }
}

.circus-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    transition: all var(--normal);
    background: transparent;
    border: 2px solid transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item i {
    font-size: 14px;
    transition: all var(--normal);
}

.nav-item:hover {
    color: var(--white);
    background: var(--gradient-circus);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
    border-color: var(--circus-gold);
}

.nav-item:hover i {
    transform: scale(1.2);
}

.nav-item.active {
    background: var(--gradient-magic);
    color: var(--white);
    box-shadow: var(--shadow-magic);
    transform: translateY(-2px);
}

.nav-item.active i {
    animation: pulse 2s ease-in-out infinite;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    transition: all var(--normal);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #F77737 100%);
}

.social-btn:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform var(--quick);
}

.social-btn:hover::before {
    transform: scale(1);
}

.social-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.social-btn:hover::after {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
}

/* ===== MENU MOBILE MODERNO ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-image: var(--gradient-circus) 1;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 12px;
    transition: all var(--normal);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.2);
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: var(--gradient-circus);
    border-radius: 2px;
    transition: all var(--normal);
}

.mobile-toggle.active {
    background: var(--gradient-circus);
}

.mobile-toggle.active .toggle-bar {
    background: var(--white);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== OVERLAY MENU MOBILE ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: var(--gradient-circus);
    transform: translateX(100%);
    transition: transform var(--normal);
    padding: 30px;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-brand {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    font-family: 'Fredoka One', cursive;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--normal);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.mobile-nav .nav-item {
    color: var(--white);
    padding: 18px 25px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--normal);
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-nav .nav-item i {
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.mobile-nav .nav-item:hover,
.mobile-nav .nav-item.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.mobile-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-social .social-btn {
    width: 55px;
    height: 55px;
    font-size: 22px;
}

/* ===== HERO CIRCO ESPETACULAR ===== */
.circus-hero {
    min-height: 100vh;
    background: var(--gradient-circus);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--circus-gold) 2px, transparent 2px),
        radial-gradient(circle at 60% 70%, var(--circus-pink) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--circus-blue) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: sparkle 20s infinite linear;
}

@keyframes sparkle {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, -50px) rotate(360deg); }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 60px;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 20%;
    right: 15%;
    font-size: 80px;
    animation-delay: 1s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    font-size: 70px;
    animation-delay: 2s;
}

.shape:nth-child(4) {
    bottom: 30%;
    right: 10%;
    font-size: 50px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 700;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    to { box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn {
    padding: 18px 40px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all var(--normal) var(--bounce);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.hero-btn.primary {
    background: var(--gradient-magic);
    color: var(--white);
    box-shadow: var(--shadow-magic);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-deep);
}

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

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

/* ===== SEÇÕES MODERNAS ===== */
.circus-section {
    padding: 100px 0;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-circus);
    color: var(--white);
    padding: 8px 25px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== AVISOS CIRCO ===== */
.avisos-section {
    background: var(--gray-100);
}

.avisos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.aviso-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--circus-red);
    transition: all var(--normal);
    position: relative;
    overflow: hidden;
}

.aviso-card.urgente {
    border-left-color: var(--circus-red);
    background: linear-gradient(135deg, #fff 0%, #fee 100%);
}

.aviso-card.promocao {
    border-left-color: var(--circus-gold);
    background: linear-gradient(135deg, #fff 0%, #fffbee 100%);
}

.aviso-card.info {
    border-left-color: var(--circus-blue);
    background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
}

.aviso-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.aviso-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.aviso-icon {
    font-size: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.aviso-title {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
}

.aviso-content {
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.6;
}

.aviso-btn {
    background: var(--gradient-circus);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--normal);
}

.aviso-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-circus);
    color: var(--white);
}

/* ===== AGENDA INOVADORA - LAYOUT COMPLETAMENTE NOVO ===== */
.agenda-container {
    display: grid;
    gap: 60px;
}

/* ===== ESTRUTURA CARD HORIZONTAL MODERNA ===== */
.agenda-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    transition: all var(--normal);
    min-height: 350px;
    position: relative;
}

.agenda-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

/* ===== SEÇÃO DA IMAGEM REDESENHADA ===== */
.event-visual-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-status-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 25px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.event-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--slow);
    filter: brightness(0.8) contrast(1.1);
}

.agenda-card:hover .event-image-container img {
    transform: scale(1.08);
    filter: brightness(0.9) contrast(1.2);
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.location-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 3;
    color: var(--white);
}

.event-location {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.event-address {
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== SEÇÃO DE CONTEÚDO RENOVADA ===== */
.event-content-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.period-info-header {
    margin-bottom: 30px;
}

.period-title {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.period-dates {
    background: var(--gray-100);
    padding: 18px 25px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--gray-700);
    border-left: 5px solid var(--circus-blue);
}

/* ===== HORÁRIOS EM GRID COMPACTO ===== */
.schedule-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin: 25px 0;
}

.schedule-day-compact {
    background: var(--gray-100);
    padding: 15px 10px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--normal);
    border: 2px solid transparent;
}

.schedule-day-compact.active {
    background: var(--gradient-circus);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.schedule-day-compact.inactive {
    opacity: 0.5;
    background: var(--gray-200);
}

.day-name-compact {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.day-times-compact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-badge-compact {
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
}

.schedule-day-compact.active .time-badge-compact {
    background: rgba(255, 255, 255, 0.4);
}

/* ===== RODAPÉ DOS CARDS COM PROMOÇÕES ===== */
.event-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid var(--gray-100);
    margin-top: auto;
}

.promotions-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.promo-tag {
    background: var(--gradient-magic);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-action-btn {
    background: var(--gradient-circus);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all var(--normal);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.3);
}

.event-action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    color: var(--white);
}

/* ===== DESIGNS ESPECÍFICOS POR TIPO ===== */

/* Temporada - Verde Elegante */
.agenda-card.temporada {
    border-left: 8px solid #10B981;
}

.agenda-card.temporada .status-badge {
    background: linear-gradient(135deg, #10B981, #34D399);
    animation: pulseGreen 2s ease-in-out infinite;
}

.agenda-card.temporada .event-visual-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Estreia - Dourado Vibrante */
.agenda-card.estreia {
    border-left: 8px solid #D69E2E;
}

.agenda-card.estreia .status-badge {
    background: linear-gradient(135deg, #D69E2E, #F6AD55);
    animation: pulseGold 2s ease-in-out infinite;
}

.agenda-card.estreia .event-visual-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.25) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* ===== ANIMAÇÕES DOS BADGES ===== */
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(214, 158, 46, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(214, 158, 46, 0); }
}

/* ===== RESPONSIVO PARA NOVA ESTRUTURA ===== */
@media (max-width: 968px) {
    .agenda-card {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 1fr;
    }
    
    .schedule-compact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .event-content-section {
        padding: 25px;
    }
    
    .schedule-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-footer-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .event-action-btn {
        text-align: center;
        justify-content: center;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.schedule-day {
    background: var(--gray-100);
    padding: 20px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--normal);
    border: 2px solid transparent;
}

.schedule-day.active {
    background: var(--gradient-magic);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-magic);
}

.schedule-day.inactive {
    opacity: 0.5;
    background: var(--gray-200);
}

.day-name {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.day-times {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.schedule-day.active .time-badge {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== INGRESSOS MÁGICOS ===== */
.ingressos-section {
    background: var(--gradient-sky);
    color: var(--white);
}

.ingressos-section .section-title,
.ingressos-section .section-subtitle {
    color: var(--white);
}

.ingressos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    gap: 30px;
    justify-content: center;
}

.ingresso-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--normal);
    text-align: center;
}

.ingresso-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.platform-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.platform-name {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.platform-btn {
    background: var(--white);
    color: var(--circus-blue);
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--normal);
    margin-top: 20px;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    color: var(--circus-blue);
}

/* ===== ATRAÇÕES INCRÍVEIS ===== */
.atracoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.atracao-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--normal);
    position: relative;
}

.atracao-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: var(--shadow-deep);
}

.atracao-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.atracao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--slow);
}

.atracao-card:hover .atracao-image img {
    transform: scale(1.1);
}

.atracao-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-circus);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--normal);
}

.atracao-card:hover .atracao-overlay {
    opacity: 0.9;
}

.atracao-overlay-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.atracao-content {
    padding: 30px;
}

.atracao-title {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
}

.atracao-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== GALERIA FANTÁSTICA ===== */
.galeria-section {
    background: var(--gray-100);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.galeria-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--normal);
    cursor: pointer;
    position: relative;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--normal);
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--normal);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: var(--white);
    font-size: 48px;
}

/* ===== FOOTER CIRCO ===== */
.circus-footer {
    background: var(--gradient-night);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    margin-bottom: 20px;
    background: var(--gradient-circus);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social .social-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    text-decoration: none;
    box-shadow: var(--shadow-deep);
    transition: all var(--normal);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ===== BOTÃO SUBIR AO TOPO ===== */
.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-circus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-deep);
    transition: all var(--normal);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.4);
    background: var(--gradient-magic);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* ===== PROMOÇÕES EXTRAS ===== */
.promocoes-container {
    margin-top: 50px;
    text-align: center;
}

.promocoes-title {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.promocao-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--normal);
}

.promocao-item.destaque {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.promocao-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.promocao-item h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.promocao-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== EXTRAS DE AGENDA ===== */
.event-note {
    background: var(--gray-100);
    border-left: 4px solid var(--circus-blue);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    color: var(--gray-700);
    font-size: 14px;
}

.event-note i {
    color: var(--circus-blue);
    margin-right: 10px;
}

.event-promotions {
    background: linear-gradient(135deg, #fff9e0 0%, #fff 100%);
    border-left: 4px solid var(--circus-gold);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.event-promotions h4 {
    color: var(--circus-gold);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-promotions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-promotions li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(214, 158, 46, 0.2);
    color: var(--gray-700);
    position: relative;
    padding-left: 20px;
}

.event-promotions li:before {
    content: '🎟️';
    position: absolute;
    left: 0;
    top: 8px;
}

.event-promotions li:last-child {
    border-bottom: none;
}

.event-period {
    background: var(--gray-100);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--gray-700);
}

/* ===== SOCIAL FACEBOOK/TIKTOK ===== */
.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000 0%, #FF0050 100%);
}

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

/* Tablets grandes */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-container {
        max-width: 900px;
    }
    
    .avisos-grid,
    .atracoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ingressos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
        gap: 25px;
        justify-content: center;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .agenda-card {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .event-visual-section {
        width: 100%;
        min-height: 250px;
    }
    
    .event-content-section {
        width: 100%;
        padding: 30px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .circus-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-container {
        height: 70px;
        padding: 0 20px;
    }
    
    .circus-brand {
        font-size: 20px;
        gap: 10px;
        padding: 6px 10px;
    }
    
    .brand-icon {
        font-size: 30px;
    }
    
    .brand-logo-img {
        height: 35px;
        max-width: 150px;
        object-fit: contain;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .avisos-grid,
    .atracoes-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ingressos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
        gap: 20px;
        justify-content: center;
    }
    
    .schedule-compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .schedule-day-compact {
        padding: 10px 8px;
    }
    
    .day-name-compact {
        font-size: 12px;
    }
    
    .time-badge-compact {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .circus-section {
        padding: 50px 0;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-social .social-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Celulares grandes */
@media (max-width: 480px) {
    .header-container {
        height: 65px;
        padding: 0 15px;
    }
    
    .circus-brand {
        font-size: 18px;
        gap: 8px;
        padding: 5px 8px;
    }
    
    .brand-icon {
        font-size: 25px;
    }
    
    .brand-logo-img {
        height: 30px;
        max-width: 120px;
        object-fit: contain;
    }
    
    .social-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-btn {
        max-width: 260px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-container {
        padding: 0 15px;
    }
    
    .circus-section {
        padding: 40px 0;
    }
    
    .agenda-card {
        border-radius: 15px;
        overflow: hidden;
    }
    
    .event-content-section {
        padding: 20px;
    }
    
    .schedule-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .schedule-day-compact {
        padding: 8px 6px;
        border-radius: 8px;
    }
    
    .day-name-compact {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .time-badge-compact {
        font-size: 9px;
        padding: 3px 6px;
        margin: 2px;
    }
    
    .event-footer-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .event-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .promotions-quick {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .aviso-card,
    .ingresso-card,
    .atracao-card {
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Celulares pequenos */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-btn {
        max-width: 240px;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .schedule-compact-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-day-compact {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
    }
    
    .day-name-compact {
        font-size: 12px;
        margin-bottom: 0;
        min-width: 40px;
    }
    
    .day-times-compact {
        flex: 1;
        text-align: right;
    }
    
    .time-badge-compact {
        display: inline-block;
        margin: 1px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .scroll-to-top {
        bottom: 75px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .ingressos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ===== CONTEÚDO SEMPRE VISÍVEL ===== */
.animate-on-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-scale {
    opacity: 1 !important;
    transform: scale(1) !important;
}
