* { -webkit-tap-highlight-color: transparent; }

a, button, div[onclick], [role='button'], li {
  -webkit-tap-highlight-color: transparent;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    all: unset;
    top: 0;
    /* background-color: #a51d1d;s */
    height: fit-content;
  }
  nav{
  transition: all 0.2s ease-in-out;
  width: 100%;
}

nav {
  position: sticky;
  top: 0;
  padding: 10px;
  z-index: 10;
  background-color: #ffffff;
}

.items{
    font-family: "Roboto", sans-serif;
    width: 80%;
    display: flex;
    gap: 20px;
    backdrop-filter: blur(5px);
    & a{
      position: relative;
        text-decoration: unset;
        width: 100%;
        padding: 2px 0;
        color:#74a8b1;
        font-size: clamp(14px, 2vw, 18px);
    }
    & a::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 2px;
      width: 0;
      height: 2.5px;
      border-radius: 50px;
      background-color: #279DA4;
      transition: width 0.8s ease-in-out;
    }


    & a:hover::after {
      width: 100%;
    }
    
}
.hide{
  display: none;
  width: 28px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0 5px;
  background: url("https://cdn-shopklim.b-cdn.net/icons/keyboard_.svg?format=webp");
  background-size: contain;
  background-position: center;
  cursor: pointer;
  background-repeat: no-repeat;
  z-index: 100;
}
@media (max-width:890px) {
    .items{
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
}

.services,.datos {
  width: 100%;
  background-color: #F3E5DA;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services h1 {
  place-items: center;
  place-content: center;
  align-items: center;
  justify-content: center;
  color: #279DA4;
  text-align: center;
  width: 100%;
  padding: 10px;
  font-weight: 600;
  font-family: "Montserrat",Arial, Helvetica, sans-serif;
  font-size: clamp(48px, 5vw, 68px);

}
.services p{
  letter-spacing: 1.5px;
  color: rgb(0, 0, 0);
  font-size: clamp(18px, 4vw, 28px);
  font-family: "Roboto";
  text-align: center;
}
.target {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px 0;
  background-color: #9AD4CC;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.picturs {
  flex: 1;
}

.picturs img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1s ease-in-out;
  cursor: pointer;
}

.picturs img:hover {
  transform: scale(1.1);
}

.text {
  flex: 1;
  padding: 30px;
  background-color: #b3e5fc;
  text-align: justify;
}

.target:nth-of-type(even) {
  flex-direction: row-reverse;

}

@media (max-width: 768px) {


  .target{
    flex-direction: column !important;
  }
}
#port{
    place-items: center;
    width: 100%;
    background-color: #e0cdbe;
    & div img{
        max-height: 100dvh;
    }
}

.datos .target .picturs img{
    width: 60%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* // */
.button_reservar{
  border-bottom:#cec49a solid 2px;
  display: flex;
  border-radius: 5px;
  padding: 0 4px;
  height: fit-content;
  border: unset;
  padding: 5px 10px;
  height: 60px;
  cursor: pointer;
  background: #279DA4;
  animation: scale 1.6s linear infinite;
}
.button_reservar a{
  text-decoration: unset;
}
@keyframes scale {
    0%{
        transform: scale(1.0);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1.0);
    }
}
.text_b{
  color:#ffffff;
  font-weight: 500;
  font-size: clamp(14px,20px,18px);
  font-family: "Roboto";
  place-content: center;
  padding: 0 4px;
}
.icon_wht{
  border-radius: 5px;
  width: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg");
  
}


