/* ========================================
   CEIN — Estilos de páginas internas
   Centralizado desde bloques <style> inline
   ======================================== */


/* ── UTILIDADES (index.html) ─────────────────────────────── */

.section-highlight {
    text-align: center;
    font-weight: bold;
}

.section-cta-center {
    text-align: center;
    margin-top: 2.5rem;
}


/* ── PAGE HERO (nosotros, contacto, cursos-académicos, cursos-técnicos) ── */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #9b1c1c 100%);
    padding: 4rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

/* Imagen de fondo por página */
body.page-nosotros .page-hero::before {
    background-image: url('../images/cursos/lectura_planos.jpg');
}
body.page-contacto .page-hero::before {
    background-image: url('../images/cursos/excel.jpg');
}
body.page-cursos-academicos .page-hero::before {
    background-image: url('../images/cursos/AUTOCAD.jpg');
}
body.page-cursos-tecnicos .page-hero::before {
    background-image: url('../images/talleres/armado_muebles.jpg');
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero .breadcrumb a:hover { color: var(--dorado); }
.page-hero .breadcrumb span { color: var(--dorado); }

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--dorado);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.page-hero .hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-hero .badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.page-hero .badge i { color: var(--dorado); }

/* Separador del breadcrumb */
.breadcrumb-sep {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}


/* ── NOSOTROS — Misión / Visión / Valores ─────────────────── */

.mision-section {
    background: #fff;
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--rojo-oscuro);
    margin-bottom: 0.75rem;
}

.section-intro p {
    color: #666;
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

.mision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.mision-card {
    background: var(--gris-claro);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--dorado);
}

.mision-card .icon {
    width: 60px;
    height: 60px;
    background: var(--rojo-oscuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.mision-card .icon i { color: #fff; font-size: 1.4rem; }

.mision-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rojo-oscuro);
    margin-bottom: 0.75rem;
}

.mision-card p { color: #555; line-height: 1.7; font-size: 0.97rem; }


/* ── NOSOTROS — Estadísticas ──────────────────────────────── */

.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #9b1c1c 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item { color: #fff; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--dorado); line-height: 1; }
.stat-suffix { font-size: 1.8rem; font-weight: 800; color: var(--dorado); }
.stat-item p { margin-top: 0.5rem; font-size: 0.95rem; color: rgba(255,255,255,0.8); }


/* ── NOSOTROS — CTA ───────────────────────────────────────── */

.cta-section {
    background: var(--gris-claro);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rojo-oscuro);
    margin-bottom: 0.75rem;
}

.cta-section p { color: #666; margin-bottom: 1.75rem; }

.cta-section .cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ── CONTACTO — Mapa ──────────────────────────────────────── */

.mapa-section {
    width: 100%;
    line-height: 0;
}

.mapa-section iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}


/* ── CURSOS — Sección compartida (académicos y técnicos) ──── */

.cursos-section {
    background: var(--gris-claro);
    padding: 4rem 0;
}

.cursos-section .section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.cursos-section .section-intro h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--rojo-oscuro);
    margin-bottom: 0.75rem;
}

.cursos-section .section-intro p {
    color: #666;
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* Estado de carga */
.cursos-loading {
    text-align: center;
    padding: 4rem 1rem;
    color: #777;
}

.cursos-loading i {
    font-size: 2.5rem;
    color: var(--dorado);
    margin-bottom: 1rem;
    display: block;
}

#cursos-empty {
    display: none;
    text-align: center;
    padding: 4rem 1rem;
    color: #777;
}

#cursos-empty i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
    display: block;
}

/* Skeleton cards */
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card { pointer-events: none; overflow: hidden; }

.skeleton-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

