* {
    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/index-img/slid2.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;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .vista-dos img{
    width: 45%;
  }
  .vista-dos h3{
    margin: auto;
    font-size: 2em;
    color: #253532;
  }
  .vista-tres{
    width: 70%;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .vista-tres p {
    text-align: center;
    font-size: 1.4em;
    color: #253532;
  }
  .vista-cuatro{
    display: flex;
    justify-content: space-between;
  }
  .vista-cuatro .left{
    width: 60%;
  }
  .vista-cuatro .left img{
    width: 95%;
    height: auto;
  }
  .vista-cuatro .right{
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: space-between;
  }
  .vista-cuatro .right img{
    height: 360px;
  }
  .vista-cinco{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
  }
  .vista-cinco .right{
    width: 60%;
  }
  .vista-cinco .right img{
    width: 95%;
    height: auto;
    float: right;
  }
  .vista-cinco .left{
    display: flex;
    flex-direction: column;
    width: 40%;
    justify-content: space-between;
  }
  .vista-cinco .left img{
    height: 340px;
  }


.container-collage{
  width: 100%;
  margin: auto;
}
  .collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Puedes ajustar el número de columnas según necesites */
    gap: 10px;
    width: 100%;
}

.collage img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 1s;
}
.collage img:hover{
  scale: 103%;
}





/* 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{
    flex-direction: column;
  }
  .vista-dos img{
    width: 100%;
  }
  .vista-dos h3{
    margin: auto;
    font-size: 1.5em;
    margin-top: 20px;
  }
  .vista-tres{
    width: 70%;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .vista-tres p {
    font-size: 1.2em;
  }
  .vista-cuatro{
    flex-direction: column;
    align-items: center;
  }
  .vista-cuatro .left{
    width: 100%;
  }
  .vista-cuatro .left img{
    width: 100%;
  }
  .vista-cuatro .right{
    flex-direction: row;
    width: 100%;
  }
  .vista-cuatro .right img{
    width: 49%;
    object-fit: cover;
  }
  .vista-cuatro .right img:nth-child(odd){
    width: 49%;
    height: auto;
    object-fit: cover;
  }
  .vista-cinco{
    flex-direction: column;
    margin-top: 10px;
  }
  .vista-cinco .right{
    width: 100%;
  }
  .vista-cinco .right img{
    margin-top: 10px;
    width: 100%;
  }
  .vista-cinco .left{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .vista-cinco .left img{
    width: 49%;
    object-fit: cover;
  }
}