/* ============================================
   COMUNIDAD VIVA - LANDING PAGE v2
   Stylesheet con Splash Screen
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   UTILITIES
   ============================================ */
.hidden {
    display: none !important;
}

.text-orange {
    color: #f97316;
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash-screen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 0.6s ease;
}

.splash-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a 0px,
        #1a1a1a 10px,
        #000 10px,
        #000 20px
    );
}

.splash-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 50%,
        #000 100%
    );
}

.splash-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.splash-glow-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(249, 115, 22, 0.1);
}

.splash-glow-2 {
    bottom: 80px;
    right: 40px;
    width: 192px;
    height: 192px;
    background: rgba(249, 115, 22, 0.1);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 48px 24px 96px;
    max-width: 700px;
    margin: 0 auto;
}

.splash-badge {
    display: inline-block;
    margin-bottom: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 8px 24px;
}

.splash-badge span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.splash-date {
    margin-bottom: 24px;
}

.splash-date-main {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.splash-date-sub {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
}

@media (min-width: 768px) {
    .splash-date-main {
        font-size: 4.5rem;
    }
    .splash-date-sub {
        font-size: 2.5rem;
    }
}

.splash-cta-box {
    background: #ea580c;
    transform: rotate(-2deg);
    padding: 16px 28px;
    margin-bottom: 32px;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.splash-cta-box h1 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .splash-cta-box h1 {
        font-size: 3.5rem;
    }
}

.splash-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* Splash Workshop Buttons */
.splash-workshops {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.splash-workshop-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.splash-workshop-btn:hover {
    border-color: #f97316;
    background: rgba(249, 115, 22, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.splash-workshop-btn:hover .splash-workshop-arrow {
    color: #f97316;
    transform: translateX(4px);
}

.splash-workshop-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fb923c;
}

.splash-workshop-info {
    flex: 1;
}

.splash-workshop-label {
    color: #fb923c;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.splash-workshop-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.splash-workshop-ministry {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.splash-workshop-note {
    color: #fdba74;
    font-size: 0.75rem;
    margin-top: 4px;
    font-style: italic;
}

.splash-workshop-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

/* ============================================
   FORMULARIO SECTION
   ============================================ */
.formulario-section {
    padding: 40px 24px 80px;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.formulario-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Formulario Header */
.formulario-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.btn-volver {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-volver:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.formulario-taller-info {
    flex: 1;
}

.taller-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.taller-titulo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.taller-instructor {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Toggle Buttons */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.toggle-buttons {
    background: rgba(255,255,255,0.05);
    padding: 6px;
    border-radius: 14px;
    display: inline-flex;
    gap: 6px;
}

.toggle-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(255,255,255,0.6);
}

.toggle-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.toggle-btn.active {
    background: #ea580c;
    color: #fff;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
}

/* Form Wrapper */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
}

@media (min-width: 768px) {
    .form-card {
        padding: 40px;
    }
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fb923c;
}

/* Form Grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}

.form-label-small {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.form-input,
.form-select {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-input:focus,
.form-select:focus {
    border-color: #f97316;
    outline: none;
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

/* Form Sections */
.form-section {
    margin-top: 20px;
}

.form-section-block {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
}

/* Checkbox */
.checkbox-group {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    accent-color: #f97316;
    cursor: pointer;
}

.checkbox-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    cursor: pointer;
}

/* Price Box */
.price-box {
    margin-top: 24px;
    padding: 18px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.price-label {
    color: rgba(255,255,255,0.7);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fb923c;
}

.price-total .price-value {
    font-size: 1.25rem;
    color: #fff;
}

.price-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-top: 6px;
}

/* Payment Info */
.payment-info {
    margin-top: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.payment-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.payment-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    margin-top: 24px;
    background: #ea580c;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3);
}

.submit-btn:hover {
    background: #f97316;
    transform: scale(1.02);
}

/* Attendees */
.attendees-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ea580c;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: #f97316;
}

.attendees-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.attendee-row {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 18px;
}

.attendee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.attendee-number {
    color: #fb923c;
    font-weight: 600;
    font-size: 0.875rem;
}

.remove-btn {
    color: #f87171;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #fca5a5;
}

.attendee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .attendee-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.attendee-instrumento {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 48px 24px;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-ministry {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.form-wrapper:not(.hidden) {
    animation: fadeIn 0.4s ease;
}

.splash-workshop-btn {
    animation: fadeIn 0.5s ease backwards;
}

.splash-workshop-btn:nth-child(1) { animation-delay: 0.1s; }
.splash-workshop-btn:nth-child(2) { animation-delay: 0.2s; }

.price-info-text {
    margin: 12px 0;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.price-info-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin: 4px 0;
}

/* ============================================
   COMPROBANTE / SUBIDA DE ARCHIVO
   ============================================ */
.comprobante-hint {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.file-upload-area {
    display: block;
    position: relative;
    cursor: pointer;
    border: 2px dashed rgba(249,115,22,0.4);
    border-radius: 14px;
    background: rgba(249,115,22,0.05);
    padding: 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.file-upload-area:hover {
    border-color: #f97316;
    background: rgba(249,115,22,0.1);
}

.file-upload-area.has-file {
    border-style: solid;
    border-color: rgba(249,115,22,0.5);
}

/* Ocultamos el input real; el label es la zona clickeable */
.comprobante-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fb923c;
}

.file-upload-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.file-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.file-preview-img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 10px;
    object-fit: contain;
}

.file-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
}

.file-change-hint {
    font-size: 0.75rem;
    color: #fb923c;
}

/* ============================================
   SPLASH WORKSHOP CON IMAGEN
   ============================================ */
.splash-workshop-adoracion {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.splash-workshop-image {
    width: 100%;
    height: 290px;
    overflow: hidden;
    position: relative;
}

.splash-workshop-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.splash-workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.splash-workshop-btn:hover .splash-workshop-image img {
    transform: scale(1.05);
}

.splash-workshop-adoracion .splash-workshop-info {
    padding: 20px 24px 24px;
}

.splash-workshop-detail {
    color: #fdba74;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.splash-workshop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.splash-workshop-meta span {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.splash-workshop-adoracion .splash-workshop-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

/* ============================================
   DETALLE DEL TALLER (header del formulario)
   ============================================ */
.taller-detalle {
    color: #fdba74;
    font-size: 0.8rem;
    margin-top: 6px;
}

/* ============================================
   DATOS BANCARIOS
   ============================================ */
.bank-details {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bank-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px 12px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}

.bank-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
}

.bank-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-align: right;
}

.bank-mono {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.copy-btn {
    flex-shrink: 0;
    background: rgba(249,115,22,0.15);
    color: #fb923c;
    border: 1px solid rgba(249,115,22,0.35);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(249,115,22,0.25);
}

.copy-btn.copied {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
    border-color: rgba(34,197,94,0.4);
}

/* ============================================
   PANTALLA DE CONFIRMACIÓN
   ============================================ */
.confirmacion-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    animation: fadeIn 0.5s ease;
}

.confirmacion-card {
    max-width: 520px;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 48px 32px;
}

.confirmacion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    animation: pulse 2.5s ease-in-out infinite;
}

.confirmacion-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.confirmacion-text {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 8px;
}

.confirmacion-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-bottom: 28px;
}

.confirmacion-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.confirmacion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.confirmacion-btn-wa {
    background: #25d366;
    color: #06251a;
}

.confirmacion-btn-wa:hover {
    background: #1fb457;
    transform: translateY(-1px);
}

.confirmacion-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
}

