/* Auto-generated Landing Page CSS */
body {
    background-color: black;
}

/* Hero Section Styles */
.hero-section {
    background: black !important;
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.1)'/%3e%3c/svg%3e') repeat;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-height: 80px;
    width: auto;
    content: url('/imagens/14.png');
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

.event-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-card .card-header {
    background: black;
    color: white;
    border: none;
    padding: 1.5rem;
    text-align: center;
}

.event-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.event-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-info {
    flex-grow: 1;
}

.event-detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.event-detail i {
    margin-right: 0.5rem;
    color: #667eea;
    width: 16px;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: transparent;
    color: black;
    text-align: center;
    margin: 1rem 0;
}

.btn-reserve {
    background: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: black;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

.no-events-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.no-events-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.events-section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: black;
    padding: 1rem;
    border-radius: 10px;
}

.events-section-title h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.events-section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

.animate-card {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }

.footer-custom {
    background: black !important;
    color: white !important;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}