* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;	
	background: #f2f2f2;
}

.imgcabecera {
    padding: 10px;
    float:left;
}

.imgcabeceraresp {
    padding: 60px;
    display: none;
}

/* * ============================== */
/* * ===== CONTENEDOR IMAGEN ====== */
/* * ============================== */

.contenedor-imagen {
	/*height: 100vh;*/
}

.contenedor-imagen img {
	width: 100%;
	height: 100%;
	vertical-align: top;
	object-fit: cover;
	object-position: 0 bottom;
}
/* * ============================== */
/* * ============ MAIN ============ */
/* * ============================== */

main {
	/*min-height: 100vh;*/
}

main .contenido p {
	margin-bottom: 20px;
	line-height: 30px;
	color: #525151;
    padding: 20px 40px;
}

main .contenido .titulo {
    font-family: 'Montserrat', sans-serif;
	font-weight: normal;
	padding: 40px;
}

/*-----------------------------*/
/*---- pie de pagina ----------*/
/*-----------------------------*/
.piesdepagina {
    padding: 40px 40px 40px;
    align-content: center;
    text-align: center;
    background: coral;
    color: #fff;

}

/*------ menu responsive ---------*/
header {
    width: 100%;
    background: #fff;
    height: 130px;
}

#btn_menu {
    display: none;
}

header label {
    display: none;
    width: 40px;
    height: 40px;
    padding: 10px;
}

header label:hover {
    cursor: pointer;
    background: #FF8000;
}

.menu {
    background: #fff;
}

.menu a {
    color:#FF8000;
}

.menu ul {
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.menu li:hover {
    background:#FF8000;
}

.menu li:hover a {
    color:#fff;
}
.menu li a {
    display: block;
    padding: 50px 50px 50px;
    color: #FF8000;
    text-decoration: none;
}
@media (max-width: 600px) {
    header {
        height: initial;
    }
    .imgcabecera{
       display: none;
    }
    .imgcabeceraresp {
        display: initial;
    }
    header label {
        display: block;
    }
    .menu {
        position: absolute;
        background: #fff;
        width: 70%;
        margin-left: -70%;
        transition: all 0.5s;
    }
    .menu ul {
        flex-direction: column;
    }
    .meu li {
        border-top: 1px solid #fff ;
    }
    #btn_menu:checked ~ .menu {
        margin: 0;
    }
    .menu li a {
        padding: 20px 20px;
    }
}

/*------ btn whatsapp ------*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#fff;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
    background-color:#298A08;
}

.my-float{
	margin-top:16px;
}