.confirmacion-btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ============================================
   ACCESIBILIDAD: FOCO VISIBLE
   ============================================ */
.form-input:focus-visible,
.form-select:focus-visible,
.submit-btn:focus-visible,
.toggle-btn:focus-visible,
.splash-workshop-btn:focus-visible,
.btn-volver:focus-visible,
.add-btn:focus-visible,
.copy-btn:focus-visible,
.confirmacion-btn:focus-visible,
.file-upload-area:focus-within {
    outline: 2px solid #fb923c;
    outline-offset: 2px;
}

/* ============================================
   OVERLAY DE CARGA (pantalla completa)
   ============================================ */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    animation: fadeIn 0.25s ease;
}

.loading-box {
    text-align: center;
    max-width: 340px;
}

.loading-spinner {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 5px solid rgba(249,115,22,0.2);
    border-top-color: #f97316;
    animation: spin 0.9s linear infinite;
}

.loading-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.loading-subtext {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   CUENTA REGRESIVA
   ============================================ */
.countdown-wrap {
    margin-bottom: 28px;
}

.countdown-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
    padding: 10px 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 12px;
}

.countdown-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fb923c;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    margin-top: 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   CTA PRINCIPAL (botón)
   ============================================ */
.splash-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.splash-cta-box:hover {
    transform: rotate(-2deg) scale(1.03);
    box-shadow: 0 24px 48px rgba(234,88,12,0.45);
}

.splash-cta-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.splash-cta-sub {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
}

@media (min-width: 768px) {
    .splash-cta-title {
        font-size: 3.25rem;
    }
}

/* ============================================
   TARJETAS: BADGE "CUPO LIMITADO" + CTA
   ============================================ */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.card-cta {
    display: inline-block;
    margin-top: 14px;
    background: #ea580c;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.splash-workshop-btn:hover .card-cta {
    background: #f97316;
    transform: translateX(3px);
}

/* ============================================
   CONTACTO (WhatsApp para dudas)
   ============================================ */
.splash-contacto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
}

.splash-contacto:hover {
    color: #fff;
    border-color: #25d366;
    background: rgba(37,211,102,0.1);
}

/* ============================================
   BOTÓN FIJO (STICKY)
   ============================================ */
.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 900;
    background: #ea580c;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    padding: 15px 32px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(234,88,12,0.5);
    animation: fadeIn 0.3s ease;
    transition: transform 0.2s ease, background 0.2s ease;
}

.sticky-cta:hover {
    background: #f97316;
    transform: translateX(-50%) translateY(-2px);
}

/* ============================================
   TARJETA COMBO (los dos talleres)
   ============================================ */
.splash-workshop-combo {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(234,88,12,0.08));
    border: 2px solid rgba(249,115,22,0.6);
}

.splash-workshop-combo:hover {
    border-color: #f97316;
    background: linear-gradient(135deg, rgba(249,115,22,0.28), rgba(234,88,12,0.12));
}

.combo-ribbon {
    display: block;
    background: #ea580c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 8px 12px;
}

.splash-workshop-combo .splash-workshop-info {
    padding: 20px 24px 24px;
}

.combo-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px;
}

.combo-price-now {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fb923c;
}

.combo-price-old {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
}

.combo-price-tag {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   BARRA DE OCUPACIÓN (% por taller)
   ============================================ */
.ocupacion {
    margin-top: 14px;
}

.ocupacion-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.ocupacion-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ocupacion-pct {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fb923c;
    font-variant-numeric: tabular-nums;
}

.ocupacion-bar {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
}

.ocupacion-fill {
    height: 100%;
    width: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    transition: width 0.9s ease;
}

/* Casi lleno: la barra se pone roja para más urgencia */
.ocupacion-fill.casi-lleno {
    background: linear-gradient(90deg, #f59e0b, #dc2626);
}
