/* Estilos para tarjetas de eventos */
.event-container {
    margin-top: 30px;
}

.animate-events {
    overflow: hidden;
}

.event-card-animate {
    transition: opacity 0.6s ease;
    opacity: 0;
    margin-bottom: 30px;
}

.event-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.event-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    border-top-left-radius: 8px;
}

.event-card-price .price-amount {
    font-size: 1.2rem;
}

.event-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333;
}

.event-card-info {
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-card-info .info-item {
    display: flex;
    margin-bottom: 10px;
}

.event-card-info .info-item i {
    color: #dc3545;
    margin-right: 10px;
    margin-top: 4px;
}

/* Estilos para la sección de eventos */
#eventType {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#eventType .section-title {
    text-align: center;
    margin-bottom: 40px;
}

#eventType .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

#eventType .section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.filters-container {
    margin-bottom: 30px;
    text-align: right;
}

.filter {
    max-width: 250px;
    display: inline-block;
}

.no-events-message {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
}

.no-events-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.loading-spinner {
    text-align: center;
    padding: 50px 20px;
}

.loading-spinner i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
} 