/* Estilos específicos para la página de contratación */
@import url('styles.css'); /* Importa los estilos generales */

.contratar-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

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

.contratar-header {
    text-align: center;
    margin-bottom: 60px;
}

.contratar-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.contratar-header p {
    color: #a8b2d1;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.plan-seleccionado {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.plan-seleccionado h2 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 10px;
}

.plan-seleccionado .plan-nombre {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 15px 0;
}

.plan-seleccionado .plan-precio {
    font-size: 2rem;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.proceso-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.proceso-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.proceso-numero {
    width: 40px;
    height: 40px;
    background: #00ff88;
    color: #0a0e27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.proceso-card i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.proceso-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.proceso-card p {
    color: #a8b2d1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.formulario-contratacion {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.formulario-contratacion h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #a8b2d1;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.terms-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: #a8b2d1 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: #00ff88;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-contratar {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0e27;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contratar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.btn-contratar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-volver {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-volver:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(-5px);
}

.requisitos {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.requisitos h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requisitos ul {
    list-style: none;
    padding: 0;
}

.requisitos li {
    color: #a8b2d1;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requisitos li i {
    color: #00ff88;
    width: 20px;
}

.whatsapp-contacto {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 15px;
}

.whatsapp-contacto p {
    color: white;
    margin-bottom: 15px;
}

.whatsapp-contacto a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-contacto a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
/* Estilos adicionales para contratar.html */
.info-adicional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.info-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #a8b2d1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-nota {
    text-align: center;
    color: #a8b2d1;
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
}

.form-nota i {
    color: #00ff88;
    margin-right: 5px;
}

.plan-seleccionado {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.plan-seleccionado h2 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-seleccionado .plan-nombre {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 15px 0;
}

.plan-seleccionado .plan-precio {
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.form-group i {
    color: #00ff88;
    width: 20px;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .plan-seleccionado .plan-nombre {
        font-size: 1.8rem;
    }
    
    .info-adicional {
        grid-template-columns: 1fr;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .plan-seleccionado .plan-nombre {
        font-size: 2rem;
    }
    
    .proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .formulario-contratacion {
        padding: 20px;
    }
    
    .checkbox-label {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contratar-header h1 {
        font-size: 2rem;
    }
    
    .plan-seleccionado .plan-nombre {
        font-size: 1.5rem;
    }
    
    .plan-seleccionado .plan-precio {
        font-size: 1.5rem;
    }
}