/* ==========================================================================
   FUNDALUZ XXI CULTURA - BOTONERÍA CENTRADA 100% A PRUEBA DE ERRORES EN PROD
   Posicionamiento Absoluto para Ícono y Flecha + Centrado Geométrico del Texto
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0b1322;
  --primary-dark: #131c2e;
  --brand-gold: #d97706;
  --brand-gold-bright: #F5C518;
  --brand-crimson: #E04D39;
  --brand-cyan: #06B6D4;
  --brand-purple: #8B5CF6;
  --brand-green: #10b981;
  
  --bg-light: #f8fafc;
  --bg-artistic: linear-gradient(180deg, #f8fafc 0%, #edf2f7 50%, #e2e8f0 100%);
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --input-border: #cbd5e1;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --font-heading: 'Outfit', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius-lg: 28px;
  --radius-md: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-light);
  background-image: var(--bg-artistic);
  color: var(--text-body);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* 🎭 TELÓN DE FONDO TEATRAL 3D CON CORDONES Y BORLES DORADAS */
.curtain-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 560px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.curtain-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: 
    radial-gradient(ellipse at 50% 0%, #b91c1c 0%, #991b1b 40%, #7f1d1d 80%),
    repeating-linear-gradient(
      90deg,
      #450a0a 0px,
      #991b1b 15px,
      #dc2626 30px,
      #991b1b 45px,
      #450a0a 60px
    );
  background-blend-mode: multiply;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  border-bottom: 5px solid var(--brand-gold-bright);
}

.curtain-top::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--brand-gold-bright) 0px,
    var(--brand-gold-bright) 8px,
    #92400e 9px,
    #92400e 12px
  );
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.curtain-left, .curtain-right {
  position: absolute;
  top: 0;
  width: min(210px, 19vw);
  height: 100%;
  z-index: 2;
  box-shadow: 0 0 45px rgba(0,0,0,0.45);
}

.curtain-left {
  left: 0;
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      #290505 0%,
      #7f1d1d 20%,
      #b91c1c 45%,
      #7f1d1d 70%,
      #450a0a 90%,
      #290505 100%
    );
  border-right: 4.5px solid var(--brand-gold-bright);
  border-radius: 0 0 100% 0 / 0 0 100% 0;
}

.curtain-left::after {
  content: '🎗️';
  position: absolute;
  top: 42%;
  right: -16px;
  font-size: 2.2rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
  animation: ropeSway 4s ease-in-out infinite alternate;
}

.curtain-right {
  right: 0;
  background: 
    linear-gradient(-135deg, rgba(255,255,255,0.18) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      #290505 0%,
      #7f1d1d 20%,
      #b91c1c 45%,
      #7f1d1d 70%,
      #450a0a 90%,
      #290505 100%
    );
  border-left: 4.5px solid var(--brand-gold-bright);
  border-radius: 0 0 0 100% / 0 0 0 100%;
}

.curtain-right::after {
  content: '🎗️';
  position: absolute;
  top: 42%;
  left: -16px;
  font-size: 2.2rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
  animation: ropeSway 4s ease-in-out infinite alternate-reverse;
}

@keyframes ropeSway {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-4px) rotate(5deg); }
}

/* 🎨 MOTIVOS ARTÍSTICOS FLOTANTES DESTACADOS */
.art-floating-bg {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.mural-element, .music-element {
  position: absolute;
  opacity: 0.38;
  user-select: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
  transition: all 0.5s ease;
}

.mural-1 { top: 90px; left: 3%; font-size: 8.5rem; transform: rotate(-15deg); animation: artFloat 6s ease-in-out infinite alternate; }
.mural-2 { top: 340px; left: 5%; font-size: 6.5rem; transform: rotate(20deg); animation: artFloat 8s ease-in-out infinite alternate-reverse; }
.mural-3 { top: 620px; left: 2%; font-size: 7rem; transform: rotate(-10deg); animation: artFloat 7s ease-in-out infinite alternate; }

.music-1 { top: 100px; right: 4%; font-size: 8.5rem; transform: rotate(12deg); animation: artFloat 7s ease-in-out infinite alternate-reverse; }
.music-2 { top: 360px; right: 5%; font-size: 7rem; transform: rotate(-18deg); animation: artFloat 9s ease-in-out infinite alternate; }
.music-3 { top: 640px; right: 3%; font-size: 7.5rem; transform: rotate(15deg); animation: artFloat 6s ease-in-out infinite alternate-reverse; }

@keyframes artFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
  50% { opacity: 0.48; }
  100% { transform: translateY(-15px) rotate(8deg); opacity: 0.35; }
}

