/**
 * ISPS Theme — assets/css/sections/taller.css
 * Estilos modernos inspirados en el flyer oficial: "Viví la Psicología Social"
 */

:root {
    --taller-bg-deep: #080d14;
    --taller-bg-card: #101924;
    --taller-bg-card-hover: #162231;
    --taller-orange: #FF6600;
    --taller-orange-hover: #ff7b24;
    --taller-amber: #F59E0B;
    --taller-cyan: #0EA5E9;
    --taller-cyan-dark: #0369a1;
    --taller-teal-brush: #0891b2;
    --taller-paper-bg: #FAF7F2;
    --taller-paper-ink: #0f172a;
    --taller-border: rgba(255, 255, 255, 0.08);
    --taller-border-glow: rgba(255, 102, 0, 0.35);
    --taller-text-muted: #94a3b8;
}

/* ============================================================
   CONTENEDOR PRINCIPAL & PATRÓN METAFÓRICO
   ============================================================ */
.taller-wrap {
    background-color: var(--taller-bg-deep);
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
}

/* Trama de fondo metafórica: Redes vinculares y dinámicas de grupo (SVG) */
.taller-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 102, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'%3E%3Ccircle cx='20' cy='20' r='3' fill='rgba(255,102,0,0.18)'/%3E%3Ccircle cx='90' cy='40' r='4' fill='rgba(14,165,233,0.18)'/%3E%3Ccircle cx='60' cy='95' r='3.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='105' cy='105' r='2' fill='rgba(245,158,11,0.2)'/%3E%3Cpath d='M20 20 L90 40 M90 40 L60 95 M60 95 L20 20 M90 40 L105 105' stroke-dasharray='3 5'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: auto, auto, auto, 240px 240px;
    pointer-events: none;
    z-index: 0;
}

.taller-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   TOP BAR BADGE / FECHA DESTACADA
   ============================================================ */
.taller-top-ticker {
    padding: 16px 0 0;
    display: flex;
    justify-content: center;
}

.taller-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(16, 25, 36, 0.9);
    border: 1px solid rgba(255, 102, 0, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 102, 0, 0.15);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.taller-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--taller-orange);
    box-shadow: 0 0 10px var(--taller-orange);
    animation: tallerPulse 2s infinite ease-in-out;
}

.taller-badge-tag {
    color: var(--taller-amber);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 10px;
}

@keyframes tallerPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* ============================================================
   HERO PRINCIPAL
   ============================================================ */
.taller-hero {
    padding: 48px 0 70px;
}

.taller-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.taller-hero-content {
    display: flex;
    flex-direction: column;
}

.taller-title-supra {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
}

.taller-title-emphasis {
    color: var(--taller-orange);
    text-shadow: 0 4px 25px rgba(255, 102, 0, 0.45);
    position: relative;
    display: inline-block;
    font-size: 1.12em;
}

.taller-brush-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 24px;
    margin: 18px 0 24px;
    align-self: flex-start;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    position: relative;
    transform: rotate(-1deg);
}

.taller-hero-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0 0 18px;
    font-weight: 400;
}

.taller-hero-lead strong {
    color: #ffffff;
    font-weight: 700;
}

.taller-hero-highlight-phrase {
    border-left: 4px solid var(--taller-orange);
    background: rgba(255, 102, 0, 0.08);
    padding: 14px 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.taller-hero-highlight-phrase p {
    margin: 0;
}

.taller-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.btn-taller-primary {
    background: linear-gradient(135deg, var(--taller-orange) 0%, #d95300 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(255, 102, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-taller-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff7a1a 0%, var(--taller-orange) 100%);
}

.btn-taller-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 14px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.btn-taller-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.taller-urgency-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--taller-amber);
    font-weight: 600;
}

/* ============================================================
   VIDEO HERO PLAYER (VERTICAL REELS 9:16)
   ============================================================ */
.taller-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.taller-video-card {
    position: relative;
    width: min(100%, 340px);
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    background: #000000;
    border: 7px solid #162231;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 45px rgba(255, 102, 0, 0.25);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.taller-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.85), 0 0 55px rgba(255, 102, 0, 0.35);
    border-color: #1e3046;
}

.taller-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.taller-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(8, 13, 20, 0.38);
    backdrop-filter: blur(1.5px);
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.taller-video-card.is-playing .taller-video-overlay {
    opacity: 0;
    pointer-events: none;
}

.taller-video-play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--taller-orange) 0%, #d95300 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    padding-left: 5px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.7), 0 8px 25px rgba(0,0,0,0.5);
    animation: videoBtnPulse 2.2s infinite ease-in-out;
    transition: transform 0.2s ease;
}

