*{ /*Reseteo o normalizacion de margenes y paddings predeterminados*/
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Oxygen", sans-serif;
}
:root{
    --color1:#334960;
    --color2:#F2F2F2;
    --color3:#44A1F2;
    --color4:#99A4B0;   
}
#contenedor{
    width: 100%;
    height: 110vh;  
}
header{     
    background-color: var(--color1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding:20px;
    /*posicionamiento fijo*/
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:100;  
}
header a img{
    height: 60px;   
}
nav{
    padding-right: 40px;
    font-size: 0.8em;
}
#menu,#redes{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;        
}
#menu li a, #redes li a{
    text-decoration: none;
    padding:10px;
    color:var(--color4)
}
#menu li a:hover,#redes li a:hover{
    color:var(--color2);
}
h5{
    color:var(--color1);
    margin-top: 115px;    
    margin-left:15px;
}
main{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border:1px solid grey;
    margin-bottom:10px          
}
section{
    width:65%;    
    text-align: center;      
}
section article{
    width:90%;    
    margin:5px auto;
}
section article img{
    max-width: 90%;
}
section article p{
    max-width: 90%;    
    margin: auto;
    padding: 5px;
    font-size: 0.8em;
    font-style: italic;     
}
section article h2{
    /*posicionamiento adhesivo*/
    position:sticky;
    top:100px;
    background-color: var(--color2);
    z-index: 20;
    padding: 1px 5px;    
}
aside{
    width: 30%;
    text-align: center;    
}
aside img{
    max-width: 70% ;
    margin-bottom: 10px;
}
footer{  
    background-color: var(--color1);
    color:var(--color2);    
    font-size: 0.8rem;  
}
footer h4{
    padding:10px 5px;
    text-align: center;   
}
footer div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    margin:2px;
}
address ul{    
    padding:2px 15px;
}
nav p{
    text-align: center;
}
/*Videos responsivos*/
/*video.html y destino.html*/
.video-responsive{ /*contenedor del video*/
    position: relative;/* Muy importante para posicionar el iframe o etiqueta video */
    height: 0;/* Se establece en 0 para que la altura sea determinada por el padding */
    padding-bottom: 56.25%;/* Esto crea el espacio vertical 16:9 */
    border:1px solid var(--color3);    
}
.video{
    position: absolute;/* El iframe se posiciona de forma absoluta dentro del contenedor */
    top:0;
    left:0;
    width: 100%;
    height: 100%; /* El iframe o etiqueta video ocupa todo el espacio definido por el padding */
}
/*Video de fondo*/
#video_fondo{
    /* min-width: 100%;
    min-height: 100%;
    width:auto;
    height: auto; */
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    opacity: 0.9;    
}
/*texto de fondo*/
#contenido{
    /*main ya tiene flex box centrado*/
   width:100%;      
   z-index: 10;   
}
.blanco{color:var(--color2)}
main #texto{
    width:80%;    
    padding:10px;  
    z-index: 50;
    color:var(--color2);
    text-align:justify;
}
.fijo{
    position: fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:100;  
}
h3{
    color:rgb(255, 0, 0);
}
.informacion{
    padding: 1%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 10%;
    gap: 7%;
}
.info1{
    width: 20%;
    text-align:justify;
}
.info2{
    width: 30%;
    margin-bottom: 4%;
}
.info2 form label{
    color: #4d4d4d;
    margin-left: 2%;
}
.info2 form input, textarea{
    width: 90%;
    padding: 2%;
    margin-left: 2%;
    margin-bottom: 4%;
}
.info2 form textarea{
    padding: 3%;
    color: #000000;
    margin-bottom: 2%;
}
.btn{
    color: white;
    background-color: #4d4d4d;
}
.btn:hover{
    background-color: #ffffff;
    color: black;
}