/* 🎨 BANDA GEOMÉTRICA DE CABECERA */
.cultura-top-ribbon,
.brand-top-stripe {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #06B6D4 0%, #F5C518 33%, #E04D39 66%, #06B6D4 100%);
  background-size: 300% 100%;
  animation: ribbonFlow 12s linear infinite;
  position: relative;
  z-index: 99;
}

@keyframes ribbonFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* 📦 ENCABEZADO E IDENTIDAD */
.app-header {
  text-align: center;
  padding: 40px 20px 15px;
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* BRAND BADGE INSTITUCIONAL */
.brand-badge,
.brand-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 2px solid var(--brand-gold-bright);
  padding: 6px 20px 6px 8px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

.brand-badge .badge-icon-circle,
.brand-sub-badge .badge-icon-bg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  font-size: 0.95rem;
}

.brand-badge span,
.brand-sub-badge span {
  color: #0f172a;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-logo-img {
  max-width: 160px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.15));
  border-radius: 16px;
  border: 2.5px solid #ffffff;
}

/* 🖼️ AFICHE CUBISTA ARTÍSTICO DE CABECERA */
.cultura-poster-box {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
  z-index: 10;
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.92)), 
                    linear-gradient(135deg, #F5C518, #E04D39, #06B6D4, #8B5CF6);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  max-width: 380px;
  width: 92%;
  margin: 18px auto 22px;
}

.cultura-poster-box:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 25px 55px rgba(245, 197, 24, 0.35);
}

.cultura-poster-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 230px;
  background: #ffffff;
}

.cultura-poster-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.05);
}

.main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.main-title .white-text { color: var(--text-dark); }
.main-title .crimson-text { color: var(--brand-crimson); }
.main-title .gold-text { color: var(--brand-gold); }

.slogan-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #334155;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* 🏷️ BADGE FLOTANTE DE TALLER */
.taller-selected-badge {
  background: #fffbe6;
  border: 1.5px solid #d97706;
  color: #92400e;
  padding: 10px 30px 10px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.15);
  animation: badgePulse 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

.taller-selected-badge .badge-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

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

.taller-selected-badge.music-active {
  background: #ecfeff;
  border-color: #06B6D4;
  color: #155e75;
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.15);
}

.taller-selected-badge.music-active .badge-icon-circle {
  background: #cffaff;
  color: #0891b2;
}

.taller-selected-badge.serigrafia-active {
  background: #ecfdf5;
  border-color: #059669;
  color: #065f46;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.15);
}

.taller-selected-badge.serigrafia-active .badge-icon-circle {
  background: #d1fae5;
  color: #059669;
}

.taller-selected-badge.aerosol-active {
  background: #f5f3ff;
  border-color: #8B5CF6;
  color: #5b21b6;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.15);
}

.taller-selected-badge.aerosol-active .badge-icon-circle {
  background: #ede9fe;
  color: #7c3aed;
}

/* ⚡ MAIN CONTAINER (CARD DEL FORMULARIO CON MARCO NEÓN) */
.main-container {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 94%;
  max-width: 780px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 10;
  border: 3.5px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), 
                    linear-gradient(135deg, #F5C518 0%, #E04D39 25%, #06B6D4 50%, #8B5CF6 75%, #F5C518 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 
    0 0 30px rgba(245, 197, 24, 0.3),
    0 0 55px rgba(6, 182, 212, 0.18),
    0 25px 60px rgba(15, 23, 42, 0.12);
}

/* 🎛️ TOGGLE SELECCIÓN DE TALLER EN DOS FILAS */
.workshop-toggle-section {
  margin-bottom: 30px;
  text-align: center;
}

.workshop-toggle-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.workshop-pills-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: #f8fafc;
  padding: 14px;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  max-width: 540px;
  margin: 0 auto;
}

.workshop-pills-wrapper.grid-multi {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
}

@media (max-width: 560px) {
  .workshop-pills-wrapper.grid-multi {
    grid-template-columns: 1fr;
  }
}

