#formulario_eas {
    margin-top: 1rem;
}

#formulario_eas label {
    color: var(--color_p);
    font-size: 1.3rem;
}

.piloto-item, .dron-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px 5px 10px;
    margin: 5px 0;
    border-radius: 0.5rem;
    border: solid #727272 1px;
    background: var(--background_div);
    color: var(-color_p);
}

.dron-item button, .piloto-item button {
    color: white;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e84444;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: var(--border);
}

.dron-item button:hover, .piloto-item button:hover {
    background: #b63030;
}

.dron-item button i, .piloto-item button i {
    display: flex;
    justify-content: center;
    align-items: center;
}

#eas {
    border-radius: 0.5rem;
    border: var(--border);
    margin-top: 5rem;
    background: white;
    padding: 2rem;
}

.agregar {
    background: var(--background_div);
    margin-top: 1rem;
    border: var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
}

#agregar_dron {
    gap: 1rem;
    display: flex;
    flex-direction: row;
}

#agregar_dron div {
    width: 50%;
}


.boton_formulario {
    text-align: center;
    display: block;
    padding: 0.5rem 1rem;
    border: var(--border);
    background: transparent;
    text-decoration: none;
    color: var(--color_p);
    font-weight: 900;
    font-size: 1.5rem;
    box-sizing: border-box;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.boton_formulario:hover {
    color: black;
    background: white;
}

 /* ARRIBA EN EL TITULO */
#contenido {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--fondo);
}


#seccion {
	padding: 0 15rem 4rem 15rem;
}



/** TEXTO DEFAULT */
#texto_inicio {
    margin: 0 15rem;
    position: relative;
    z-index: 9999;
}

#texto_inicio h2 {
    color: var(--color_p);
    margin-top: 4rem;
    font-size: 2.5rem;
}

#texto_inicio p {
    font-size: 2rem;
    color: #8e8e8e;
    margin-bottom: 1rem;
}
 
 /* TEXTO */
 ul {
     list-style: none;
 }
 
#contenido_texto {
    padding: 0 15rem 4rem 15rem;
    display: flex;
    flex-direction: row;
    
    position: relative;
}


ol {
  padding-left: 1.5em; /* o el valor que quieras para la sangría */
}

#texto {
    width: 100%;
	padding: 0 0 10rem 0;
	color: #3A3617;
}

#texto h2 {
    text-decoration: underline;
    color: white;
	font-size: 2.2rem;
	margin-right: 1rem;
}

#texto h3 {
    margin-top: 1rem;
    color: white;
	font-size: 2rem;
	margin-right: 1rem;
}


#texto p {
    color: black;
	font-size: 1.5rem;
}

b {
    color: orange;
	font-size: 1.5rem;
	margin-top: 6rem;
}

#texto ul li {
    color: black;
	font-size: 1.5rem;
	margin-right: 1rem;
}

.caja_resumen {
    width: 6rem;
}

table {
    width: 100%;
}

td, th {
    font-size: 1rem;
  vertical-align: top;    /* Alinea arriba */
  text-align: left;       /* Alinea a la izquierda */
  padding: 0.5rem;
  background: #eaeaea;
  color: black;
}


/* RESPONSIVE */
@media (max-width: 600px) {
	#inicio {
		margin-top: 12rem;
	}
	
	#imagen_inicio {
    	display: none;
    }

	#inicio h1 {
		font-size: 10rem;
	}

	#imagen_inicio {
		height: 100%;
	}
	
	#imagen_fondo_uno {
    	display: none;
    }

    #imagen_fondo_dos {
        display: none;
    }

}