.elementor-1436 .elementor-element.elementor-element-149f5a0{--display:flex;}/* Start custom CSS for container, class: .elementor-element-149f5a0 */:root {
    
    --primary-color: #0077b6;     /* Azul océano (confianza y limpieza) */
    --primary-hover: #005f94;     /* Azul más profundo para hover */
    --primary-light: #e0f2fe;     /* Celeste suave para fondos activos */
    --primary-focus: rgba(0, 119, 182, 0.15);
    
    --bg-color: #f0f7fa;          /* Fondo sutilmente azulado/frío */
    --card-bg: #ffffff;
    --text-color: #1e293b;        /* Azul pizarra oscuro para alta legibilidad */
    --text-light: #64748b;
    --border-color: #cbd5e1;       /* Bordes ligeramente más definidos */
    --radius: 12px;
    --transition: all 0.3s ease;
}

.fwrap {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 580px;
    margin: 40px auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.05); /* Sombra azulada sutil */
    color: var(--text-color);
    box-sizing: border-box;
}

.fwrap *, .fwrap *::before, .fwrap *::after {
    box-sizing: border-box;
}

/* BARRA DE PROGRESO DE ETAPAS */
.progress-container {
    max-width: 580px;
    margin: 0 auto 15px auto;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00b4d8, var(--primary-color)); /* Degradado celeste a azul */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   CONTROL DE PASOS (OCULTAR / MOSTRAR)
   ========================================================================== */
.fblk {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fblk.step-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ENCABEZADOS DE PASOS */
.fhd {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.fhd-num {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.fhd h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    flex-grow: 1;
}

.fhd .hl {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: #e0f7fa; /* Celeste pastel para destacar el paso actual */
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 500;
}

/* ==========================================================================
   FORMULARIOS E INPUTS TRADICIONALES (PASO 1)
   ========================================================================== */
.row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f.full {
    width: 100%;
}

.f label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.f label i {
    color: var(--primary-color);
    margin-right: 5px;
    width: 16px;
}

.f .req {
    color: #ef4444;
}

.f input[type="text"],
.f input[type="tel"],
.f input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.f input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px var(--primary-focus);
}

/* ==========================================================================
   DISEÑO DE OPCIONES (RADIOS ESTILIZADOS COMO BOTONES Y TARJETAS)
   ========================================================================== */
/* Paso 2: Lista vertical limpia */
.og {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Paso 3: Tarjetas de tiempo */
.cards-time-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Contenedor base de la opción */
.o, .o-list {
    position: relative;
    width: 100%;
}

/* Esconder el radio button nativo pero mantener la accesibilidad */
.o input[type="radio"], 
.o-list input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

/* El Label actúa como la tarjeta visual */
.o label, .o-list label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    background: #fff;
    gap: 15px;
    margin: 0; 
}

.o label i, .o-list label i {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
    width: 24px;
    text-align: center;
}

/* Estados Hover */
.o:hover label, .o-list:hover label {
    border-color: #93c5fd;     /* Borde azul claro al pasar el mouse */
    background-color: #f0fdf4; /* Tono muy suave de refresco */
    background-color: #f8fafc;
}

/* Estados Seleccionado (Checked) */
.o input[type="radio"]:checked + label,
.o-list input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-light); /* Fondo celeste clínico */
    color: var(--primary-hover);
}

.o input[type="radio"]:checked + label i,
.o-list input[type="radio"]:checked + label i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Focus visible para accesibilidad con teclado */
.o input[type="radio"]:focus-visible + label,
.o-list input[type="radio"]:focus-visible + label {
    box-shadow: 0 0 0 3px var(--primary-focus);
}

/* ==========================================================================
   BOTONES DE ACCIÓN (NAVEGACIÓN)
   ========================================================================== */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

/* Caso especial: primer paso solo tiene botón siguiente, lo empujamos a la derecha */
.fblk[data-step="1"] .step-actions {
    justify-content: flex-end;
}

.btn-next, .btn-prev, .sb-btn {
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

/* Botón Siguiente y Enviar */
.btn-next, .sb-btn {
    background-color: var(--primary-color);
    color: white;
}

.btn-next:hover, .sb-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

/* Botón Anterior */
.btn-prev {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid #cbd5e1;
}

.btn-prev:hover {
    background-color: #f1f5f9;
    color: var(--text-color);
    border-color: #94a3b8;
}

/* Responsivo en móviles */
@media (max-width: 480px) {
    .fwrap {
        margin: 10px;
        padding: 20px;
    }
    .fhd h3 {
        font-size: 1.1rem;
    }
    .o label, .o-list label {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}/* End custom CSS */