.workshop-pill-btn {
  width: 100%;
  padding: 13px 20px;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  background: #ffffff;
  color: var(--text-body);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.workshop-pill-btn .pill-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.workshop-pill-btn .pill-name-text,
.workshop-pill-btn span:not(.pill-icon-circle) {
  flex: 1;
  text-align: left;
}

.workshop-pill-btn .pill-arrow-icon {
  font-size: 0.82rem;
  opacity: 0.55;
  margin-left: auto;
}

.workshop-pill-btn:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.workshop-pill-btn * {
  pointer-events: none;
}

.workshop-pill-btn.active,
.workshop-pill-btn.active-mural {
  background: #fffbe6 !important;
  border: 1.5px solid #d97706 !important;
  color: #92400e !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.15) !important;
}

.workshop-pill-btn.active .pill-icon-circle,
.workshop-pill-btn.active-mural .pill-icon-circle {
  background: #fef3c7 !important;
  color: #d97706 !important;
}

.workshop-pill-btn.active-music {
  background: #ecfeff !important;
  border: 1.5px solid #06B6D4 !important;
  color: #155e75 !important;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15) !important;
}

.workshop-pill-btn.active-music .pill-icon-circle {
  background: #cffaff !important;
  color: #0891b2 !important;
}

.workshop-pill-btn.active-serigrafia {
  background: #ecfdf5 !important;
  border: 1.5px solid #059669 !important;
  color: #065f46 !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
}

.workshop-pill-btn.active-serigrafia .pill-icon-circle {
  background: #d1fae5 !important;
  color: #059669 !important;
}

.workshop-pill-btn.active-aerosol {
  background: #f5f3ff !important;
  border: 1.5px solid #8B5CF6 !important;
  color: #5b21b6 !important;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2) !important;
}

.workshop-pill-btn.active-aerosol .pill-icon-circle {
  background: #ede9fe !important;
  color: #7c3aed !important;
}

/* 🏢 SECCIONES CON ÍCONOS Y CABECERA */
.section { margin-bottom: 32px; }

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.section-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5C518;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(11, 19, 34, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

/* 📝 ESTRUCTURA DE FORMULARIO MULTICOLUMNA */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 12px;
}

.form-group {
  position: relative;
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--brand-crimson);
  margin-left: 3px;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  padding-right: 42px;
  border: 2px solid var(--input-border);
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  background: var(--input-bg);
  transition: all 0.3s ease;
  color: var(--text-dark);
  outline: none;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.2);
  background: #ffffff;
}

.form-group .input-icon {
  position: absolute;
  right: 15px;
  top: 42px;
  color: #94a3b8;
  font-size: 1rem;
  pointer-events: none;
}

.form-group select + .input-icon { display: none; }

.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d97706' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

/* 📋 REQUISITOS BOX */
.requisitos-box {
  background: linear-gradient(135deg, #f0fff4, #e8f8f0);
  border: 2px solid var(--brand-green);
  border-radius: 18px;
  padding: 22px 25px;
  margin-bottom: 30px;
}

.requisitos-box h4 {
  color: #047857;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requisitos-box ul { list-style: none; }
.requisitos-box li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 500;
}

.requisitos-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: bold;
  font-size: 1rem;
}

/* 🛡️ CONSENT BOX */
.consent-box {
  background: #e0f2fe;
  padding: 16px 20px;
  border-radius: 14px;
  margin: 25px 0;
  border-left: 4px solid var(--brand-cyan);
}

.consent-box label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.consent-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--brand-gold);
  cursor: pointer;
}

/* 🔘 BOTÓN SUBMIT CON CENTRADO ABSOLUTO E IMPERMEABLE */
.submit-btn,
.btn-submit {
  width: 100%;
  height: 56px;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fffbe6 !important;
  border: 2px solid var(--brand-gold) !important;
  border-radius: 50px !important;
  color: #92400e !important;
  font-family: var(--font-heading) !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.18) !important;
  overflow: hidden;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  margin-top: 15px;
  padding: 0 50px !important;
}

/* CÍRCULO ÍCONO A LA IZQUIERDA EN POSICIÓN ABSOLUTA */
.submit-btn .btn-icon-circle,
.btn-submit .btn-icon-circle {
  position: absolute !important;
  left: 7px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #fef3c7 !important;
  color: var(--brand-gold) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  transition: all 0.4s ease !important;
  z-index: 2;
}

/* TEXTO 100% CENTRADO EN LA GEOMETRÍA DEL BOTÓN */
.submit-btn .btn-text-centered,
.btn-submit .btn-text-centered,
.submit-btn span,
.btn-submit span {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  font-weight: 900 !important;
  color: #92400e !important;
  transition: color 0.4s ease !important;
  margin: 0 auto !important;
}

/* FLECHA CHEVRON A LA DERECHA EN POSICIÓN ABSOLUTA */
.submit-btn .btn-chevron,
.btn-submit .btn-chevron {
  position: absolute !important;
  right: 22px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--brand-gold) !important;
  font-size: 1.15rem !important;
  transition: all 0.4s ease !important;
  z-index: 2;
}

