/* --- FONDO Y FUENTE GENERAL --- */
body {
    /* Aquí añadimos la foto de fondo con el filtro oscuro */
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('img/ets2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* --- CINTA DE NOTICIAS DESLIZANTE --- */
.cinta-noticias {
    background-color: #000000;
    color: #888888;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-texto {
    display: inline-block;
    animation: mover-noticias 45s linear infinite; 
}

@keyframes mover-noticias {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* --- CABECERA Y MENÚ PRO (3 COLUMNAS CENTRADAS) --- */
.cabecera-principal {
    background: linear-gradient(to bottom, #151515, #050505);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #ff7700; /* Naranja premium */
    position: relative;
    z-index: 10;
}

/* Zona izquierda (Únete a nuestra VTC) */
.header-izq {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.texto-unete-header {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Zona central (Logo) */
.logo-cabecera {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-cabecera h2 {
    color: #ffffff;
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.punto-naranja {
    color: #ff7700;
}

/* Zona derecha (Menú) */
.menu-principal {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px; 
}

.menu-principal a {
    color: #aaaaaa; 
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.menu-principal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #ff7700;
    transition: width 0.3s ease;
}

.menu-principal a:hover {
    color: #ffffff;
}

.menu-principal a:hover::after {
    width: 100%;
    left: 0;
}

.menu-principal a.activo {
    color: #ffffff;
}

.menu-principal a.activo::after {
    width: 100%;
    left: 0;
}

/* BOTÓN DE UNIRSE EN MENÚ */
.menu-principal a.btn-menu {
    background: #ff7700;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(255, 119, 0, 0.2);
    transition: all 0.3s ease;
}

.menu-principal a.btn-menu::after {
    display: none; 
}

.menu-principal a.btn-menu:hover {
    background: #ff9933;
    box-shadow: 0px 6px 20px rgba(255, 153, 51, 0.6);
    transform: translateY(-2px);
}

/* BOTÓN DE DISCORD EN EL MENÚ */
.menu-principal a.btn-discord {
    background: #5865F2; 
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0px 4px 10px rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
}

.menu-principal a.btn-discord::after {
    display: none; 
}

.menu-principal a.btn-discord:hover {
    background: #4752C4; 
    box-shadow: 0px 6px 20px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

/* --- ZONA PRINCIPAL --- */
main {
    text-align: center;
}

/* --- PORTADA (HERO) --- */
.portada-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.portada-texto {
    width: 50%;
    text-align: left;
}

.portada-texto h3 {
    color: #ff7700;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.titulo-gigante {
    font-size: 85px; 
    font-weight: 900;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -2px;
}

.portada-texto p {
    color: #999999;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 25px;
    max-width: 480px;
}

.portada-foto {
    width: 45%;
}

.portada-foto img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid #1a1a1a;
}

/* --- BOTONES DE LA PORTADA --- */
.botones-portada {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-naranja {
    background-color: #ff7700;
    color: #ffffff;
    box-shadow: 0px 4px 15px rgba(255, 119, 0, 0.3);
}

.btn-naranja:hover {
    background-color: #ff9933;
    box-shadow: 0px 6px 20px rgba(255, 153, 51, 0.6);
    transform: translateY(-2px);
}

/* BOTÓN DE DISCORD EN PORTADA */
.btn-discord-portada {
    background-color: #5865F2;
    color: #ffffff;
    box-shadow: 0px 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord-portada:hover {
    background-color: #4752C4;
    box-shadow: 0px 6px 20px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.btn-oscuro {
    background-color: rgba(255,255,255,0.05);
    color: #cccccc;
    border: 1px solid #333333;
}

.btn-oscuro:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: #555555;
    transform: translateY(-2px);
}

/* --- DATOS PORTADA --- */
.stats-portada {
    margin-top: 60px;
    display: flex;
    gap: 50px;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

.stats-portada h4 {
    color: #666666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
}

.stats-portada p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* --- LA FLOTA EN CIFRAS --- */
.seccion-flota {
    /* Hecho semitransparente para ver el camión de fondo */
    background-color: rgba(13, 13, 13, 0.6);
    padding: 80px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.contenedor-flota {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.subtitulo-seccion {
    font-size: 16px;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.fila-cifras {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.cifra-box {
    background-color: #111111;
    border: 1px solid #222222;
    padding: 30px;
    width: 22%;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cifra-box:hover {
    border-color: #ff7700;
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
}

.cifra-label {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.cifra-numero {
    color: #ffffff;
    font-size: 40px;
    font-weight: 900;
    margin: 0;
}

/* --- SECCIÓN OPERADORA --- */
.seccion-operadora {
    /* Hecho transparente para ver el camión de fondo */
    background-color: transparent;
    padding: 100px 0;
}

.contenedor-operadora {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.operadora-texto {
    width: 45%;
    text-align: left;
}

.etiqueta-pequena {
    color: #ff7700;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.operadora-texto h2 {
    font-size: 50px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.texto-naranja {
    color: #ff7700;
}

.desc-operadora {
    color: #999999;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 30px;
    max-width: 450px;
}

.operadora-grid {
    width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.caracteristica {
    text-align: left;
}

.caracteristica h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    border-bottom: 1px solid #222222;
    padding-bottom: 12px;
}

.numero-naranja {
    color: #ff7700;
    margin-right: 8px;
    font-size: 14px;
}

.caracteristica p {
    color: #888888;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- CINTA DE PELIGRO --- */
.cinta-peligro {
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(
        -45deg,
        #ff7700,
        #ff7700 15px,
        #0a0a0a 15px,
        #0a0a0a 30px
    );
}

/* --- SECCIÓN UNIRSE --- */
.seccion-unirse {
    /* Hecho semitransparente para ver el camión de fondo */
    background-color: rgba(13, 13, 13, 0.6);
    padding: 100px 0;
}

.contenedor-unirse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unirse-texto {
    text-align: left;
}

.unirse-texto h2 {
    font-size: 55px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.desc-unirse {
    color: #888888;
    margin-top: 20px;
    font-size: 15px;
}

/* ORDENAMOS LOS DOS BOTONES JUNTOS */
.unirse-boton {
    display: flex;
    gap: 20px; 
}

.btn-naranja-grande {
    background-color: #ff7700;
    color: #ffffff;
    padding: 20px 45px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px rgba(255, 119, 0, 0.4);
}

.btn-naranja-grande:hover {
    background-color: #ff9933;
    box-shadow: 0px 8px 35px rgba(255, 153, 51, 0.6);
    transform: translateY(-3px);
}

/* BOTÓN GIGANTE DE DISCORD ABAJO */
.btn-discord-grande {
    background-color: #5865F2; 
    color: #ffffff;
    padding: 20px 45px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord-grande:hover {
    background-color: #4752C4;
    box-shadow: 0px 8px 35px rgba(88, 101, 242, 0.6);
    transform: translateY(-3px);
}

/* --- PIE DE PÁGINA --- */
.pie-pagina {
    background-color: #050505;
    padding: 70px 0 20px 0;
    font-size: 13px;
}

.contenedor-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 50px;
}

.footer-info {
    width: 35%;
    text-align: left;
}

.footer-info h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-sub {
    color: #555555;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.footer-desc {
    color: #777777;
    line-height: 1.7;
    margin: 20px 0;
}

.footer-email {
    color: #ff7700;
    text-decoration: none;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-links h4 {
    color: #555555;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    color: #555555;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-online {
    display: flex;
    align-items: center;
    gap: 8px;
}

.punto-verde {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00cc00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00cc00;
}

/* --- FORMULARIO DE REGISTRO --- */
.main-registro {
    padding: 60px 20px;
    /* Hecho transparente para ver el camión de fondo */
    background-color: transparent;
}

.contenedor-formulario {
    max-width: 600px;
    margin: 0 auto;
    background-color: #111111;
    padding: 40px;
    border: 1px solid #222;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    text-align: left;
}

.contenedor-formulario p {
    color: #888;
    margin-bottom: 30px;
    font-size: 14px;
}

.grupo-input {
    margin-bottom: 20px;
}

.grupo-input label {
    display: block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.grupo-input input, 
.grupo-input select, 
.grupo-input textarea {
    width: 100%;
    padding: 12px;
    background-color: #050505;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    border-radius: 3px;
    box-sizing: border-box;
    transition: 0.3s;
}

.grupo-input input:focus, 
.grupo-input select:focus, 
.grupo-input textarea:focus {
    outline: none;
    border-color: #ff7700;
}