* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}


html{
    scroll-behavior: smooth;
}

body{
    background-color: #000000 !important;
}

main {
    overflow: hidden;
    max-width: 1600px;
    margin: auto;
}


/* HERO */

:root{
  --text:#ffffff;
  --muted: rgba(255,255,255,.75);
  --line: rgba(255,255,255,.22);
  --accentA:#d7ff00;
  --accentB:#7fffd4;
}

.hero{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 156px 16px 80px;
  overflow: hidden;
  isolation: isolate;
  background: #0b0b0b;
}

.hero__media{
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero__inner{
  width: min(980px, 100%);
  text-align:center;
  padding: 60px 0;
}

.hero__title{
  margin: 0 0 10px;
  line-height: .95;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: clamp(54px, 10vw, 92px);
}

.hero__subtitleRow{
  margin: 6px 0 32px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}

.hero__subtitle{
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 5.2vw, 44px);
  color: rgba(255,255,255,.96);
}

.hero__line{
  height: 1px;
  background: var(--line);
  flex: 1 1 auto;
  max-width: 160px;
  opacity: .85;
}

.hero__lead{
  margin: 0 auto 66px;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(16px, 3.6vw, 18px);
  line-height: 1.6;
}

.hero__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 22px;
  text-decoration:none;
  background: linear-gradient(90deg, rgba(215,255,0,.98));
  color: #0b0b0b;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow:
    0 8px 22px rgba(215,255,0,.18),
    0 2px 0 rgba(0,0,0,.22) inset;
  transition: transform .15s ease, filter .15s ease;
}

.hero__cta:hover{ transform: translateY(-2px); filter: brightness(1.03); }
.hero__cta:active{ transform: translateY(0px); }

.hero__ctaIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hero__ctaText{
  white-space: nowrap;
}

/* LOGOS */

.trust-logos{
  padding: 28px 16px;
}

.trust-logos__inner{
  width: min(1100px, 100%);
  margin: 0 auto;
}

.trust-logos__kicker{
  margin: 0 0 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--muted);
}

.trust-logos__viewport{
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* Track */
.trust-logos__track{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  will-change: transform;
  transform: translateX(0);
  transition: transform 520ms ease;
}

/* Cada item ocupa una fracción según el breakpoint */
.trust-logos__item{
  flex: 0 0 calc((100% - 22px) / 2); /* mobile: 2 logos visibles */
  display: grid;
  place-items: center;
  min-height: 56px;
}

.trust-logos__img{
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .75;
}

/* VIDEO */

.showcase{
  padding: 28px 14px;
  margin: 64px 0px;
}

.showcase__window{
  width: min(1100px, 100%);
  margin: 0 auto;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  overflow: hidden;
}

.showcase__top{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 16px 18px 10px;
  opacity: .7;
}

.showcase__icon{
  width: 18px;
  height: 18px;
  display:inline-block;
  border: 2px solid rgba(255,255,255,.35);
}
.showcase__icon.tri{ clip-path: polygon(50% 6%, 6% 94%, 94% 94%); }
.showcase__icon.sq{ border-radius: 2px; }
.showcase__icon.cir{ border-radius: 999px; }

.showcase__body{
  padding: 10px 14px 18px;
}

.showcase__frame{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  min-height: 240px; /* mobile */
}

.showcase__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  background:#0f0f0f;
}

