/**
 * ESTILOS ADICIONALES — catalogo2
 * Ubicación servidor: /httpdocs/catalogo2/assets/css/estilos.css
 * 
 * Creado por: Claude (Anthropic) para Ana — CursosOnlineBonificados.com
 * Fecha creación: 2026-02-13
 * Última modificación: 2026-02-16
 * 
 * @cambios: 
 *   - 2026-02-14: Paleta unificada azul+arena+burdeos, buscador azul claro
 *   - 2026-02-16: Añadido font-size: 40px a #h1_titulocurso para independencia de /catalogo/
 *   - 2026-02-16: Texto descriptivo fondo más claro, borde más fino, más espacio en Objetivos
 *   - 2026-02-16: Estilos para artículos semánticos cob-* (publicaciones transformadas)
 */

/* =========================================
   CABECERA PC/TABLET (>= 768px)
   ========================================= */
.cob-header {
    background-color: #e8dcc8;
    width: 100%;
}

.cob-header-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 30px;
    min-height: 200px;
    background-color: #4a7a9a;
}

.cob-brand {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.cob-logo-link {
    text-decoration: none;
}

.cob-logo-img {
    width: 220px;
    height: auto;
}

.cob-brand-text {
    display: flex;
    flex-direction: column;
    padding-top: 55px;
}

.cob-brand-title {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.cob-brand-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

.cob-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    padding-top: 15px;
}

.cob-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
    background: #fdf6e3;
    padding: 9px 20px;
    border-radius: 28px;
    transition: background 0.2s;
    white-space: nowrap;
}

.cob-whatsapp:hover {
    background: #f5e6c8;
    color: #333;
    text-decoration: none;
}

.cob-whatsapp svg {
    width: 26px;
    height: 26px;
}

.cob-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.cob-phone:hover {
    color: #fff;
    text-decoration: none;
}

.cob-phone svg {
    width: 23px;
    height: 23px;
}

/* =========================================
   CABECERA MÓVIL (< 768px)
   ========================================= */
.cob-header-mobile {
    background: linear-gradient(135deg, #4a7a9a, #1a2a3a);
    padding: 10px 15px;
}

.cob-mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cob-mobile-logo img {
    height: 45px;
    width: auto;
}

.cob-mobile-brand {
    flex: 1;
    padding: 0 10px;
}

.cob-mobile-title {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
}

.cob-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cob-mobile-btn {
    display: flex;
    align-items: center;
}

.cob-mobile-contact-form button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.cob-mobile-contact-form button:hover {
    background: rgba(255,255,255,0.1);
}

.cob-mobile-phones {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.cob-mobile-wa,
.cob-mobile-tel {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.cob-mobile-wa:hover,
.cob-mobile-tel:hover {
    color: #ddd;
    text-decoration: none;
}

/* =========================================
   POPUP BUSCADOR — Capa emergente
   ========================================= */
#cob-buscar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#cob-buscar-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow: hidden;
}

#cob-buscar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 2px solid #244484;
    background: #f8f9fa;
}

#cob-buscar-body {
    padding: 15px 20px;
    max-height: 60vh;
    overflow-y: auto;
}

/* =========================================
   FORMULARIO DE CONTACTO
   ========================================= */
.cob-separator {
    border-top: 10px solid;
    color: darkgray;
}

.cob-field-error {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 3px;
}

.cob-btn-enviar {
    background-color: #244484;
    border-color: #244484;
    padding: 8px 30px;
    font-size: 15px;
    font-weight: bold;
}

.cob-btn-enviar:hover {
    background-color: #1a3366;
    border-color: #1a3366;
}

.cob-rgpd {
    font-size: 12px;
    color: #666;
}

.cob-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.cob-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.cob-checkbox-label a {
    color: #244484;
}

.cob-legal-mini {
    font-size: 10px;
    color: #999;
    margin-top: 10px;
    line-height: 1.4;
}

/* =========================================
   RESPONSIVE — CABECERA TABLET (768-991px)
   ========================================= */
@media (max-width: 991px) {
    .cob-header-inner {
        flex-direction: column;
        align-items: center;
        padding: 18px 20px;
        min-height: auto;
        gap: 15px;
    }
    
    .cob-brand {
        gap: 15px;
    }
    
    .cob-logo-img {
        width: 160px;
    }
    
    .cob-brand-title {
        font-size: 26px;
    }
    
    .cob-brand-subtitle {
        font-size: 14px;
    }
    
    .cob-contact {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        padding-top: 0;
    }
    
    .cob-whatsapp {
        font-size: 20px;
        padding: 8px 18px;
    }
    
    .cob-whatsapp svg {
        width: 24px;
        height: 24px;
    }
    
    .cob-phone {
        font-size: 18px;
    }
    
    .cob-phone svg {
        width: 20px;
        height: 20px;
    }
}

