#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: 0.5rem;
}

#boton_examenes:hover {
    color: black;
    background: white;
}


 /* 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;
}

video {
    margin-bottom: 2rem;
}

#seccion {
     border-top: var(--border);
	padding: 0 0 4rem 15rem;
	color: white;
}

.imagen_servicio {
	width: 27rem;
    position: absolute;
    top: 3rem;
    left: 10rem;
    z-index: 9999;
    transform: rotate(-5deg);
    user-select: none;
    pointer-events: none;
}

.servicio {
	overflow: hidden;
	position: relative;
	border-radius: 0.5rem;
	border: solid rgb(30, 30, 30) 1px;
	background: rgb(15, 15, 15);
	
	color: #ffb357;

	display: flex;
	flex-direction: column;

	width: 100%;
}

.servicio_arriba {
	height: 13rem;
    padding: 2rem;
	position: relative;
}

.servicio_arriba .row {
	display: flex;
	justify-content: center;
	align-items: center;
}

.servicio_arriba h2 {
    font-size: 1.6rem;
	margin-bottom: 1rem;
}

.servicio_arriba p {
	width: 60%;

	position: relative;
	font-size: 1.3rem;
    z-index: 999999;
    color: white;
}

.servicio_abajo {
	display: flex;
	align-items: center;
	padding: 0 2rem 2rem 2rem;
}

.servicio a {
	bottom: 0rem;
	left: 0rem;

	width: 100%;
	overflow: hidden;
	position: relative;
	background: transparent;
	border: solid rgb(255, 255, 255) 1px;
	z-index: 9999999;
	border-radius: 0.5rem;
	font-size: 1.3rem;
	padding: 0.7rem;
	text-decoration: none;
	color: rgb(255, 255, 255);
	font-weight: bold;
}

.servicio a:hover {
	color: black;
	background: rgb(255, 255, 255);
}



/** TEXTO DEFAULT */
#texto_inicio {
    position: relative;
    z-index: 9999;
}

#texto_inicio h2 {
    color: var(--color_p);
    font-size: 2.5rem;
}

#texto_inicio p {
    font-size: 2rem;
    color: #8e8e8e;
    margin-bottom: 1rem;
}
 
 /* TEXTO */
 ul {
     list-style: none;
 }
 
#contenido_texto {
    display: flex;
    flex-direction: row;
    
    position: relative;
}

#info_texto {
    display: block;
    padding: 4rem 15rem 4rem 4rem;
    width: 30%;
    border: solid #727272 1px;
    border-width: 0 0 0 1px;
    margin: 0 0 10rem 0;
}

#info_contenido {
    position: sticky;
    top: 7rem;
}

.oculto {
    width: 3% !important;
}

#info_texto button {
    color: var(--color_p);
    background: transparent;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: none;
    margin-bottom: 1rem;
    cursor: pointer;
}

#info_texto h4 {
    font-size: 2.2rem;
    color: var(--color_p);
    margin-bottom: 1rem;
    border-bottom: var(--border);
}

#info_texto ul, li {
    margin: 1.5rem 0;
}

#info_texto ul, li a {
    font-size: 1.5rem;
    color: rgb(146, 146, 146);
    text-decoration: none;
}

ol {
  padding-left: 1.5em; /* o el valor que quieras para la sangría */
}

#info_texto ol, li {
    font-size: 1.5rem;
    color: var(--color_p);
}

#texto {
    padding-top: 4rem;
    margin-right: 4rem;
    width: 70%;
	color: #3A3617;
}

#texto h2 {
    text-decoration: underline;
    color: var(--color_p);
	font-size: 2.2rem;
}

#texto h3 {
    margin-top: 1rem;
    color: var(--color_p);
	font-size: 2rem;
	margin-right: 1rem;
}


#texto p {
    color: var(--color_p);
	font-size: 1.3rem;
}

#texto b {
    color: orange;
	font-size: 1.5rem;
	margin-top: 6rem;
}

#texto ul li {
    color: var(--color_p);
	font-size: 1.3rem;
	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: black;
  color: white;
}








/* SOBRE SSUAV */
#flota_drones {
    margin-top: 1rem;
    display: grid;
    grid-template-rows: repeat(1, 1fr); /* Dos filas iguales */
    grid-template-columns: repeat(3, 1fr); /* Tres columnas iguales */
    gap: 1rem; 
}

.dron {
    border: var(--border);
    background: var(--background_div);
    border-radius: 0.5rem;
    padding: 1rem;
}

.imagen_dron {
    width: 100%
}

.boton_dron {
    margin-top: 1rem;
    cursor: pointer;
    width: 100%;
    border: var(--border);
    background: transparent;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color_p);
    font-weight: 900;
    font-size: 1.5rem;
    box-sizing: border-box;
    display: flex;
    text-decoration: none;
    gap: 0.5rem;
    text-align: left;
    align-items: center;
}

.boton_dron:hover {
    background: white;
    color: black;
}


#eas {
    border: var(--border); 
    margin-top: 2rem; 
    background: var(--background_div); 
    padding: 2rem; 
    border-radius: 0.5rem;
}










/* RESPONSIVE */
@media (max-width: 800px) {
    #texto_inicio {
        margin: 1rem;
    }
    
    #seccion {
        padding: 1rem;
    }
    
    #texto {
        width: 100%;
    }
    
    #eas {
        display: none;
    }
    
    #info_texto {
        display: none;
    }
    
    #flota_drones {
        grid-template-columns: repeat(1, 1fr); /* Tres columnas iguales */
    }
}