:root {
    --primary: #004d40;
    --secondary: #00796b;
    --accent: #ff8f00;
    --light: #e0f2f1;
    --dark: #00251a;
    --gray: #607d8b;
    --today: #fff8e1;
}
.h3 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 10px;
}
/* ... (estilos anteriores se mantienen) ... */
.live-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    margin-top: 20px;
}

.live-header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 15px 20px;
}

.live-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.live-header p {
    opacity: 0.9;
    max-width: 800px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stream-selector {
    display: flex;
    background: var(--light);
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.stream-option {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: 500;
}

.stream-option.active {
    background: var(--accent);
    color: white;
}

.stream-option:hover:not(.active) {
    background: #b2dfdb;
}

.previous-transmissions {
    margin-top: 40px;
}

.section-title {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.transmission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.transmission-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.transmission-card:hover {
    transform: translateY(-5px);
}

.card-thumbnail {
    position: relative;
    height: 160px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}
/* Nuevos estilos para eventos */
.event-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item:hover {
    background-color: rgba(0, 77, 64, 0.03);
}

.event-date {
    min-width: 70px;
    text-align: center;
    padding: 5px;
    margin-right: 15px;
    border-radius: 6px;
    background: var(--light);
    position: relative;
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    font-weight: 600;
}

.event-details {
    flex: 1;
}

.event-title {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.event-location, .event-time {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.event-location i, .event-time i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Evento de hoy - destacado */
.today-event {
    background-color: var(--today);
    border-left: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.today-event .event-date {
    background: linear-gradient(to bottom, var(--accent), #ff6d00);
}

.today-event .event-day,
.today-event .event-month {
    color: white;
}

.event-badge {
    position: absolute;
    top: -8px;
    right: -28px;
    background: var(--accent);
    color: white;
    padding: 3px 30px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}