.eventos-page {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.page-header {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;*/
    padding: 1rem 0 0 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.eventos-content {
    padding: 3rem 0;
}

.container-eventos {
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
}

.row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.date-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: column;
}

.date-separator {
    font-weight: 500;
    color: #666;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.evento-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.evento-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.evento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.evento-card:hover .evento-image img {
    transform: scale(1.05);
}

.evento-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.7) !important;
}

.evento-content {
    padding: 1.5rem;
}

.evento-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
    line-height: 1.4;
}

.evento-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.evento-details {
    margin-bottom: 1.5rem;
}

.evento-date,
.evento-time,
.evento-cost,
.evento-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.evento-date i,
.evento-time i,
.evento-cost i,
.evento-location i {
    width: 16px;
    color: var(--orange);
}

.evento-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.evento-actions .btn {
    flex: 1;
    min-width: 120px;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.no-results p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a {
    background: white;
    color: var(--indigo);
    border: 2px solid #e9ecef;
}

.pagination a:hover {
    background: var(--indigo);
    color: white;
    border-color:var(--indigo);
    transform: translateY(-2px);
}

.pagination-current {
    background: var(--orange);
    color: white;
    border: 2px solid var(--orange);
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-md-3,
    .col-md-9 {
        max-width: 100%;
        width: 100%;
    }

    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .date-range {
        flex-direction: column;
        align-items: stretch;
    }

    .date-separator {
        text-align: center;
        margin: 0.5rem 0;
    }
}
/* Botones & chips */
.btn{
  display:inline-block; padding:14px 20px; border-radius:12px;
  font-weight:700; text-decoration:none;
  text-align:center;
}
.btn--primary{background:var(--orange); color:#fff}
.btn--secondary{background:var(--indigo); color:#fff}