/* =========================================
   BUSCADOR COLUMNA DERECHA (categorías)
   ========================================= */
.cob-buscador-derecha {
    background-color: #3d6a8a;
    padding: 15px 10px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 6px;
}

.cob-buscador-titulo {
    color: #fff;
    font-family: 'Bitter', serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cob-buscador-derecha .form-control {
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* =========================================
   BLOQUE CTA — Columna derecha "Solicitar Info"
   ========================================= */
.cob-cta-box {
    text-align: center;
    padding: 15px 5px;
}

.cob-btn-solicitar-grande {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 50%, #fdf6e3 100%);
    color: #8B0000;
    font-size: 22px;
    font-weight: bold;
    padding: 30px 15px;
    border-radius: 10px;
    border: 4px solid #B22222;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.25);
    min-height: 140px;
}

.cob-btn-solicitar-grande:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
    border-color: #8B0000;
    color: #8B0000;
    text-decoration: none;
}

.cob-btn-texto {
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

/* Efecto brillo que se mueve */
.cob-btn-brillo {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(178, 34, 34, 0.12) 50%, 
        transparent 100%
    );
    animation: cob-brillo 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes cob-brillo {
    0%   { left: -100%; }
    50%  { left: 100%; }
    100% { left: 100%; }
}

.cob-cta-subtexto {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-top: 12px;
}

/* =========================================
   PÁGINA DE CONTACTO — Formulario completo
   ========================================= */
.cob-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.cob-required {
    color: #dc3545;
}

.cob-form-input {
    font-size: 15px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.2s;
}

.cob-form-input:focus {
    border-color: #244484;
    box-shadow: 0 0 0 2px rgba(36,68,132,0.15);
    outline: none;
}

.cob-field-invalid {
    border-color: #dc3545 !important;
}

.cob-field-valid {
    border-color: #28a745 !important;
}

.cob-char-count {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #999;
    margin-top: 3px;
}

.cob-rgpd-page {
    font-size: 13px;
    color: #555;
    margin-top: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 5px;
}

.cob-checkbox-label-page {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.cob-checkbox-label-page input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.cob-checkbox-label-page a {
    color: #244484;
}

.cob-btn-enviar-page {
    background-color: #244484;
    border-color: #244484;
    color: #fff;
    padding: 12px 50px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.cob-btn-enviar-page:hover {
    background-color: #1a3366;
    border-color: #1a3366;
    color: #fff;
}

.cob-legal-mini-page {
    font-size: 11px;
    color: #999;
    margin-top: 20px;
    line-height: 1.5;
    text-align: center;
}

.cob-legal-mini-page a {
    color: #244484;
}

/* Ocultar cabecera antigua si coexisten */
@media (min-width: 768px) {
    #cabecera_celulares {
        display: none !important;
    }
}

/* =========================================
   BUSCADOR — Modal emergente
   ========================================= */
#cob-buscar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}

#cob-buscar-modal {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 70vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.cob-buscar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #244484;
    color: #fff;
}

.cob-buscar-header h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Bitter', serif;
}

.cob-buscar-cerrar {
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    line-height: 1;
    padding: 0 5px;
}

.cob-buscar-cerrar:hover {
    color: #ffc107;
}

#cob-buscar-resultados {
    overflow-y: auto;
    padding: 10px 20px 20px;
    flex: 1;
}

.cob-buscar-tabla {
    width: 100%;
    border-collapse: collapse;
}

.cob-buscar-tabla thead tr {
    background: #244484;
    color: #fff;
}

.cob-buscar-tabla th {
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
}

.cob-buscar-tabla td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.cob-buscar-tabla tbody tr:hover {
    background: #f0f5ff;
}

.cob-buscar-tabla a {
    color: #244484;
    text-decoration: none;
    font-weight: 500;
}

.cob-buscar-tabla a:hover {
    text-decoration: underline;
}

.cob-buscar-horas {
    text-align: center;
    white-space: nowrap;
    width: 60px;
    color: #777;
}

.cob-buscar-vacio {
    text-align: center;
    color: #999;
    padding: 30px 0;
    font-size: 15px;
}