.taller-video-card:hover .taller-video-play-btn {
    transform: scale(1.1);
}

@keyframes videoBtnPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 102, 0, 0.7); }
    50% { transform: scale(1.08); box-shadow: 0 0 45px rgba(255, 102, 0, 0.9); }
}

.taller-video-play-label {
    margin-top: 15px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(8, 13, 20, 0.85);
    padding: 7px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.taller-video-top-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(8, 13, 20, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 3;
    pointer-events: none;
}

.taller-video-top-badge i {
    color: var(--taller-orange);
}


/* ============================================================
   BENTO COORDENADAS: 4 PILLS LOGÍSTICAS
   ============================================================ */
.taller-bento-section {
    padding: 20px 0 60px;
}

.taller-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.taller-bento-card {
    background: var(--taller-bg-card);
    border: 1px solid var(--taller-border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.taller-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--taller-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.taller-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.1);
}

.taller-bento-card:hover::before {
    opacity: 1;
}

.taller-bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 102, 0, 0.12);
    border: 1px solid rgba(255, 102, 0, 0.25);
    display: grid;
    place-items: center;
    color: var(--taller-orange);
    font-size: 1.3rem;
}

.taller-bento-card.accent-cyan .taller-bento-icon {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.25);
    color: var(--taller-cyan);
}

.taller-bento-label {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--taller-text-muted);
}

.taller-bento-value {
    font-size: 1.12rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.taller-bento-sub {
    font-size: 0.82rem;
    color: #cbd5e1;
}

/* ============================================================
   SECCIÓN: ¿QUÉ VAS A EXPERIMENTAR? (TORN PAPER CARD & DETALLE)
   ============================================================ */
.taller-experience-section {
    padding: 60px 0 80px;
    position: relative;
}

.taller-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* TARJETA TORN PAPER / NOTEBOOK DEL FLYER */
.taller-paper-card {
    background: var(--taller-paper-bg);
    color: var(--taller-paper-ink);
    border-radius: 8px;
    padding: 40px 36px 36px 52px;
    position: relative;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5), 0 2px 10px rgba(0,0,0,0.2);
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
    border: 1px solid #e5dfd5;
}

.taller-paper-card:hover {
    transform: rotate(0deg) translateY(-4px);
}

/* Agujeros de anillado / perforaciones a la izquierda */
.taller-paper-holes {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 18px;
    width: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.taller-paper-hole {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #111a24;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.7), 0 1px 1px rgba(255,255,255,0.4);
}

.taller-paper-header {
    margin-bottom: 24px;
    border-bottom: 2px dashed #d1c7b7;
    padding-bottom: 14px;
}

.taller-paper-title {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 900;
    color: #0369a1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.taller-paper-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.taller-paper-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.02rem;
    color: #1e293b;
    line-height: 1.45;
}

.taller-paper-check {
    color: #0284c7;
    font-size: 1.25rem;
    font-weight: 900;
    margin-top: 1px;
    flex-shrink: 0;
}

.taller-paper-item strong {
    color: #0f172a;
    font-weight: 800;
}

/* Columna derecha: Por qué es vivencial */
.taller-exp-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.taller-section-kicker {
    display: inline-block;
    color: var(--taller-orange);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.taller-exp-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.taller-exp-title span {
    color: var(--taller-orange);
}

.taller-exp-desc {
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
}

.taller-feature-box {
    background: var(--taller-bg-card);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--taller-border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.taller-feature-box i {
    font-size: 1.5rem;
    color: var(--taller-cyan);
    margin-top: 3px;
}

.taller-feature-box h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 700;
}

.taller-feature-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--taller-text-muted);
}

/* ============================================================
   BANNER PUNCHLINE (SALÍ DISTINTO)
   ============================================================ */
.taller-punchline-strip {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.18) 0%, rgba(14, 165, 233, 0.14) 100%);
    border-top: 1px solid rgba(255, 102, 0, 0.3);
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
    padding: 34px 20px;
    text-align: center;
    position: relative;
}

.taller-punchline-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1.35;
}

.taller-punchline-orange {
    color: var(--taller-orange);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.taller-punchline-white {
    color: #ffffff;
}

/* ============================================================
   TRANSPARENCIA INSTITUCIONAL: SEÑA SIMBÓLICA $1.500
   ============================================================ */
.taller-trust-section {
    padding: 70px 0 50px;
}

.taller-trust-card {
    background: linear-gradient(135deg, rgba(19, 31, 46, 0.95) 0%, rgba(13, 22, 33, 0.98) 100%);
    border: 1.5px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 25px rgba(245, 158, 11, 0.12);
}

.taller-trust-icon-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1.5px solid var(--taller-amber);
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    color: var(--taller-amber);
    flex-shrink: 0;
}

