* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }
  /* ------------------------header----------------------- */
  header {
    position: relative;
    padding: 0 20px;
    margin-right: 20px;
  }
  .head {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 10px;
  }
  header img {
    width: 8%;
  }
  li {
    list-style-type: none;
  }
  header a {
    text-decoration: none;
    color: #253532;
    font-size: 1.3em;
    transition: 1s;
  }
  header a:hover {
    font-size: 1.35em;
    color: #9e8d77;
  }
  header .active {
    font-weight: bold;
    color: #9e8d77;
  }
  .head .links {
    display: flex;
    gap: 80px;
  }
  .head .btn-menu {
    color: #9e8d77;
    font-size: 1.5em;
    cursor: pointer;
    display: none;
  }
  /*Dropdown menu*/
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100px;
    height: 0;
    left: 10px;
    width: 100%;
    background-color: black;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
  }
  .dropdown-menu.open {
    height: 350px;
  }
  .dropdown-menu li {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dropdown-menu li a{
    color: white;
  }
  .vista-uno{
    background: url(/assets/platos-img/foto-1.jpg)no-repeat;
    background-size: cover;
    padding: 40px;
  }
  .vista-uno h1{
    font-size: 5em;
    font-weight: 900;
    background-color: rgba(000, 000, 000, .5);
    color: white;
    margin-bottom: 300px;
    width: 50%;
  }
  .vista-dos{
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .vista-dos h3{
    margin: auto;
    font-size: 2em;
    color: #253532;
  }
  .vista-dos .menu-btn{
    display: flex;
    margin-top: 40px;
  }
  .vista-dos .menu-btn a{
    background-color: #253532;
    color: white;
    text-decoration: none;
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px 30px 30px 30px;
    margin: 0 40px;
  }
  .vista-tres{
    display: flex;
    justify-content: space-evenly;
  }
  .vista-tres img{
    width: 320px;
  }
  .vista-cuatro{
    margin-top: 40px;
    background: url(/assets/platos-img/foto-1.jpg) no-repeat;
    background-size: cover;
    display: flex;
    padding: 20px;
    margin-bottom: 40px;
  }
  .vista-cuatro .contacto{
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: 40px;
    align-items: center;
  }
  .vista-cuatro .contacto h3{
    color: #9e8d77;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .vista-cuatro .contacto p{
    color: white;
    font-size: 1.2em;
  }
  .vista-cuatro .contacto .right .redes{
    display: flex;
    justify-content: space-evenly;
  }
  .vista-cuatro .contacto .right .redes a{
    font-size: 2.5em;
    color: white;
    transition: 1s;
  }
  .vista-cuatro .contacto .right .redes a:hover{
    scale: 105%;
  }
  .vista-cuatro .contacto .left{
    width: 50%;
  }
  .vista-cuatro .contacto .right{
    width: 50%;
  }
  /* Footer */
footer{
    margin-top: 40px;
    background-color: #1F1B17;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between
  }
  .foot-col-uno{
    width: 30%;
  }
  .foot-col-uno img{
    width: 100px;
    margin-bottom: 20px;
  }
  footer p{
    margin-bottom: 10px;
  }
  .foot-col-dos{
    width: 30%;
  }
  .foot-col-dos .links-footer{
    margin-top: 90px;
    display: flex;
    flex-direction: column;
  }
  .foot-col-dos .links-footer a{
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    width: 150px;
  }
  .foot-col-tres{
    width: 30%;
  }
  .foot-col-tres .links-footer{
    margin-top: 90px;
  }
  .foot-col-tres .links-footer a{
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 1.8em;
  }
  .foot-col-tres .redes-footer{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
  }
  .parrafo-final{
    display: flex;
    justify-content: space-between;
    font-size: .8em;
    margin: 5px 10px;
  }


  /* Responsive*/
@media (max-width: 992px) {
    .head .links {
      display: none;
    }
    header img {
      width: 80px;
    }
    .head .btn-menu {
      display: block;
    }
    .dropdown-menu {
      display: block;
    }
     /* Footer */
  footer{
    flex-direction: column;
  }
  .foot-col-uno{
    width: 95%;
    margin: auto;
    margin-bottom: 40px;
  }
  .foot-col-uno img{
    width: 70px;
    margin-bottom: 20px;
  }
  footer p{
    margin-bottom: 5px;
  }
  .foot-col-dos{
    width: 95%;
  }
  .foot-col-dos .links-footer{
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .foot-col-tres{
    width: 95%;
  }
  .foot-col-tres .links-footer{
    margin-top: 10px;
  }
  .parrafo-final{
    font-size: .6em;
  }
  .vista-uno{
    padding: 20px;
  }
  .vista-uno h1{
    font-size: 3em;
    width: 100%;
  }
  .vista-dos{
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .vista-dos h3{
    text-align: center;
    font-size: 1.3em;
  }
  .vista-dos .menu-btn{
    flex-direction: column;
    margin-top: 20px;
  }
  .vista-dos .menu-btn a{
    margin: 10px 0;
  }
  .vista-tres{
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .vista-tres img{
    width: 95%;
    margin-bottom: 10px;
  }
  .vista-cuatro .contacto{
    flex-direction: column;
    padding: 20px;
  }
  .vista-cuatro .contacto h3{
    color: #9e8d77;
    font-size: 1.2em;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .vista-cuatro .contacto p{
    color: white;
    font-size: 1em;
  }
  .vista-cuatro .contacto .right .redes{
    display: flex;
    justify-content: space-evenly;
  }
  .vista-cuatro .contacto .right .redes a{
    font-size: 2.5em;
    color: white;
    transition: 1s;
  }
  .vista-cuatro .contacto .right .redes a:hover{
    scale: 105%;
  }
  .vista-cuatro .contacto .left{
    width: 100%;
  }
  .vista-cuatro .contacto .right{
    width: 100%;
  }
}