/* Botón play */
.showcase__play{
  position:absolute;
  inset:auto 14px 14px auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.showcase__play.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.showcase__play:hover{ transform: translateY(-1px); }

/* SERVICIOS */

    .h2-band{
      --text:#ffffff;
      --muted: rgba(255,255,255,.55);

      background: var(--bg);
      padding: 26px 16px; /* mobile first */
      font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
      margin-top: 84px;
    }

    .h2-band__inner{
      width: min(1100px, 100%);
      margin: 0 auto 34px auto;
      position: relative;
      padding: 0px 24px;
    }

    .h2-band__badge{
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.65);
      background: rgba(255,255,255,.02);
      box-shadow: 0 14px 30px rgba(0,0,0,.35);
      margin-bottom: 18px;
    }

    .h2-band__title{
      margin: 0 0 16px;
      color: var(--text);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.02;

      /* Responsive: crece con el viewport */
      font-size: clamp(34px, 7.8vw, 72px);
      max-width: 18ch;
    }

    .serv-div{
      display: flex;
      justify-content: center;
      margin-top: 80px;
    }

    .lista-servicio{
      background-color: #161617;
      border-radius: 40px;
      padding: 60px 40px;
      width: 80%;
display: flex;
flex-wrap: wrap;
    gap: 46px;
    }

    .servicios-tit{
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
    font-weight: 400;
  }

  .servicios-txt{
    font-size: 16px;
    color: white;
    letter-spacing: 2px;
    font-weight: lighter;
  }

    .lista-servicio li{
      display: grid;
      gap: 16px;
       opacity: 0;
  transform: translateY(28px) scale(.985);
  filter: blur(8px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1),
    filter .7s ease;
  will-change: opacity, transform, filter;
    }


    .lista-servicio li.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Delay progresivo */
