/* resources/css/aspirantes-premium.css */

/* Premium Card Styles */
.card-premium {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

/* Premium Form Elements */
.form-label-premium {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.form-input-premium {
    width: 100%;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 14px; /* Más compacto */
    font-size: 14px; /* Tamaño más cómodo */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input-premium:focus {
    background: white;
    border-color: #5b35c0;
    box-shadow: 0 0 0 4px rgba(91, 53, 192, 0.1);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Bar (Steps) - Corregido sin solapamiento */
.chevron-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 0; /* Eliminado margen negativo que causaba error */
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    position: relative;
    background: #e5e7eb;
    color: #6b7280;
    padding: 14px 10px 14px 35px;
    font-size: 10px;
    font-weight: 800;
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.step:first-child {
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
    padding-left: 15px;
    border-radius: 12px 0 0 12px;
}

.step:last-child {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 8% 50%);
    border-radius: 0 12px 12px 0;
}

.step.active {
    background: #5b35c0 !important;
    color: white !important;
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(91, 53, 192, 0.3);
}

.step.done {
    background: #4b5563 !important;
    color: white !important;
}

.step.done::after {
    content: ' ✓';
    opacity: 0.7;
}

/* Floating Buttons Area */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.btn-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.btn-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.btn-float .tooltip {
    position: absolute;
    right: 70px;
    background: #1e293b;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.btn-float:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.bg-whatsapp { background: #25d366; }
.bg-facebook { background: #1877f2; }

/* Icon backgrounds - Discretos */
.icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.06;
    transform: rotate(10deg);
    pointer-events: none;
    font-size: 70px !important;
}

/* Footer Premium */
.footer-premium {
    background: #1e293b;
    color: white;
    padding: 50px 40px;
    margin-top: 60px;
}