.skeleton-line {
    height: 13px;
    border-radius: 6px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

.skeleton-title { height: 19px; width: 72%; }
.skeleton-short { width: 45%; }

.skeleton-btn {
    height: 38px;
    width: 110px;
    border-radius: 8px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

/* CTA al pie de los listados de cursos */
.cta-contacto {
    background: linear-gradient(135deg, #1a1a2e 0%, #9b1c1c 100%);
    padding: 3.5rem 0;
    text-align: center;
}

.cta-contacto h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-contacto p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.cta-contacto .cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ── CURSO DETALLE (.cd-*) ────────────────────────────────── */

.cd-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #9b1c1c 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.cd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: blur(2px);
}

.cd-hero .container {
    position: relative;
    z-index: 1;
}

.cd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cd-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.cd-breadcrumb a:hover {
    color: var(--dorado, #d4af37);
}

.cd-breadcrumb i.sep {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.cd-breadcrumb span {
    color: var(--dorado, #d4af37);
}

.cd-hero-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--dorado, #d4af37);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.cd-hero h1 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.cd-body {
    background: #f5f6fa;
    padding: 3rem 0 4rem;
}

.cd-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}

.cd-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--dorado, #d4af37);
    display: inline-block;
}

.cd-description {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cd-meta-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    font-size: 0.93rem;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.cd-meta-chip i {
    color: var(--dorado, #d4af37);
    font-size: 1rem;
}

.cd-meta-chip strong {
    color: #1a1a2e;
}

.cd-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.25s;
    margin-top: 0.5rem;
}

.cd-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.cd-wa-btn i {
    font-size: 1.3rem;
}

.cd-slider-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 1.5rem;
}

#cd-splide {
    border-radius: 12px;
    overflow: hidden;
}

#cd-splide .splide__slide picture,
#cd-splide .splide__slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

#cd-splide .splide__arrow {
    background: rgba(0, 0, 0, 0.45) !important;
    opacity: 1 !important;
}

#cd-splide .splide__arrow svg {
    fill: #fff !important;
}

#cd-splide .splide__pagination__page {
    background: rgba(255, 255, 255, 0.5);
}

#cd-splide .splide__pagination__page.is-active {
    background: var(--dorado, #d4af37);
    transform: scale(1.3);
}

.cd-info-card {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cd-info-card .cd-meta {
    margin-bottom: 0.5rem;
}

.cd-info-card .cd-wa-btn,
.cd-info-card .cd-brochure-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0;
    box-sizing: border-box;
}

.cd-modules {
    margin-top: 4rem;
}

.cd-modules-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cd-modules-header h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.cd-modules-header h2 em {
    font-style: normal;
    color: var(--dorado, #d4af37);
}

.cd-modules-header p {
    color: #666;
    font-size: 1rem;
}

.cd-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.cd-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.cd-accordion-item:last-child {
    border-bottom: none;
}

.cd-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s;
}

.cd-accordion-btn:hover,
.cd-accordion-btn[aria-expanded="true"] {
    background: #f9fafb;
}

.cd-mod-label {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dorado, #d4af37);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.cd-mod-title {
    flex: 1;
    font-size: 0.97rem;
    font-weight: 600;
    color: #1a1a2e;
}

.cd-mod-arrow {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: #9ca3af;
    transition: transform 0.25s ease;
}

.cd-accordion-btn[aria-expanded="true"] .cd-mod-arrow {
    transform: rotate(180deg);
}

.cd-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.cd-accordion-body.open {
    max-height: 600px;
}

.cd-module-topics {
    list-style: none;
    margin: 0;
    padding: 0.6rem 1.25rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cd-module-topics li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: #555;
}

.cd-module-topics li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--dorado, #d4af37);
    border-radius: 50%;
    margin-top: 0.42rem;
    flex-shrink: 0;
}

