/* =========================================
   ESTILOS ESPECÍFICOS: DIPLOMADOS ACRÍLICO
   ========================================= */

/* 1. ENCABEZADO (Igual a los otros cursos) */
.course-header {
    padding: 80px 20px;
    background-color: #f8f1e9;
    text-align: center;
}

.course-header .badge {
    display: inline-block;
    padding: 6px 16px;
    background: #d4a373;
    color: white;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.course-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #333;
    line-height: 1.1;
}

.course-header h1 span {
    color: #d4a373;
}

.header-subtitle {
    margin-top: 15px;
    color: #888;
    font-style: italic;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 2. CONTENEDOR DE INFORMACIÓN */
.course-detail {
    padding: 60px 10%;
    background: white;
}

.course-flex {
    display: flex;
    gap: 40px; /* Espacio entre las dos columnas */
    align-items: stretch; /* Para que las dos columnas midan lo mismo de alto */
    justify-content: center;
}

/* 3. COLUMNAS DE INFORMACIÓN (LAS TARJETAS) */
.course-text {
    flex: 1; /* Reparte el espacio 50/50 */
    min-width: 320px;
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
}

.badge-mini {
    display: inline-block;
    font-size: 0.75rem;
    color: #d4a373;
    background: #fdfaf7;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    border: 1px solid #f8f1e9;
}

.course-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.desc-short {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* 4. LISTAS Y TEMARIOS */
.syllabus-list {
    list-style: none;
    margin-bottom: 30px;
}

.syllabus-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.syllabus-list li span {
    font-size: 1.1rem;
}

/* Estilos específicos para Perfeccionamiento (Días) */
.day-box {
    margin-top: 25px;
    padding-left: 10px;
    border-left: 2px solid #f8f1e9;
}

.day-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #d4a373;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* 5. SECCIÓN "INCLUYE" */
.includes-box {
    margin-top: auto; /* Empuja esto al final si hay poco contenido arriba */
    background: #fdfaf7;
    padding: 20px;
    border-radius: 20px;
    border: 1px dashed #d4a373;
    margin-bottom: 30px;
}

.includes-box h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.includes-box p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* 6. BOTONES DE ACCIÓN */
.course-action {
    text-align: center;
    margin-top: 10px;
}

.btn-enroll {
    display: inline-block;
    width: 100%; /* Botón ancho para que resalte */
    padding: 16px 30px;
    background: #d4a373;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

.btn-enroll:hover {
    background: #bfa36c;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 163, 115, 0.3);
}

/* 7. RESPONSIVE */
@media (max-width: 992px) {
    .course-flex {
        flex-direction: column; /* Una columna debajo de la otra en tablets/celular */
    }

    .course-text {
        width: 100%;
        padding: 30px 20px;
    }

    .course-detail {
        padding: 40px 5%;
    }
}