:root {
    --brand-blue: #1469D9;
    --brand-orange: #FF6600;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #eef2f6;
    overflow-x: hidden;
}

.bg-brand-blue {
    background-color: var(--brand-blue);
}

.bg-brand-orange {
    background-color: var(--brand-orange);
}

.text-brand-blue {
    color: var(--brand-blue);
}

.text-brand-orange {
    color: var(--brand-orange);
}

/* Contenedor Principal */
#main-card {
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    z-index: 10;
}

/* Formas Decorativas */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    transition: all 1s ease;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    opacity: 0.4;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
    opacity: 0.3;
}

/* Pattern de fondo */
.bg-grid {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Animaciones de entrada */
.step-content {
    display: none;
    animation: fadeInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.step-content.active {
    display: flex;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Inputs y Botones Premium */
.custom-input {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: currentColor;
    background: white;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    outline: none;
}

.company-option {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f1f5f9;
}

.company-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(255, 102, 0, 0.2);
}

.company-option.selected {
    border-color: var(--brand-orange);
    background: #fffaf5;
}

/* Botón de Regreso Superior */
.back-home-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 50;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    transform: translateX(-5px);
}

/* Glassmorphism */
.glass-element {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-msg {
    font-size: 0.75rem;
    color: #ef4444;
    /* rojo tailwind */
    margin-top: 0.35rem;
    font-weight: 600;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 280px;
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    animation: slideIn .4s ease;
}


.toast.success {
    background: #e8f7ee;
    color: #1f7a4d;
}


.toast.error {
    background: #fdecea;
    color: #b3261e;
}


.hidden {
    display: none;
}

@keyframes slideIn {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}