/* Estilos para Vista de Reclutamiento - IBS Soluciones */
/* Creado: Octubre 2025 */

/* ===== LAYOUT PRINCIPAL ===== */
.clFullBody {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    width: 100%;
    background: linear-gradient(135deg, var(--pColor) 0%, var(--sColor) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.3rem;
    color: #ffd700;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
#dvBodyContainer {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== CONTENEDOR DEL FORMULARIO ===== */
.registration-container {
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--pColor), var(--sColor));
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== FORMULARIO ===== */
.professional-form {
    padding: 40px 30px;
    background: white;
}

.form-row {
    margin-bottom: 25px;
}

.input-group {
    position: relative;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-label i {
    color: var(--pColor);
    font-size: 1.1rem;
}

.modern-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.modern-input:focus {
    outline: none;
    border-color: var(--pColor);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 52, 93, 0.1);
}

.modern-input::placeholder {
    color: var(--gray-500);
}

.modern-input:disabled {
    background: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ===== BOTÓN DE REGISTRO ===== */
.form-actions {
    margin-top: 30px;
    text-align: center;
}

.register-btn {
    background: linear-gradient(135deg, var(--pColor), var(--sColor));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(30, 52, 93, 0.3);
    min-width: 280px;
    justify-content: center;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 52, 93, 0.4);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn i {
    font-size: 1.3rem;
}

/* ===== FOOTER DEL FORMULARIO ===== */
.form-footer {
    margin-top: 25px;
    text-align: center;
}

.privacy-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.privacy-text i {
    color: var(--success);
}

/* ===== MENSAJE DE STATUS ===== */
.clRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#dvStatusText {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    text-align: center;
    margin: 20px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#dvStatusText h2 {
    color: var(--pColor);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

#dvStatusText p {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ===== BOTÓN DE WHATSAPP ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .professional-form {
        padding: 30px 20px;
    }
    
    .register-btn {
        min-width: 100%;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .registration-container {
        margin: 20px;
    }
    
    #dvStatusText {
        margin: 20px;
        padding: 20px;
    }

    #dvStatusText h2 {
        font-size: 1.6rem;
    }

    #dvStatusText p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-container {
        margin: 10px;
        border-radius: 15px;
    }

    .form-header {
        padding: 30px 20px;
    }
    
    .professional-form {
        padding: 20px 15px;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-button i {
        font-size: 1.8rem;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.registration-container {
    animation: fadeIn 0.6s ease-out;
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