.cd-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 2px solid var(--dorado, #d4af37);
    color: var(--dorado, #d4af37);
    background: transparent;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cd-brochure-btn:hover {
    background: var(--dorado, #d4af37);
    color: #1a1a2e;
}

.cd-loading,
.cd-error {
    text-align: center;
    padding: 5rem 1rem;
    color: #888;
}

.cd-loading i,
.cd-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--dorado, #d4af37);
}

.cd-error i {
    color: #dc3545;
}

@media (max-width: 960px) {
    .cd-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cd-right {
        order: -1;
    }
    .cd-slider-wrap {
        position: static;
        border-radius: 12px;
    }
    #cd-splide .splide__slide picture,
    #cd-splide .splide__slide img {
        height: 300px;
    }
    .cd-info-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .cd-hero {
        padding: 2.5rem 0 2rem;
    }
    .cd-body {
        padding: 2rem 0 3rem;
    }
    #cd-splide .splide__slide picture,
    #cd-splide .splide__slide img {
        height: 260px;
    }
    .cd-meta {
        gap: 0.5rem;
    }
    .cd-meta-chip {
        font-size: 0.85rem;
        padding: 0.5rem 0.85rem;
    }
    .cd-wa-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
        box-sizing: border-box;
    }
    .cd-modules-header h2 {
        font-size: 1.5rem;
    }
    .cd-modules-grid {
        grid-template-columns: 1fr;
    }
    .cd-modules {
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cd-breadcrumb {
        font-size: 0.78rem;
    }
    #cd-splide .splide__slide picture,
    #cd-splide .splide__slide img {
        height: 220px;
    }
    .cd-slider-wrap {
        border-radius: 10px;
        margin: 0 -0.5rem;
    }
    .cd-section-title {
        font-size: 1.15rem;
    }
    .cd-description {
        font-size: 0.95rem;
    }
}


/* ── CERTIFICATES (.cert-*) ──────────────────────────────── */

.cert-page { background: var(--gris-claro); min-height: calc(100vh - var(--header-h)); }

.cert-hero {
    background: var(--gradient-primary);
    padding: 72px 20px 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cert-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(194,164,90,0.15) 0%, transparent 70%);
}

.cert-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(194,164,90,0.2);
    border: 1px solid rgba(194,164,90,0.45);
    color: var(--dorado-claro);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.cert-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.2;
}

.cert-hero p {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* Search card – overlap hero */
.cert-search-outer {
    display: flex;
    justify-content: center;
    margin-top: -44px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

.cert-search-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--sombra-intensa);
    padding: 32px 36px;
    width: 100%;
    max-width: 640px;
}

.cert-search-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--negro);
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cert-search-card h2 i { color: var(--rojo-oscuro); }

.cert-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.cert-input-group input {
    flex: 1;
    border: 2px solid var(--gris-medio);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.97rem;
    color: var(--negro);
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

.cert-input-group input:focus { border-color: var(--rojo-oscuro); }
.cert-input-group input::placeholder { color: #aaa; }

.cert-input-group button {
    background: var(--rojo-oscuro);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 24px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
}

.cert-input-group button:hover { background: var(--rojo-medio); transform: translateY(-1px); }

.cert-search-hint {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Estados */
.cert-states { padding: 32px 16px; display: flex; justify-content: center; }

#cert-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 48px 16px;
    color: #777;
}

#cert-loading i { font-size: 2.2rem; color: var(--rojo-oscuro); }

#cert-error {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--sombra);
}

#cert-error > i { font-size: 2.8rem; color: var(--rojo-oscuro); }
#cert-error strong { font-size: 1.1rem; color: var(--negro); }
#cert-error span { color: #777; font-size: 0.95rem; }

.cert-try-again {
    margin-top: 4px;
    background: none;
    border: 2px solid var(--gris-medio);
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    transition: border-color .2s, color .2s;
}

.cert-try-again:hover { border-color: var(--rojo-oscuro); color: var(--rojo-oscuro); }

/* Resultado */
#cert-result { padding: 28px 16px 60px; }
.cert-result-inner { max-width: 760px; margin: 0 auto; }

.cert-valid-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.cert-valid-banner--ok { background: #d1fae5; color: #065f46; }
.cert-valid-banner--no { background: #fee2e2; color: var(--rojo-oscuro); }
.cert-valid-banner i { font-size: 1.3rem; }

/* Imagen del certificado */
.cert-image-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-hover);
    margin-bottom: 20px;
    border: 4px solid var(--dorado);
}

.cert-image-wrap canvas {
    display: block;
    width: 100%;
    height: auto;
}

/* Info card */
.cert-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--sombra);
    padding: 28px 32px;
    margin-bottom: 20px;
}