.lista-servicio li:nth-child(1){ transition-delay: .05s; }
.lista-servicio li:nth-child(2){ transition-delay: .12s; }
.lista-servicio li:nth-child(3){ transition-delay: .19s; }
.lista-servicio li:nth-child(4){ transition-delay: .26s; }
.lista-servicio li:nth-child(5){ transition-delay: .33s; }
.lista-servicio li:nth-child(6){ transition-delay: .40s; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .lista-servicio li{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* TARJETA CTA AMARILLA */

.cta-bubble{

    --card1:#eaff01;
    --card2:#e7f26f;
    --card3:#f2f7b4;
    --text:#1B1C26;
    --muted: rgba(17,24,39,.70);
    --shadow: rgba(0,0,0,.45);

    background: var(--bg);
    padding: 28px 16px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 86px 0px;
  }

  .cta-bubble__card{
    width: min(360px, 92vw);
    padding: 38px 46px;
    border-radius: 32px;
    text-align:center;
    background: linear-gradient(145deg, var(--card1) 0%, var(--card2) 55%, var(--card3) 100%);
    box-shadow: 0 16px 38px var(--shadow);
  }

  .cta-bubble__title{
    margin: 0 0 26px;
    font-weight: 600;
    letter-spacing: 2PX;
    line-height: 1.1;
    color: var(--text);
    font-size: clamp(28px, 5.2vw, 36px);
  }

  .cta-bubble__link{
    position: relative;
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 6px 2px;
    color: var(--muted);
    text-decoration: none;
    font-size: clamp(14px, 3.2vw, 16px);
    line-height: 1;
    outline: none;
  }

  .cta-bubble__icon{
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    transform: translateY(-1px);
    transition: transform .18s ease, color .18s ease;
  }

 
  .cta-bubble__link:focus-visible{
    outline: 2px solid rgba(17,24,39,.35);
    outline-offset: 6px;
    border-radius: 10px;
  }

 
  @media (hover:hover) and (pointer:fine){
    .cta-bubble__link{
      transition: color .18s ease;
    }

    .cta-bubble__link::after{
      content:"";
      position:absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 2px;
      background: rgba(17,24,39,.55);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .18s ease;
      border-radius: 999px;
    }

    .cta-bubble__link:hover{
      color: var(--text);
    }

    .cta-bubble__link:hover::after{
      transform: scaleX(1);
    }

    .cta-bubble__link:hover .cta-bubble__icon{
      transform: translate(3px,-3px);
      color: var(--text);
    }
  }


  /* BENEFICIOS */

.services360{
    /* Mobile first */
    --bg:#f4f1eb;
    --ink:#0b0b0c;
    --card:#0e0f12;
    --card2:#17181d;
    --line:rgba(255,255,255,.08);
    --muted:rgba(255,255,255,.72);

    --violet:#9577C8;
    --cyan:#51DBEA;
    --lime:#cde000;
    padding: 22px 14px 40px;
  }

  .services360__inner{
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: 46px;
    padding: 46px 6px 124px;
    position: relative;
    overflow: hidden;
  }


  .services360__header{
    text-align:center;
    padding: 10px 8px 18px;
  }

  .services360__marks{
    display:flex;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .services360__marks .m{
    width: 42px;
    height: 42px;
  }
  .services360__marks .m--tri{ color: var(--violet); }
  .services360__marks .m--sq{ color: var(--cyan); }
  .services360__marks .m--ci{ color: var(--lime); }

  .services360__title{
    margin: 0px 0px 32px 0px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ink);
    line-height: 1.08;
    font-size: clamp(36px, 6.2vw, 72px);
  }

  /* Grid */
  .services360__grid{
    display:grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
  }

  /*Tarjeta servicios */

  .feature{
  background: radial-gradient(1200px 400px at 20% 10%, rgb(47 47 48 / 0%), transparent 60%), linear-gradient(135deg, #0c0c0c, #18181c);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 46px 28px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  min-height: 220px;
}

.feature__head{
  display:flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 26px;
  align-items: center;
}

.feature__icon{
  width: 28px;
  height: 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 22px;
}

.feature__icon svg{
  width: 28px;
  height: 28px;
}

.feature__icon--violet{ color: var(--violet); }
.feature__icon--cyan{ color: var(--cyan); }
.feature__icon--lime{ color: var(--lime); }

.feature__title{
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: clamp(32px, 4.5vw, 46px);
}

.feature__text{
  margin: 0 0 12px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 2px;
  max-width: 62ch;
}

/* Botón ver más */
.verMas-btn{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin-top: 4px;
  background: transparent;
  border: none;
  appearance: none;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease, transform 0.3s ease;
}

.verMas-btn:hover{
  color: #9577C8;
  text-decoration-color: #9577C8;
  transform: translateX(3px);
}

.verMas-btn:focus-visible{
  outline: 2px solid #9577C8;
  outline-offset: 6px;
  border-radius: 8px;
}

.flecha-dot{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), filter 0.3s ease;
  transform-origin: center;
}

.verMas-btn:hover .flecha-dot{
  filter: drop-shadow(0 0 10px rgba(149, 119, 200, 0.28));
}

.ver-mas{
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 200;
  transition: opacity 0.25s ease;
}

.mas-violeta{
  color: #9577C8;
}

.mas-cyan{
  color: #51DBEA;
}

.mas-lime{
  color: #cde000;
}

.feature--violet{ --accent: #9577C8; }
.feature--cyan{ --accent: #5BC0EB; }
.feature--lime{ --accent: #cde000; }

.verMas-btn:hover{
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.feature.is-open .verMas-btn{
  color: var(--accent);
  text-decoration-color: var(--accent);
}


.feature.is-open .flecha-dot{
  transform: rotate(90deg);
}

/* Wide card layout */
.feature--wide{
  padding: 46px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Desplegable */
.tarjeta-div{
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.6s cubic-bezier(.22, 1, .36, 1),
    opacity 0.35s ease,
    transform 0.45s ease,
    visibility 0s linear 0.6s;
}

/* abierto */
.feature.is-open .tarjeta-div{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    max-height 0.6s cubic-bezier(.22, 1, .36, 1),
    opacity 0.35s ease,
    transform 0.45s ease,
    visibility 0s linear 0s;
}

.tarjeta-lista{
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.tarjeta-lista li{
  width: 100%;
}

.tit-tarjeta{
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  color: white;
  padding-bottom: 8px;
}

.txt-tarjeta{
  color: rgba(255, 255, 255, .70);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 2px;
  font-weight: 200;
}

.services360__tablet{
    position:relative;
    left: 50%;
    bottom: 40px;
    width: min(360px, 72vw);
    transform: translateX(-50%) rotate(-12deg);
    filter: drop-shadow(0 22px 34px rgba(0,0,0,.55));
  }

  /* CTA CREAMOS */

.cta__creamos-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 52px;
  margin: 0px 40px;
}

.cta_creamos{
  font-size: 48px;
  letter-spacing: 2px;
  font-weight: 400;
  color: white;
  text-align: center;
}

/* CARRUSEL CASOS EXITO */

  :root{
  --bg: #050505;
  --card-bg: #111214;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.18);
}

.casos-exito-sec{
  margin: 86px 0px;
}

.proyectos{
  padding: 6px 16px 56px 16px;
  background: var(--bg);
  color: var(--text);
}

.proyectos__head{
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 16px;
  margin-bottom: 20px;
}


.proyectos__controls{
  display: none;
  gap: 10px;
}

.proyectos__btn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.proyectos__btn:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.proyectos__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.proyectos__track::-webkit-scrollbar{
  display: none;
}

.proyecto-card{
  position: relative;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  background: var(--card-bg);
  scroll-snap-align: start;
  isolation: isolate;
  border-radius: 16px;
}

.proyecto-card__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.proyecto-card__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(7 7 10) 0%, rgb(7 7 10 / 87%) 35%, rgb(7 7 10 / 39%) 68%, rgb(7 7 10 / 33%) 100%);
}

.proyecto-card__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px;
}

.tel-img{
    width: 100%;
    display: flex;
    justify-content: center;
}

.tel-img img{
  width: 200px;
  height: auto;
}

.proyecto-card__title{
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.proyecto-card__text{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.proyecto-card__link{
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(3px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.proyecto-card__link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.34);
}

.proyecto-card__link span{
  font-size: 1.1rem;
  line-height: 1;
}

/* HOTELES A MEDIDA*/

.creamos-div-h2{
  margin: 26px 36px;
}

.medida-h2{
  color: var(--text);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(34px, 7.8vw, 72px);
    text-align: center;
}

.medida-h2 span{
  color: #EAFF01;
}

.media-ul{
  display: flex;
    flex-direction: column;
    gap: 26px;
}

.media-h3{
  font-size: 30px;
  color: white;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
}

.media-line{
  color: rgb(149 119 200 / 70%);
  width: 30%;
}

.media-txt{
  color: white;
  letter-spacing: 1px;
  line-height: 24px;
  text-align: center;
}

.media-btn{
  background-color: #EAFF01;
  padding: 16px 24px;
  border-radius: 16px;
  display: block;
    margin: -60px auto 20px auto;
    position: relative;
    border-color: #EAFF01;
    border: none;
    transition: transform 0.3s ease;
}

.media-btn:hover {
  transform: translateX(3px) translateY(3px);
}

.media-btn a{
  color: #1B1C26;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
}

.media-div{
  border: double 4px rgb(234 255 1 / 20%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 36px 24px 46px 24px;
    margin: 34px 14px;
}

.media-div-div{
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.media-div-div img{
  width: 54px;
  height: auto;
}

/* FORMULARIOS */

  .form_section{
    margin: 84px 0px;
  }

  .form__txt{
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    font-weight: 200;
    line-height: 26px;
    margin-top: 26px;
  }

  .form-todo{
  display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 88px;
    gap: 68px;
}

.cta-form{
  cursor: pointer !important;
  width: 120px;
}

.success-message,
.error-message {
  display: none;
  margin-bottom: 40px;
}

.success-message { color: #0a7b28; font-family: "Raleway", sans-serif;}
.error-message   { color: #b00020; font-family: "Raleway", sans-serif;}


/* CONTACTO IZQUIERDA */

.cuadro-iz{
  border: #737373 solid 1px;
  border-radius: 8px;
  padding: 48px 10px;
}

.cuadroiz-sub{
  display: flex;
    flex-direction: column;
    gap: 52px;
    align-items: center;
}

.cuadro-dos{
  display: flex;
    flex-direction: column;
    align-items: center;
}

.form-wats{
    width: 134px;
    height: auto;
}

.phone-1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #eaff01c9;
}

.email{
  font-size: 16px;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
  text-align: center;
  line-height: 38px;
  font-weight: 300;
}


/* CONTACTO DERECHA */

.form-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

.form-txt{
  font-variant: small-caps;
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 38px;
  color: white;
}

form{
  display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-box{
  display: flex;
  flex-direction: column;
  border: none;                  
  border-block: 2px solid #737373;
  padding: 16px 20px;
  gap: 8px;
}

.form-box-msj{
  display: flex;
  flex-direction: column;
  border: none;                  /* limpia todo */
  border-block: 2px solid #737373;
  padding: 20px 20px;
  gap: 16px;
}

form label{
  letter-spacing: 2px;
  color: #737373;
  font-weight: 400;
  font-variant: small-caps;
  font-size: 16px;
}

form input{
  background-color: black;
  border: 1px solid #f5f5f52e;
  border-radius: 4px;
  color: white;
  width: 100%;
  height: 40px;
  font-size: 18px;
}

form textarea{
  background-color: black;
  border: 1px solid #f5f5f52e;
  color: white;
  height: 320px;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
}

.ctaform-div{
  margin-top: 48px;
  text-align: center;
}

/* FAQs */

.faq-wrap, 
.faq-wrap * {
  font-weight: 280;
  letter-spacing: 2px;
  font-size: 14px;
}

.faq-wrap { max-width:800px; margin:40px 20px;}
.faq-list { list-style:none; margin:0; padding:0; }
.faq-item { 
  border-top:1px solid rgba(229,226,165,.35); 
}
.faq-item:last-child { border-bottom:1px solid rgba(229,226,165,.35); }

.faq-q{
  width:100%;
  background:none; border:0; cursor:pointer; color:#fff;
  text-align:left; display:flex; align-items:center; gap:14px;
  font-size:22px; line-height:1.4; font-weight:400;
  padding:18px 2px;
}
.faq-q:focus-visible{ outline:2px solid #e5e2a5; outline-offset:4px; border-radius:10px; }

.faq-sign{ width:18px; display:inline-grid; place-items:center; font-weight:600; opacity:.9; }
.faq-q .faq-sign::before{ content:"+"; }
.faq-q[aria-expanded="true"] .faq-sign::before{ content:"−"; }

.faq-a{
  overflow:hidden; max-height:0; opacity:0;
  transition:max-height .28s ease, opacity .28s ease;
}
.faq-a-inner{ padding:0 2px 18px; color:#cfcfcf; font-size:14px; line-height:1.7; max-width:72ch; }
.faq-a-inner strong{ font-weight: bolder;}
.faq-item.is-open .faq-a{ opacity:1; }


/* WHATSAPP */
  
  #whatsapp-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    transform: translateX(200%); /* Start hidden off the screen */
    float: right;
  }
  
  .logo-whatsapp{
    color: #4FCE5D;
    font-size: 64px;
  }

  .logo-whatsapp:hover{
        box-shadow: 0px 4px 4px rgba(252, 251, 251, 0.25);
        transform: translateY(-2px) translateX(2px) scale(1);
        transition: transform 0.3s ease-in-out;
    }

@media (min-width: 640px){

  /* LOGOS */
  .trust-logos{ padding: 34px 18px; }
  .trust-logos__track{ gap: 26px; }
  .trust-logos__item{ flex-basis: calc((100% - 26px*3) / 4); }
  .trust-logos__img{ max-height: 46px; }
     
  /* FORMULARIO */

  .faq-wrap{
    margin: 40px 60px;
  }
}

@media (min-width: 768px){

/* HERO */
  .hero__line{
    max-width: 260px;
  }

  .hero__lead{
    margin-bottom: 86px;
  }

  .hero__cta{
    padding: 16px 32px;
    font-size: 13px;
  }

  /*VIDEO */

  .showcase{ padding: 44px 18px; }
  .showcase__top{ padding: 18px 22px 12px; }
  .showcase__body{ padding: 12px 22px 22px; }
  .showcase__frame{ border-radius: 24px; aspect-ratio: 16 / 9;}

  /* SERVICIOS */

.h2-band{ padding: 42px 22px; }
      .h2-band__badge{ width: 52px; height: 52px; margin-bottom: 22px; }

.h2-band__inner{
  padding: 0px 44px;
}

/* HOTELES A MEDIDA*/

.media-ul{
  flex-direction: row;
  justify-content: center;
}

.media-div{
  min-height: 440px;
    max-width: 480px;
}

  .tarjeta-div{
    display: block;
  }

  .tarjeta-lista{
    grid-template-columns: 1fr 1fr;
    padding: 0 60px 40px;
  }

     /* CTA CREAMOS */

.cta_creamos{
  font-size: 80px;
}

/* CONTACTP FORM */

form label{
  width: 160px;
}

    .form-box{
      flex-direction: row;
      height: 80px;
      padding: 20px 20px;
      gap: 18px;
      width: 600px;
    }

    .form-container{
      align-items: flex-start;
    }


    .form-box-msj{
      padding: 20px 20px;
    }

    form textarea{
      height: 180px;
    }
}

@media (min-width: 900px){
    /*LOGOS */
  .trust-logos__item{ flex-basis: calc((100% - 26px*5) / 6); }

    /* SERVICIOS */

  .lista-servicio{
      padding: 80px;
      width: 70%;
      display: grid;
    grid-template-columns: repeat(2, 1fr);
    }

     /* FAQs */

  .faq-wrap{margin: 60px auto;}
  .faq-q{ font-size:24px; padding:28px 4px; }
  .faq-a-inner{padding:0 4px 28px; }
}

@media (prefers-reduced-motion:reduce){
  .faq-a{ transition:none; }
}

@media (min-width: 1024px){

   /* HERO */
  .hero{
    padding: 164px 16px 64px;
  }

  .hero__title{
    font-size: 120px;
  }

  .hero__line{
    max-width: 340px;
  }

  .hero__inner{
  padding: 8px 0;
}

  /*VIDEO */

  .showcase__window{ border-radius: 32px; }
  .showcase__frame{ border-radius: 28px; }

  /* BENEFICIOS */

  .services360__inner{
      padding: 46px 0px 154px;
      border-radius: 56px;
    }

    .services360__title{
      margin: 0px 0px 78px 0px;
    }

    .services360__grid{
      grid-template-columns: 1fr 1fr;
      gap: 38px;
    }

    .feature--wide{
      grid-column: 1 / -1;
      align-items: center;
      min-height: 360px;
      padding: 36px 16px 36px 56px !important;
    }

    .feature--wide--right{
      margin: 0px 0px 0px 120px !important;
      border-radius: 62px 0px 0px 62px !important;
    }

    .feature--wide--left{
      margin: 0px 120px 0px 0px !important;
      border-radius: 0px 62px 62px 0px !important;
    }

    .feature{
      padding: 46px 52px;
      min-height: 360px;
    }

    .feature__text{ height: 90px; }
    
    

  .services360__tablet{ width: 360px; } 

  .tarjeta-lista{
    padding: 0 80px 40px;
  }

  .services360__tablet{ width: 360px; }

   /* CARRUSEL CASOS EXITO */

   .casos-exito-sec {
    margin: 126px 0px;
}

    .proyectos{
    padding: 34px 32px 38px 32px;
  }

  .proyectos__controls{
    display: flex;
  }

  .proyectos__track{
    grid-auto-columns: minmax(420px, 48%);
    gap: 22px;
    scroll-behavior: smooth;
  }

  .proyecto-card{
    min-height: 460px;
  }

  .proyecto-card__content{
    padding: 28px 26px;
  }

  .proyecto-card__title{
    font-size: 1.6rem;
  }

  .proyecto-card__text{
    font-size: 1rem;
  }

  /* HOTELES A MEDIDA */

  .medida-h2{
    width: 80%;
  }

  .creamos-div-h2{
    display: flex;
    justify-content: center;
    margin-bottom: 86px;
  }

  /* FORMULARIO */

  .form_section{
    margin: 164px 0px 124px;
  }

  .form-todo{
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    margin: 88px;
  }

  .cuadro-iz{
    width: 35%;
  }

  .cuadro-dr{
    width: 65%;
  }

  form{
    width: 100%;
  }

  .form-box{
    width: 100%;
    padding: 20px 80px;
  }

  .form-box-msj {
        padding: 20px 80px;
    }


}

  




@media (min-width: 1200px){
    /*LOGOS*/
  .trust-logos__item{ flex-basis: calc((100% - 26px*8) / 9); }

   /* HOTELES A MEDIDA */

  .medida-h2{
    width: 50%;
  }


    /* FORMULARIO */

      .form-todo{
  align-items: flex-start;
}

.cuadroiz-sub{
    gap: 88px;
}

.form-wats {
    width: 140px;
}

.phone{
  font-size: 22px;
}

.email{
  font-size: 18px;
}

.form-container {
    gap: 18px;
}

    form textarea {
        height: 80px;
    }
}

@media (prefers-reduced-motion: reduce){
    /*LOGOS*/
  .trust-logos__track{ transition: none; }
  /* VIDEO */
  .showcase__video{ animation:none; }
}