body{
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}
header {
    width: 100%;
    height: 50px;
    background: rgb(70,109,73);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.nombre{
float: left;
margin:20px 0;
font-size: 14px;
}
.numero{
float: right;
margin:20px 0;
font-size: 14px;
}
.numero span {
margin-left:  10px;
}
.logo{
    position: absolute;
    left: 0;
    float: left;
    width: 70px;
    height: 40px;
    margin-left: 5px;
    background: url(../Img/logo-verde.png);
        background-size: cover;
}
/*----Menu----*/
#menu {
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0);
    color: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 200;
}

#menu-bar{
    display: none;
}

#menu label{
    float: right;
    font-size: 28px;
    margin:6px 0;
    cursor: pointer;
    color: rgb(70,109,73);
}

.menu{
    position: absolute;
    top:40px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(70,109,73,0.7);
    transition: all 0.9s;
    transform: translateX(100%);
}
.menu a{
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.menu a:hover{
    background: 1px solid rgba(255,255,255,0.5);
}

#menu-bar:checked ~ .menu{
transform: translateX(0%);
}
#menu .conten{
    display: table;
    float: right;
}

/*--- Contenedor Galeria ---*/
.ayuda{
	margin-top: 100px;
}
.contenedor-galeria{
	margin:auto;
	display: flex;
	width: 100%;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 1000px;
}
.galeria__img{
	width: 300px;
	height: 200px;
	margin-bottom: 30px;
	object-fit: cover;
	filter: brightness(70%);
	animation: escalar 1.5s infinite alternate;
}
.galeria__img:hover{
	filter: brightness(100%);
    cursor: pointer;
}

/*---modal---*/

.modal{
    position: fixed;
    z-index:300;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__img{
    width: 80%;
    height: 90vh;
    object-fit: contain;
}
.modal__boton{
    width: 50px;
    height: 50px;
    color:#fff;
    font-weight: bold;
    font-size: 25px;
    font-family: monospace;
    line-height: 50px;
    text-align: center;
    background: red;
    border-radius: 50%;
    cursor: pointer;
    
    position: absolute;
    right: 10px;
    top:10px;
    
}


/*--Efectos--*/
@keyframes escalar{
	to{
		transform: scale(1);
	}
	from{
		transform: scale(1.05);
	}
}

/*--Tamaños---*/

@media (min-width:480px) {
    .nombre,.numero{
        font-size: 16px;
    }
	
	
}

@media (min-width:768px ) {
.menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0);
        float: right;
        display: flex;
        background: rgba(70,109,73,0);

    }
    #menu label{
        display: none;
    }
    
    .menu a{
        border: none;
		color: rgb(70,109,73);
    }
	.menu a:hover{
		color: rgb(255,255,255);
		background: rgba(70,109,73,0.7);
    }
    .conten{
        width: 100%;
    }

    
}
