body {
  width: 100%;
  height: 100%;
  margin: 0; /* Removes default margin */
  padding: 0; /* Removes default padding */
  box-sizing: border-box; /* Ensures padding is included in width/height */
  display: flex;
  flex-direction: column;

  background-color: rgb(255, 255, 182);
}

.top{
    background-color: rgb(212, 81, 99);
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: flex-end;
    gap: 10px; 
    
}

.navdiv{
    background-color: pink;
    width:100%;
    height:100px;
    display: flex;
    justify-content: space-between;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#logo{
    width: 190px;
    height: 100px;
    margin: 10px 40px 0px 10px;
}

.op{
    color: black;
    list-style: none;
    text-decoration: none;
    display: inline;
    font-weight: bold;
}

a{
    text-decoration: none;
    color: black;
}

.opciones{
    margin:25px;
    align-self: center;
}

.op{
    padding:20px;
}

.main{
    background-color: rgb(255, 255, 255);
    width: 90%;
    height: fit-content;
    margin: 10px auto 30px auto; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.additionalinfo{
    background-color: black;
    width: 100%;
    height: 100vh;
}

.main_img{
    width:100%;
    height:80vh;
    margin: 0px;
    padding: 0px;
    background-image:url('llaveros31v2.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container1{
    padding: 50px 0px 50px 50px;
    display: flex;
    justify-content: space-between;
    /*background-color: blue;
*/
}

.container1-img{
    width: 50%;
    height: 400px;
    background-image: url('pinkpony.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 50px 0 20px;
}

.d1{
    display: flex;
    flex-direction: column;
/*    background-color: bisque;
  */  width:50%;
    margin: 0 20px 0 0;
}

.redes{
    margin:auto 0px 10px 0px;
    background-color: black;
    width:200px;
    height: 60px;
    gap:20px;    
}

.boton{
    background-color: rgb(159, 231, 237);
    width:fit-content;
    padding: 15px;
    border-radius: 15px;
    font-weight: bold;
    margin: 30px 0 30px 0; 
}

.boton2{
    background-color: rgb(149, 209, 255);
    width:fit-content;
    padding: 15px;
    border-radius: 15px;
    font-weight: bold;
    margin: 15px 0 30px 0; 
    padding: 10px 30px 10px 30px; 
}

.container2{
    padding: 20px 15px 50px 15px;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 0, 144);
    align-items: center;
}

.servicios{
    /*background-color: aqua;
    */display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 50px 0 50px 0;
    padding: 10px;
    box-sizing: border-box;
}

.op2{
    width:30%;
  /*  background-color: blueviolet;
    */display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h4{
    margin:0;
    font-weight: normal;
    font-style: italic;
}

#sublimar{
    background-image: url('llaveros31.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height:300px;
    border-radius: 15px;
}

#ilustrar{
    background-image: url('camaronTerraza.JPG');
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    width: 100%;
    height:300px;
    border-radius: 15px;
}

#murales{
    background-image: url('muralKoi.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height:300px;
    border-radius: 15px;
}





/*
 Responsive para pantallas menores a 768px (tablets y móviles) */
@media (max-width: 768px) {
  .top {
    justify-content: center;
    height: auto;
    flex-wrap: wrap;
    padding: 10px;
  }

  .navdiv {
    flex-direction: column;
    align-items: center;
    height: auto;
    text-align: center;
  }

  #logo {
    width: 150px;
    height: auto;
    margin: 10px auto;
  }

  .opciones {
    margin: 10px 0;
  }

  .op {
    display: block;
    padding: 10px;
  }

  .main {
    width: 100%;
    margin: 10px 0;
  }

  .main_img {
    height: 40vh;
  }

  .container1 {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .d1,
  .container1-img {
    width: 90%;
    margin: 10px 0;
  }

  .redes {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
  }

  .additionalinfo {
    height: auto;
    padding: 20px;
  }
}