
.contenedor{
width:100%;
margin: auto;
box-sizing: border-box;

font-family:Arial, Helvetica, sans-serif;
background-color:rgb(251, 251, 251);
}

header{
width: 0;  
padding: 0;
flex-wrap: wrap; 
}

nav{
display:flex;
justify-content: space-between;
text-align: center;
flex-wrap: wrap;
}
nav.menu{
align-items: center;
}

nav img{
width: 60px;
}

nav a{
text-decoration: none;
font-size:18px;
font-weight:bold;
color: black;
padding-right: 50px;
cursor: pointer;
}

nav a:hover{
text-decoration: underline;
}

.contenedor-portada{
position: relative;
display: inline-block;
margin-bottom: 40px;


}

.portada{
flex-wrap: wrap;
display:inline-block;
}
.contenedor-portada img{
width: 100%;
height: auto;

}

.texto-sobre{
position: absolute;
top: 50%;        /* centra verticalmente */
left: 50%;       /* centra horizontalmente */
transform: translate(-50%, -50%);
text-shadow: 2px 2px 3px rgba(0,0,0,0.4);
background-color: rgba(0, 0, 0, 0.6); /* opcional, para mejor contraste */
text-align: center;
width: 40%;
height: 60%;
}

.texto-sobre h1{
margin-top: 15px;
margin-bottom: 5px;
font-weight: bold;
font-size: 45px;
color: white;

}
.texto-sobre h5{
margin-top: 5px;
margin-bottom: 20px;
color: white;
font-size: 20px;
font-weight: normal;

}
hr{
height: 1.5px;
background-color:rgb(37, 163, 12) ;
}


.destinos{
display: flex;
justify-content: center;
margin: 20px;
flex-wrap: wrap;
}

.destinos a{
text-decoration: none;
border: 2px solid rgba(32, 92, 20);
display: flex;
margin-right: 60px;
padding: 10px 40px 10px 40px;
color: black;
border-radius: 3px;
background-color: white;
font-weight: bold;
font-size:20px;
cursor: pointer;
}
.destinos :first-child{
padding:10px 60px 10px 60px;
}
.destinos a:hover{
background-color:rgba(32, 92, 20) ;
color: white;
}

.mini-destinos{
display:flex;
justify-content: center;
}

.contenedor-imagen{
position: relative;
display:flex;
width: 30%;
max-width: 700px;
overflow: hidden;
padding: 30px;
flex-wrap: wrap;

}

.contenedor-imagen img {
    width:100%;
    height:100%;
    display: block;
    border: 2px solid black;
}   

.tex-so {
position: absolute;
top: 20%;
left: 8%;
right: 7%;
bottom: 34%;
color: white;
font-size: 20px;
text-align: center;
position: absolute;
background-color: rgba(0, 0, 0, 0.3);
}

.tex-so h2{
font-size: 40px;
font-weight: bold;
text-align:center;
margin-top: 10pxpx;
margin-bottom: 0px;
;
}

.tex-so p {
margin-left:10px ;
font-size: 17px;
text-align: start;


}

.tex-so p:nth-child(2){
height: 50px;
}

.mi-boton {
display: flex;
background-color: rgba(32, 92, 20);
margin-left: 12%;
transform: translate(60% );
cursor: pointer;
border: none;
border-radius: 5px;
}
.mi-boton a{
text-decoration: none;
text-align: center;
color: white;
font-size: 20px;
margin: 10px;
}

.mi-boton:hover{
background-color: rgb(0, 0, 0);
}

footer{
    border:none;
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top:20px ;
    border: 1px solid gray;
}

footer p{
    font-size: 20px;
    margin-left: 38%;
}

#redes-sociales{ 
    padding: 10px;

}


#redes-sociales a{
    text-decoration: none;
    padding: 10px;
}

