body{
    margin: 0px;
    background-image: url("images/fondoporgeminis.png");
    background-size: cover; 
    /* Mantiene la imagen fija al hacer scroll */
    background-attachment: fixed; 
    /* Asegura que el fondo se centre */
    background-position: center;
    /* Asegura que el body ocupe al menos el alto de la pantalla */
    min-height: 100vh;

    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/** Aca esta todo en orden el stile de la pagina
de arriba hacia abajo**/
header{
    display: flex;
    background-color:rgba(0, 0, 0, 0.7); /* El 0.8 le da opacidad, una transparencia, los primeros 3 numeros son el color, luego la opacidad de este*/
    justify-content: center;
    align-items: center;
    padding: 0;
}

main{
    padding: 0px 100px;
}

nav li{
    padding: 20px 0px;
}





nav ul{
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a{
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover{
    color: rgb(7, 177, 7);
    transform: scale(1.05);
}



#Sprin{
    margin-top: 50px;
    border-radius: 15px;
    padding: 60px;
    max-width: 950px; /* Evita que crezca infinito hacia los lados */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.7); /* Sombra suave para dar profundidad */
    border: none; 

}

.aventura{
    width: 700px;
    border: 1px;
    border-radius: 15px;
}

#PasosV{
    margin-top: 80px;
    border: none;
    border-radius: 15px;
    padding: 15px;
    width: fit-content;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
    margin-left: auto;
    margin-right: auto; /* con ambas lineas del margin left y right hacemos que quede al medio de la pagina*/
}

#PasosCont{
    margin-top: 50px;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
    width: fit-content;
    border-left: 3px rgb(7, 177, 7) solid;
    margin-left: auto;
    margin-right: auto;
}

#PasosCont ol{
    padding: 20px 40px;

}

#PasosCont li{
    font-size: 18px;
}

#PasosCont a {
    display: inline-block;
    background-color: #07b107;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 14px;
    transition: 0.3s;
}

#PasosCont a:hover {
    background-color: #058a05;
    transform: scale(1.05); /* Se agranda un poquito al tocarlo */
}


#FooterP1{
    background-color:rgba(0, 0, 0, 0.8);
    justify-content: center;
    margin-top: 80px;
}

.ListaFt{
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 10px 0px;
    justify-content: center;
}

.ListaFt li {
    color: white;
}

.ListaFt a{
    display: inline-block;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}
.ListaFt a:hover{
    color: #058a05;
    transform: scale(1.05);
}




/** PAGINA DE VIAJES**/


table {
    table-layout: fixed;
    width: 90%;
    margin: 10px auto;
    border-collapse: collapse;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.7);
}

th {
    background-color: #07b107; 
    color: white;
    padding: 12px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #080808; /* Solo una línea abajo */
    text-align: center;
}

tr:hover {
    background-color: #a6dae7; 
    transform: scale(1.02);
    border: 1px;
    border-radius: 15px;
}

#PrinciViajes{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#TituloViajes{
    border:none;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center; 
    margin: 50px auto 20px auto;
}

#avion{
    margin-top: 50px;
    width: 900px;
}


#FooterViajes{
    margin-top: 90px;
    background-color: rgba(0, 0, 0, 0.8);
}

