#boton_examenes {
    display: inline-block;
    box-sizing: border-box;
    
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border: var(--border);
    background: transparent;
    text-decoration: none;
    color: var(--color_p);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 16px;
}

#boton_examenes:hover {
    color: black;
    background: white;
}

#inicio {
    background: var(--background_div);
}

#inicio h1, #inicio p, #inicio #ruta a {
    color: var(--color_p);
}

 /* ARRIBA EN EL TITULO */
#contenido {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--fondo);
}

#imagen_inicio {
	pointer-events: none;
	user-select: none;
	width: 100%;
	position: absolute;
}

#imagen_dron_inicio {
	position: absolute;
	top: 6rem;
	left: 55rem;
	width: 45rem;
}



/** SECCION */
#seccion {
	padding: 4rem 15rem 4rem 15rem;
	gap: 4rem;
	color: white;
	border-top: var(--border);
	display: flex;
	flex-direction: row;
}

#imagen_dron {
    width: 50%;
}

#imagen_dron img {
    position: sticky;
    top: 5rem;
    width: 100%;
}

#descripcion_dron {
    width: 50%;
    color: var(--color_p);
    font-size: 1.3rem;
}

#descripcion_dron ul {
    list-style: none;
}

#descripcion_dron ul li {
    margin: 0.5rem 0;
}




/* VUELOS */
#vuelos {
    position: relative;
    padding: 4rem 15rem;
    
    display: flex;
    flex-direction: row;
    gap: 1rem;

    overflow-x: auto;
    overflow-y: hidden; /* opcional: para ocultar scroll vertical si se genera */
    white-space: nowrap; /* asegura que no se rompa en múltiples líneas */
    scroll-behavior: smooth; /* opcional: para un scroll más suave */
}

.vuelo_usuario {
    flex: 0 0 auto; /* evita que los elementos se encogen o crezcan, mantiene tamaño fijo */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 16px;
    border: var(--border);
    width: 30rem;
    height: 20rem;
    overflow: hidden;
    text-decoration: none;
}

.imagen_articulo {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.usuario {
    color: var(--color_p);
    gap: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    background: linear-gradient(to top, var(--background_div) 10%, transparent 100%);
}



/* RESPONSIVE */
@media (max-width: 800px) {
    #texto_inicio {
        margin: 1rem;
    }
    
    #seccion {
        flex-direction: column;
        padding: 1rem;
    }
    
    #imagen_dron {
        width: 100%;
    }
    
    #descripcion_dron {
        width: 100%;
    }
    
    #texto {
        width: 100%;
    }
    
    #eas {
        display: none;
    }
    
    #info_texto {
        display: none;
    }
    
    #flota_drones {
        grid-template-columns: repeat(1, 1fr); /* Tres columnas iguales */
    }
    
    #vuelos {
        padding: 1rem;
    }
}