/* 🌈 HOVER MULTICOLOR FLUIDO EN HOVER CON TEXTO EN BLANCO */
.submit-btn:hover,
.btn-submit:hover {
  background: linear-gradient(135deg, #F5C518 0%, #E04D39 50%, #06B6D4 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(6, 182, 212, 0.45) !important;
}

.submit-btn:hover .btn-text-centered,
.btn-submit:hover .btn-text-centered,
.submit-btn:hover span,
.btn-submit:hover span {
  color: #ffffff !important;
}

.submit-btn:hover .btn-icon-circle,
.btn-submit:hover .btn-icon-circle {
  background: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.submit-btn:hover .btn-chevron,
.btn-submit:hover .btn-chevron {
  color: #ffffff !important;
  transform: translateY(-50%) translateX(4px) !important;
}

/* 📱 RESPONSIVE DESIGN */
@media (max-width: 768px) {
  body { padding: 0; }
  .curtain-left, .curtain-right { width: 35px; }
  .mural-element, .music-element { display: none; }
  .app-header { padding: 25px 12px 12px; }

  .main-container {
    padding: 20px 12px;
    border-radius: 20px;
    width: 96%;
  }

  .workshop-pills-wrapper {
    gap: 6px;
    padding: 5px;
    width: 100%;
  }

  .workshop-pill-btn {
    font-size: 0.86rem;
    padding: 8px 8px;
    gap: 6px;
    min-width: 0;
  }

  .workshop-pill-btn .pill-icon-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.88rem;
  }

  .taller-selected-badge { padding: 10px 20px; font-size: 0.95rem; }
  .form-row { grid-template-columns: 1fr; }
  .submit-btn, .btn-submit { font-size: 1rem; }
}

/* ==========================================================================
   🃏 TARJETA INFORMATIVA DINÁMICA DE TALLERES (GLASSMORPHIC PREMIUM)
   ========================================================================== */
.workshop-detail-card {
  margin-top: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.workshop-detail-card.theme-musica {
  border-color: #06B6D4;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.12);
}

.workshop-detail-card.theme-muralismo {
  border-color: #d97706;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.12);
}

.workshop-detail-card.theme-serigrafia {
  border-color: #059669;
  background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
  box-shadow: 0 12px 35px rgba(5, 150, 105, 0.12);
}

.workshop-detail-card.theme-aerosol {
  border-color: #7c3aed;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.12);
}

.detail-card-header {
  margin-bottom: 18px;
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 14px;
}

.detail-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.theme-musica .detail-badge-tag {
  background: #cffaff;
  color: #0891b2;
}

.theme-muralismo .detail-badge-tag {
  background: #fef3c7;
  color: #d97706;
}

.theme-serigrafia .detail-badge-tag {
  background: #d1fae5;
  color: #059669;
}

.theme-aerosol .detail-badge-tag {
  background: #ede9fe;
  color: #7c3aed;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 4px;
}

.detail-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  font-style: italic;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.detail-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.theme-musica .detail-item {
  background: #ffffff;
  border-color: #cffaff;
}

.theme-muralismo .detail-item {
  background: #ffffff;
  border-color: #fef3c7;
}

.theme-serigrafia .detail-item {
  background: #ffffff;
  border-color: #d1fae5;
}

.theme-aerosol .detail-item {
  background: #ffffff;
  border-color: #ede9fe;
}

.detail-item.full-width {
  grid-column: 1 / -1;
}

.detail-icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.theme-musica .detail-icon-box {
  background: #cffaff;
  color: #0891b2;
}

.theme-muralismo .detail-icon-box {
  background: #fef3c7;
  color: #d97706;
}

.theme-serigrafia .detail-icon-box {
  background: #d1fae5;
  color: #059669;
}

.theme-aerosol .detail-icon-box {
  background: #ede9fe;
  color: #7c3aed;
}

.detail-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.detail-text-box strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 2px;
  font-weight: 800;
  text-align: left;
}

.detail-text-box span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  text-align: left;
}

.detail-description-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-left: 4px solid #94a3b8;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 16px;
}

.theme-musica .detail-description-box {
  background: #ecfeff;
  border-left-color: #0891b2;
}

.theme-muralismo .detail-description-box {
  background: #fffbe6;
  border-left-color: #d97706;
}

.theme-serigrafia .detail-description-box {
  background: #ecfdf5;
  border-left-color: #059669;
}

.theme-aerosol .detail-description-box {
  background: #f5f3ff;
  border-left-color: #7c3aed;
}

.description-star-icon {
  font-size: 1.1rem;
  margin-top: 2px;
}

.theme-musica .description-star-icon { color: #0891b2; }
.theme-muralismo .description-star-icon { color: #d97706; }
.theme-serigrafia .description-star-icon { color: #059669; }
.theme-aerosol .description-star-icon { color: #7c3aed; }

.detail-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.82rem;
}

.cupos-tag {
  font-weight: 800;
  color: #dc2626;
  background: #fee2e2;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-tag {
  color: #64748b;
  font-weight: 600;
}

