/* Programs Detail Section */
.programs-detail-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin: 0 0 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.programs-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.program-card-detail {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card-detail:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-header {
    padding: 24px;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.program-header.infantil {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.program-header.religious {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.program-header.cultural {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.program-header.entertainment {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.program-header.news {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.program-header.night {
    background: linear-gradient(135deg, #2d3561 0%, #c05c7e 100%);
}

.program-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.program-header h3 {
    margin: 8px 0 0;
    font-size: 24px;
    font-weight: 800;
}

.program-schedule-detail {
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.schedule-time,
.schedule-hours {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.program-description-detail {
    padding: 24px;
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.program-features {
    display: flex;
    gap: 8px;
    padding: 0 24px 24px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 12px;
    font-weight: 600;
    background: #e7f5ff;
    color: #1a73e8;
    padding: 6px 12px;
    border-radius: 12px;
}

/* Categories Section */
.categories-section {
    background: white;
    padding: 60px 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border-top: 4px solid;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-card.cat-news {
    border-color: #1a73e8;
}

.category-card.cat-cultural {
    border-color: #22c55e;
}

.category-card.cat-sports {
    border-color: #f59e0b;
}

.category-card.cat-entertainment {
    border-color: #ec4899;
}

.category-card.cat-religious {
    border-color: #8b5cf6;
}

.category-card.cat-kids {
    border-color: #ef4444;
}

.cat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.category-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* FAQ Section */
.programming-faq-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.faq-card-prog {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a73e8;
}

.faq-card-prog h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.4;
}

.faq-card-prog p {
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.programming-cta {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border-radius: 14px;
    padding: 48px;
    text-align: center;
}

.programming-cta h3 {
    font-size: 28px;
    margin: 0 0 12px;
}

.programming-cta p {
    font-size: 16px;
    margin: 0 0 28px;
    opacity: 0.95;
}

.btn-cta-prog {
    display: inline-block;
    background: white;
    color: #1a73e8;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-prog:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .programs-grid-detail {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}