.cert-info-card h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #aaa;
    font-weight: 700;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--gris-medio);
    padding-bottom: 12px;
}

.cert-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
}

.cert-info-item { display: flex; flex-direction: column; gap: 4px; }
.cert-info-item--full { grid-column: 1 / -1; }

.cert-info-label {
    font-size: 0.78rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cert-info-label i { font-size: .75rem; color: var(--rojo-oscuro); }

.cert-info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--negro);
}

.cert-code {
    font-family: 'Courier New', monospace;
    font-size: 1.05rem;
    color: var(--rojo-oscuro);
    background: #fdf2f2;
    border: 1px solid #f5c6c6;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    word-break: break-all;
}

/* Acciones */
.cert-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--sombra);
    padding: 20px 32px;
}

.cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .2s;
    font-family: inherit;
}

.cert-btn-primary { background: var(--rojo-oscuro); color: #fff; }
.cert-btn-primary:hover { background: var(--rojo-medio); transform: translateY(-1px); color: #fff; }
.cert-btn-outline { background: #fff; color: #555; border: 2px solid var(--gris-medio); }
.cert-btn-outline:hover { border-color: var(--rojo-oscuro); color: var(--rojo-oscuro); }

/* Lista (múltiples resultados) */
#cert-list { max-width: 760px; margin: 0 auto; }

.cert-list-title {
    font-size: 0.92rem;
    color: #777;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.cert-list-title i { color: var(--rojo-oscuro); }

.cert-list-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--sombra);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.cert-list-thumb { flex-shrink: 0; }

.cert-list-thumb img {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--dorado);
}

.cert-list-info { flex: 1; min-width: 0; }
.cert-list-code { font-size: 0.8rem; color: #aaa; font-family: monospace; }
.cert-list-course { font-size: 1rem; font-weight: 700; color: var(--negro); margin: 2px 0 6px; }
.cert-list-meta { display: flex; gap: 16px; font-size: 0.82rem; color: #777; flex-wrap: wrap; }
.cert-list-meta i { color: var(--rojo-oscuro); margin-right: 3px; }
.cert-list-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cert-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: var(--rojo-oscuro);
    color: #fff;
    font-family: inherit;
    text-decoration: none;
    transition: background .2s;
}

.cert-btn-sm:hover { background: var(--rojo-medio); }

.cert-btn-outline-sm {
    background: #fff;
    color: #555;
    border: 2px solid var(--gris-medio);
}

.cert-btn-outline-sm:hover { border-color: var(--rojo-oscuro); color: var(--rojo-oscuro); }

@media (max-width: 640px) {
    .cert-hero { padding: 52px 16px 76px; }
    .cert-search-card { padding: 24px 20px; }
    .cert-input-group { flex-direction: column; }
    .cert-input-group button { padding: 13px; justify-content: center; }
    .cert-info-grid { grid-template-columns: 1fr; }
    .cert-info-item--full { grid-column: 1; }
    .cert-actions { padding: 16px 20px; }
    .cert-info-card { padding: 22px 20px; }
    .cert-list-card { flex-direction: column; align-items: flex-start; }
    .cert-list-actions { width: 100%; }
}


/* ── SEDES ────────────────────────────────────────────────── */

/* Hero: dos columnas */
.sedes-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    padding: 0px;
}

.sedes-hero-img {
    overflow: hidden;
    position: relative;
}

.sedes-hero-img picture,
.sedes-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sedes-hero-text {
    background: linear-gradient(135deg, #1a1a2e 0%, #9b1c1c 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3.5rem;
    color: #fff;
    position: relative;
}

/* Reutiliza .breadcrumb de .page-hero pero sin centrar */
.sedes-hero-text .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    justify-content: flex-start;
}

.sedes-hero-text .breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.sedes-hero-text .breadcrumb a:hover { color: var(--dorado); }
.sedes-hero-text .breadcrumb span { color: var(--dorado); }

.sedes-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--dorado, #d4af37);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
}

.sedes-hero-text h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.sedes-hero-text h1 em {
    font-style: normal;
    color: var(--dorado, #d4af37);
}

.sedes-hero-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 1.75rem;
}

.sedes-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.sedes-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.sedes-pill i { color: var(--dorado, #d4af37); font-size: 0.75rem; }

/* Sub-hero por sede */
.sede-subhero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

/* Versión invertida: imagen a la derecha */
.sede-subhero--reverse {
    direction: rtl;
}

.sede-subhero--reverse > * {
    direction: ltr;
}

/* En la versión invertida el borde dorado va al lado derecho del panel */
.sede-subhero--reverse .sede-subhero-text {
    border-left: none;
    border-right: 5px solid var(--dorado, #d4af37);
}

.sede-subhero-img {
    overflow: hidden;
}

.sede-subhero-img picture,
.sede-subhero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sede-subhero:hover .sede-subhero-img img {
    transform: scale(1.03);
}

.sede-subhero-text {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
    border-left: 5px solid var(--dorado, #d4af37);
}

.sede-subhero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(155,28,28,0.08);
    border: 1px solid rgba(155,28,28,0.25);
    color: var(--rojo-oscuro, #9b1c1c);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    width: fit-content;
}

.sede-subhero-badge--central {
    background: var(--dorado, #d4af37);
    color: #1a1a2e;
    border-color: transparent;
}

.sede-subhero-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.sede-subhero-text h2 em {
    font-style: normal;
    color: var(--rojo-oscuro, #9b1c1c);
}

.sede-subhero-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2rem;
}

.sede-subhero-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sede-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

.sede-phone i { color: var(--rojo-oscuro, #9b1c1c); }

/* Botón WhatsApp */
.sede-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    width: fit-content;
}

.sede-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.sede-wa-btn i { font-size: 1.1rem; }

/* Sección de info + mapa por sede */
.sede-info {
    background: #fff;
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sede-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: stretch;
}

.sede-info-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sede-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.sede-info-item > i {
    font-size: 1.1rem;
    color: var(--rojo-oscuro, #9b1c1c);
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.sede-info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aaa;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.sede-info-item p {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.sede-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rojo-oscuro, #9b1c1c);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--rojo-oscuro, #9b1c1c);
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    width: fit-content;
    margin-top: 0.5rem;
}

.sede-maps-link:hover {
    background: var(--rojo-oscuro, #9b1c1c);
    color: #fff;
}

.sede-info-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 300px;
}

.sede-info-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sedes-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sedes-hero-img {
        height: 260px;
    }

    .sedes-hero-text {
        padding: 2.5rem 1.5rem;
    }

    .sedes-hero-text p {
        max-width: 100%;
    }

    .sede-subhero {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: auto;
    }

    .sede-subhero--reverse {
        direction: ltr;
    }

    .sede-subhero-img {
        height: 260px;
    }

    .sede-subhero-text {
        padding: 2.5rem 1.5rem;
    }

    .sede-subhero-text p {
        max-width: 100%;
    }

    .sede-info-grid {
        grid-template-columns: 1fr;
    }

    .sede-info-map {
        min-height: 260px;
    }

    .sede-info-map iframe {
        min-height: 260px;
    }
}

/* ============================================================
   TALLER LANDING PAGE  (body.page-taller-landing)
   ============================================================ */

/* Hero override: reutiliza .sedes-hero, ajusta texto del panel derecho */
.taller-hero-override .sedes-hero-text h1 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.taller-hero-override .sedes-hero-text h1 em {
    font-style: normal;
    color: var(--dorado, #d4af37);
}

.taller-hero-override .sedes-hero-text p {
    max-width: 440px;
    margin-bottom: 0;
}

.taller-hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--dorado, #d4af37);
    color: #1a1a2e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

/* Sponsor logo */
.taller-sponsor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.taller-sponsor-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    white-space: nowrap;
}

.taller-sponsor-logo {
    display: block;
}

.taller-sponsor-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* Top bar */
.taller-topbar {
    background: #1a1a2e;
    padding: 0.75rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.taller-topbar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.taller-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.taller-topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #25d366;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.taller-topbar-wa:hover {
    background: #1ebe5d;
    transform: scale(1.03);
}

/* Hero */
.taller-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.taller-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.taller-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.taller-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(155,28,28,0.65) 100%);
}

.taller-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
    color: #fff;
}

.taller-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--dorado, #d4af37);
    color: #1a1a2e;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.taller-hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.taller-hero-content h1 em {
    font-style: normal;
    color: var(--dorado, #d4af37);
}

.taller-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.taller-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dorado, #d4af37);
    color: #1a1a2e;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.taller-hero-cta:hover {
    background: #c2a45a;
    transform: translateY(2px);
}

/* WhatsApp group banner */
.taller-wa-banner {
    background: #075e54;
    padding: 1.25rem 1.5rem;
}

.taller-wa-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.taller-wa-banner-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.taller-wa-banner-icon {
    font-size: 2.2rem;
    color: #25d366;
    flex-shrink: 0;
}

.taller-wa-banner-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.taller-wa-banner-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.taller-wa-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.taller-wa-join-btn:hover {
    background: #1ebe5d;
    transform: scale(1.04);
}

/* Talleres section */
.taller-section {
    padding: 4rem 1.5rem;
    background: #f8f8f8;
}

.taller-section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.taller-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.taller-section-label {
    display: inline-block;
    background: var(--dorado, #d4af37);
    color: #1a1a2e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.taller-section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.taller-section-header h2 em {
    font-style: normal;
    color: var(--rojo-oscuro, #9b1c1c);
}

.taller-section-header p {
    color: #666;
    font-size: 1rem;
}

/* Cards grid */
.taller-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.taller-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    border-top: 4px solid var(--dorado, #d4af37);
    transition: transform 0.2s, box-shadow 0.2s;
}

.taller-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}

.taller-card-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.taller-card-img-wrap picture,
.taller-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.taller-card:hover .taller-card-img-wrap img {
    transform: scale(1.04);
}

.taller-card-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: var(--rojo-oscuro, #9b1c1c);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.taller-card-body {
    padding: 1.5rem;
}

.taller-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dorado, #d4af37);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.taller-card-body h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.taller-card-body p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.taller-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.taller-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #444;
}

.taller-card-features li i {
    color: #25d366;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.taller-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    text-align: center;
}

.taller-card-btn:hover {
    background: #1ebe5d;
    transform: scale(1.02);
}

/* Bottom CTA */
.taller-bottom-cta {
    padding: 4rem 1.5rem;
    background: #1a1a2e;
    text-align: center;
}

.taller-bottom-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.taller-bottom-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
}

.taller-bottom-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.taller-bottom-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.taller-footer {
    background: #111;
    padding: 2rem 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.taller-footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.taller-footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.taller-footer p {
    font-size: 0.82rem;
    margin: 0.25rem 0;
}

/* Responsive */
@media (max-width: 600px) {
    .taller-hero {
        min-height: 420px;
    }

    .taller-wa-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .taller-wa-join-btn {
        width: 100%;
        justify-content: center;
    }

    .taller-cards-grid {
        grid-template-columns: 1fr;
    }

    .taller-topbar-wa span {
        display: none;
    }
}
