* {
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: 'Monserrat';
  background-color: #daa;
  color: #000;
}

body, div, header, label, nav, footer, a, li, ul{
  margin: 0;
  padding: 0;
}

.header{
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
  container-name: header;
  z-index:2
}

.header__open-nav-button{
  color: #b88;
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  right: 10px;
  z-index:2;
}

.header__checkbox{
  display: none;
}

.header__nav{
  display: none;
  background-color: #fff;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  z-index: 1;
}

.header__nav-list{
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: auto;
  justify-content: space-evenly;
}

.header__checkbox:checked ~ .header__nav{
  display: flex;
}

.header__logo-container{
  z-index: 2;
}

.header__logo{
  max-width: 100%;
  width: 64px;
  margin: 10px 20px;
  z-index: 2;
}

/* --- PARA ESTILOS DE MENU --- */

.header__nav-item {
  list-style: none;
}

.header__nav-item a{
  color: #daa;
  text-decoration: none;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

.header__nav-item :is(:hover, :active){
  text-decoration: underline;
}
/* ---- PARA ADAPTARSE A DISPOSITIVOS DESKTOP ---- */

@container header (min-width: 700px) {
  
  .header__nav {
    display: flex;
    flex-flow: row nowrap;
    position: static;
    height: auto;
    width: auto;
    justify-content: space-between;
  }
  
  .header__nav-list {
    flex-direction: row;
    height: auto;
    width: auto;
    gap: 20px;
  }
  
  .header__open-nav-button {
    display: none;
  }
}

.main__wrapper-1{
  background-color: #b9b;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  overflow: hidden;
}

.main__slogan-container{
  text-align: center;
  color: #fff;
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
}

.main__image-container{
  align-self: center;
  margin-top: 4px;
  box-sizing: border-box;
}

.main__image{
  max-width: 100%;
  height: auto;
}

.main__wrapper-2{
  background-color: #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}

.main__mission-container{
  text-align: center;
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
}

.main__vision-container{
  text-align: center;
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
}

.main__mission-container p {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

.main__vision-container p{
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

.main__wrapper-3{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

.main__location-container{
  justify-content: center;
  text-align: center;
  font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
}

.main__location-sucursal-container{
  width: 52vw;
  height: 52vh;
}

.main__location-sucursal{
  width:100%;
  height:100%;
}

.footer{
  display: flex;
  flex-flow: row wrap;
  background-color:#222;
  color: #fff;
  justify-content: space-evenly;
  align-items: stretch;
}

.footer__bussines-name-container{
  align-self: center;
  font-size:4vw;
   font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.footer__redes-container{
}

.footer__redes-container h3{
  font-size: 4vw;
}

.footer__redes{
  color: #daa;
  font-size: 3vw;
}

.footer__business-info-container{
}

.footer__business-info-container h3{
  font-size: 4vw;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

.footer__business-info-container p{
  font-size: 2.5vw;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}