.cob-buscar-total {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* =========================================
   BUSCADOR — Overlay de resultados
   ========================================= */
#cobBuscadorOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}

#cobBuscadorModal {
    background: #fff;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 70vh;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#cobBuscadorHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #244484;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

#cobBuscadorCerrar {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

#cobBuscadorCerrar:hover {
    color: #ffc107;
}

#cobBuscadorResultados {
    overflow-y: auto;
    padding: 0;
    max-height: calc(70vh - 50px);
}

.cob-busq-item {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.15s;
}

.cob-busq-item:hover {
    background: #f0f5ff;
    text-decoration: none;
}

.cob-busq-nombre {
    display: block;
    color: #244484;
    font-weight: 500;
    font-size: 15px;
}

.cob-busq-nombre mark {
    background: #fef3cd;
    color: #244484;
    padding: 0 2px;
    border-radius: 2px;
}

.cob-busq-meta {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

.cob-busq-vacio {
    padding: 25px 18px;
    text-align: center;
    color: #888;
    font-size: 15px;
}

/* =========================================
   PALETA GLOBAL — Arena lateral + Azul cabecera
   Aplica a todas las páginas (portada, curso, categoría, contacto)
   ========================================= */

#cuerpo {
    background-color: #e8dcc8 !important;
}

/* Título columna izquierda: gris oscuro en vez de rojo */
#h2_curso {
    color: #333 !important;
    font-size: 18px;
}

/* H1 título de categoría y curso: azul petróleo + tamaño 40px */
#h1_titulocurso {
    color: #3d6a8a !important;
    font-size: 40px !important;
}

/* Texto descriptivo: override colores de la BD */
.NvTit,
.NvTit strong,
.article-clean .intro h1,
.article-clean .intro h2,
.article-clean .intro h3,
.texto-categoria h3,
.texto-categoria h4,
div[style*="color: blue"],
div[style*="color:blue"],
div[style*="color: #0000ff"],
div[style*="color:#0000ff"],
div[style*="color: rgb(0, 30, 255)"],
div[style*="color: rgb(65, 105, 225)"],
p[style*="color: rgb(65, 105, 225)"],
.readmore_content h3,
.readmore_content h4 {
    color: #3d6a8a !important;
}

/* Fondo texto descriptivo: arena como los laterales */
.ContNv {
    background-color: #e8dcc8 !important;
}

/* Etiquetas de secciones (pastillas redondeadas): azul petróleo */
/* Solo cambiar el background-color del span, respetar forma original */
.titulos_50,
.titulos_100,
.titulos_100b {
    background-color: #3d6a8a !important;
}

/* Cursos Relacionados: azul petróleo en vez de rojo */
a[href*="cursos-online-de"] {
    color: #3d6a8a;
}

/* Espacio entre H2 columna izquierda y primer elemento */
#h2_curso {
    margin-bottom: 15px;
}

/* Espacio entre buscador y botón CTA en columna derecha */

/* Lista de cursos — estilo Verdana como el sitio antiguo */
.cat-lista-cursos {
    list-style-type: disc;
    padding-left: 35px;
    font-family: Verdana, Geneva, sans-serif;
}

.cat-lista-cursos li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.cat-lista-cursos a {
    color: #244484;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    font-family: Verdana, Geneva, sans-serif;
}

.cat-lista-cursos a:hover {
    color: #1a2a3a;
    text-decoration: underline;
}

.cat-lista-horas {
    font-size: 13px;
    color: #888;
    font-family: Verdana, Geneva, sans-serif;
}

/* Links "Leer más" en texto descriptivo */
.readmore_content a,
#leerMas,
a[style*="color: green"],
a[style*="color:green"],
a[style*="color: purple"],
a[style*="color:purple"],
a[style*="color: rgb(128, 0, 128)"] {
    color: #3d6a8a !important;
}

/* =========================================
   TEXTO DESCRIPTIVO DEL CURSO (.ContNv)
   Fondo claro, bordes finos, padding interno
   ========================================= */
.ContNv {
    background-color: #f9f7f4 !important;
    border: 1px solid #ddd !important;
    border-left: 3px solid #3d6a8a !important;
    padding: 20px 25px !important;
    margin: 15px 0 !important;
}

/* Título H3 dentro del texto descriptivo - azul petróleo */
.ContNv h3,
.ContNv h4,
.NvTit,
.NvTit strong,
h3[style*="color"],
h4[style*="color"] {
    color: #3d6a8a !important;
}

.ContNv .NvTit,
.ContNv .NvTit strong {
    font-size: 22px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    display: block;
    text-align: left !important;
}
.ContNv p {
    text-align: left !important;
    font-family: Verdana, Geneva, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}