.taller-trust-body h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}

.taller-trust-body p {
    margin: 0;
    font-size: 0.96rem;
    color: #cbd5e1;
    line-height: 1.65;
}

.taller-trust-body strong {
    color: var(--taller-amber);
}

.taller-trust-pill {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    white-space: nowrap;
}

.taller-trust-pill-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--taller-amber);
    line-height: 1;
}

.taller-trust-pill-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-top: 4px;
}

/* ============================================================
   SECCIÓN DE REGISTRO / FORMULARIO
   ============================================================ */
.taller-form-section {
    padding: 50px 0 90px;
}

.taller-form-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--taller-bg-card);
    border: 1.5px solid rgba(255, 102, 0, 0.35);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 102, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.taller-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--taller-cyan), var(--taller-orange), var(--taller-amber));
}

.taller-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.taller-form-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
}

.taller-form-header p {
    color: var(--taller-text-muted);
    font-size: 1rem;
    margin: 0;
}

.taller-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.taller-form-full {
    grid-column: 1 / -1;
}

.taller-input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.taller-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.taller-input-group label i {
    color: var(--taller-orange);
    font-size: 0.9rem;
}

.taller-input-group input,
.taller-input-group select,
.taller-input-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(8, 13, 20, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.98rem;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.taller-input-group select {
    background-color: #0b1219;
    cursor: pointer;
}

.taller-input-group select option {
    background-color: #101924;
    color: #ffffff;
    padding: 10px;
}

.taller-input-group input::placeholder,
.taller-input-group textarea::placeholder {
    color: #64748b;
}

.taller-input-group input:focus,
.taller-input-group select:focus,
.taller-input-group textarea:focus {
    outline: none;
    border-color: var(--taller-orange);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2);
    background: rgba(14, 23, 34, 0.95);
}

.taller-submit-btn {
    width: 100%;
    padding: 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--taller-orange) 0%, #d95300 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.taller-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6);
    background: linear-gradient(135deg, #ff7a1a 0%, var(--taller-orange) 100%);
}

.taller-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.taller-form-footer-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--taller-text-muted);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Mensajes de respuesta */
.taller-form-msg {
    margin-top: 20px;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    display: none;
    line-height: 1.6;
}

.taller-form-msg.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1.5px solid #10b981;
    color: #ecfdf5;
}

.taller-form-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1.5px solid #ef4444;
    color: #fef2f2;
}

.taller-success-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease;
}

.taller-success-cta-wa:hover {
    transform: translateY(-2px);
    background: #22bf5b;
}

/* ============================================================
   SECCIÓN SEDE & UBICACIÓN
   ============================================================ */
.taller-location-section {
    padding: 20px 0 80px;
}

.taller-location-card {
    background: var(--taller-bg-card);
    border: 1px solid var(--taller-border);
    border-radius: 20px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.taller-loc-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
}

.taller-loc-info p {
    color: #cbd5e1;
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.65;
}

.taller-loc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.taller-loc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.92rem;
}

.taller-loc-list li i {
    color: var(--taller-orange);
    width: 20px;
}

.taller-map-embed {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--taller-border);
}

.taller-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   ESTILOS ADICIONALES PARA HEADER & MENÚ
   ============================================================ */
.menu-item-taller {
    position: relative;
}

.hd-link-taller {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    position: relative;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.hd-link-taller:hover {
    background: rgba(255, 102, 0, 0.12);
    color: var(--taller-orange) !important;
}

.hd-badge-taller {
    background: linear-gradient(135deg, #ff6600 0%, #e65100 100%);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 20px;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
    animation: hdTallerPulse 2s infinite ease-in-out;
}

@keyframes hdTallerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ============================================================ */
@media (max-width: 991px) {
    .taller-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .taller-hero-visual {
        order: -1;
    }
    .taller-video-card {
        max-width: 320px;
    }

    .taller-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .taller-exp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .taller-trust-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
    }
    .taller-trust-icon-wrap {
        margin: 0 auto;
    }
    .taller-trust-pill {
        margin: 0 auto;
    }
    .taller-form-container {
        padding: 32px 20px;
    }
    .taller-location-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .taller-bento-grid {
        grid-template-columns: 1fr;
    }
    .taller-form-grid {
        grid-template-columns: 1fr;
    }
    .taller-paper-card {
        padding: 30px 20px 24px 38px;
    }
    .taller-paper-holes {
        left: 12px;
    }
    .taller-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-taller-primary,
    .btn-taller-ghost {
        width: 100%;
        justify-content: center;
    }
}

