/* =========================================
   ESTILOS PÁGINA: CONDUCTORES
   ========================================= */

body {
    background-color: var(--premium-bg);
    /* Degradado de fondo sutil rojo/negro */
    background-image: radial-gradient(circle at top right, rgba(236, 28, 39, 0.1) 0%, #000 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.driver-header {
    padding-top: 120px;
    padding-bottom: 40px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.driver-header h1 {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.driver-header p { color: #94a3b8; max-width: 600px; margin: 0 auto; }

/* --- CONTENEDOR PRINCIPAL --- */
.main-driver-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
    flex: 1; /* Para el sticky footer */
}

/* --- SECCIÓN SUPERIOR (SPLIT) --- */
.info-split {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.image-wrapper { flex: 1; }
.benefits-wrapper { flex: 1; }

/* IMAGEN CON MARCO NEÓN */
.neon-frame-driver {
    position: relative;
    padding: 3px;
    background: linear-gradient(45deg, var(--accent-red), var(--accent-cyan));
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(236, 28, 39, 0.2);
    transform: rotate(-1deg); /* Un toque rebelde */
    transition: 0.3s;
}

.neon-frame-driver:hover { transform: rotate(0deg) scale(1.02); }

.driver-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    filter: brightness(0.9) contrast(1.1); /* Look cinematográfico */
}

/* LISTA DE BENEFICIOS */
.tech-title {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 255, 255, 0.05);
    transform: translateX(10px);
}

.icon-zone { font-size: 2rem; }

.benefit-card h3 { color: white; margin-bottom: 5px; font-size: 1.1rem; }
.benefit-card p { color: #94a3b8; font-size: 0.9rem; line-height: 1.4; }

/* CAJA DE REQUISITOS */
.requirements-box {
    margin-top: 30px;
    padding: 20px;
    border-left: 3px solid var(--accent-red);
    background: linear-gradient(90deg, rgba(236, 28, 39, 0.05), transparent);
}

.requirements-box h4 {
    color: var(--accent-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.requirements-box ul { padding-left: 20px; color: #cbd5e1; }
.requirements-box li { margin-bottom: 5px; font-size: 0.9rem; }

/* --- FORMULARIO WIDE (ANCHO) --- */
.driver-form-section {
    margin-bottom: 50px;
}

.form-card-wide {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { font-size: 1.8rem; }

/* Botón Cyan para variar (Diferente al rojo de Anunciarme) */
.btn-full-cyan {
    width: 100%;
    background: var(--accent-cyan);
    color: #000; /* Texto negro para contraste */
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-full-cyan:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
    background: white;
}

/* Reutilizamos estilos de input del style.css o copiamos aquí si hace falta */
.cyber-form input, .cyber-form select, .cyber-form textarea {
    width: 100%;
    background: #030b1e;
    border: 1px solid #334155;
    padding: 12px;
    border-radius: 6px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}
.cyber-form label {
    display: block; color: #94a3b8; margin-bottom: 8px; font-size: 0.85rem; font-weight: 600;
}
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; margin-bottom: 20px; }


/* --- RESPONSIVE (MÓVIL) - SIN GRIDS, TODO FLEX --- */
@media (max-width: 900px) {
    .info-split {
        flex-direction: column; /* Foto arriba, texto abajo */
        gap: 30px;
    }
    
    .driver-header h1 { font-size: 2rem; }

    .neon-frame-driver { transform: rotate(0); width: 100%; }

    .form-card-wide { padding: 20px; }
    
    .form-row { flex-direction: column; gap: 0; }
    .form-row .form-group { margin-bottom: 15px; }
}