/* =========================================
   BLOQUES DE SECCIONES (Objetivos, Temario, etc.)
   Más espacio entre etiqueta y texto
   ========================================= */
#objetivos .titulos_100,
#temario .titulos_100,
#bonificacion .titulos_100b,
#modalidades .titulos_100,
#publico_obj .titulos_50,
#duracion_ .titulos_50 {
    margin-bottom: 15px !important;
}

.linea_icono_central {
    margin-bottom: 12px !important;
}

/* =========================================
   PUBLICACIONES / ARTÍCULOS DEL CURSO
   ========================================= */
.publicaciones-curso {
    margin-top: 30px;
    padding: 10px 5px;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.publicaciones-curso h2,
.publicaciones-curso h3 {
    color: #3d6a8a !important;
    font-size: 22px !important;
    margin-bottom: 15px;
}

.publicaciones-curso h4 {
    color: #3d6a8a !important;
    font-size: 18px !important;
    margin-bottom: 10px;
}

.publicaciones-curso p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.publicaciones-curso img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 6px;
    margin: 10px 0;
}

.publicaciones-curso .fecha,
.publicaciones-curso em {
    font-size: 13px;
    color: #888;
}

/* Contenido columna derecha adicional */
.cldr-publ {
    margin-top: 15px;
    padding: 10px;
    font-size: 13px;
}

.cldr-publ img {
    max-width: 100% !important;
    height: auto !important;
}

/* === MULTIMEDIA CURSO (vídeo/imagen) === */
.curso-video-container {
    position: relative;
    padding-bottom: 50.625%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    max-width: 90%;
}
.curso-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.curso-imagen-container {
    text-align: center;
    margin: 20px auto;
    max-width: 90%;
}
.curso-imagen-container img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* =========================================
   ARTÍCULOS SEMÁNTICOS cob-*
   Estilos para publicaciones_cent transformadas
   a HTML5 semántico (clases cob-publicacion, etc.)
   Creado: 2026-02-16
   ========================================= */

/* Contenedor de cada bloque de publicaciones */
.cob-publicaciones {
    margin-bottom: 25px;
}

/* Artículo individual */
.cob-publicacion {
    background: #fff;
    border: 1px solid #e0dbd4;
    border-left: 3px solid #3d6a8a;
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

/* Cabecera del artículo */
.cob-cabecera {
    margin-bottom: 12px;
}

/* Título del artículo */
.cob-articulo-titulo {
    color: #3d6a8a !important;
    font-family: 'Bitter', serif;
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px 0;
}

/* Fecha de publicación */
.cob-fecha-publicacion {
    color: #888;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* Imagen del artículo */
.cob-imagen {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0 15px 0;
    display: block;
}

/* Párrafos de contenido */
.cob-texto {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin-bottom: 10px;
}

/* Tablas de datos dentro de artículos */
.cob-tabla-datos {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 13px;
}

.cob-tabla-datos th {
    background-color: #3d6a8a;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
}

.cob-tabla-datos td {
    padding: 9px 12px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.cob-tabla-datos tr:nth-child(even) {
    background-color: #f7f5f2;
}

.cob-tabla-datos tr:hover {
    background-color: #eef3f7;
}

/* ============================================================
   FAQ CURSO — 2 columnas x 3 preguntas colapsables
   ============================================================ */

.cob-faq-curso-wrap {
    margin: 28px 15px 10px;
    background: #f7f9fc;
    border-left: 4px solid #1a3a5c;
    border-radius: 0 6px 6px 0;
    padding: 18px 20px 14px;
}

.cob-faq-curso-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a3a5c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #d0dce8;
}

.cob-faq-curso {
    display: flex;
    gap: 24px;
}

.cob-faq-curso-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cob-faq-curso-item details {
    border-bottom: 1px solid #d0dce8;
    padding: 6px 0;
}

.cob-faq-curso-item details summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a3a5c;
    cursor: pointer;
    list-style: none;
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.cob-faq-curso-item details summary::-webkit-details-marker { display: none; }

.cob-faq-curso-item details summary::after {
    content: "+";
    font-size: 16px;
    font-weight: 400;
    color: #3d6a8a;
    flex-shrink: 0;
    margin-top: -1px;
}

.cob-faq-curso-item details[open] summary::after {
    content: "−";
}

.cob-faq-curso-item details p {
    font-size: 12.5px;
    color: #555;
    line-height: 1.65;
    margin: 8px 0 6px;
    padding-right: 20px;
}

@media (max-width: 600px) {
    .cob-faq-curso {
        flex-direction: column;
        gap: 0;
    }
}
