* {
    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 40px;
  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: 8px 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 46px;
  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;
}

.lista-hero{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 76px;
  padding: 0;
}

.lista-hero li{
  font-size: 16px;
  letter-spacing: 2px;
  font-variant: small-caps;
  color: white;
}

.lista-hero li i{
  color: var(--accentB);
  opacity: 60%;
}

/* 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 54px 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);
    }
  }


  /* CARRUSEL CASOS EXITO */

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

.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;
}

/* FORMULARIOS */

  .form_section{
    margin: 64px 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;
    }

    /* PROMO ESPECIAL */

    .promo-section{
        margin-top: 64px;
    }

    .h2-band__title span{
        display:inline-block;
        background: linear-gradient(90deg, var(--accentA) 0%, var(--accentB) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 22px rgba(215,255,0,.12);
    }

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

  .plans-comparison {
    --bg: #000000;
    --card: #0a0a0a;
    --text: #ffffff;
    --muted: #a7a7a7;
    --line: #2c2c2c;
    --accent: #d9ff00;
    --accent-text: #111111;
    --green: #77d62f;
    --green-line: #7ecb2b;
    background: var(--bg);
    padding: 20px 16px 28px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
  }

  .plans-comparison__desktop {
    display: none;
  }

  .plans-comparison__mobile {
    display: grid;
    gap: 18px;
    max-width: 460px;
    margin: 0 auto;
  }

  .plan-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }

  .plan-card--featured {
    border: 2px solid var(--green-line);
    box-shadow: 0 0 0 1px rgba(126, 203, 43, 0.15);
  }

  .plan-card__badge {
    position: absolute;
    top: 6px;
    left: 20%;
    transform: translate(-50%, -50%);
    background: #00ff05;
    color: var(--accent-text);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
  }

  .plan-card__top {
    padding: 22px 18px 14px;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .plan-card__title {
    font-size: 22px;
    line-height: 1.1;
    color: var(--text);
  }

  .plan-card__title strong {
    font-size: 36px;
    font-weight: 700;
    margin-right: 4px;
  }

  .plan-card__features {
    padding: 6px 18px;
  }

  .plan-card__feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.35;
  }

  .plan-card__feature:last-child {
    border-bottom: 0;
  }

  .plan-card__check,
  .plan-card__empty {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .plan-card__check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--green);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
  }

  .plan-card__empty {
    min-width: 22px;
    color: var(--muted);
    font-size: 16px;
  }

  .plan-card__bottom {
    padding: 36px 18px 20px;
    border-top: 1px solid var(--line);
    text-align: center;
  }

  .plan-card__price {
    font-size: 26px;
    line-height: 1.05;
    margin-bottom: 6px;
  }

  .plan-card__price span{
    font-size: 18px;
  }

  .plan-card__old-price {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 16px;
  }

  .plan-card__button,
  .plans-table__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--accent-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
  }


@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: 44px;
  }

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

  .lista-hero{
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }

    /*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;
}

/* CARRUSEL CASOS EXITO */

 .proyectos{
    padding: 72px 24px;
  }

  .proyectos__track{
    grid-auto-columns: 62%;
    gap: 18px;
  }

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

  .proyecto-card__content{
    padding: 24px;
  }

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

   /* PROMO ESPECIAL */

   .promo__txt{
    width: 80%;
   }


  /* 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);
    }

/* PROMO ESPECIAL */

.promo-section{
        margin-top: 134px;
    }

.plans-comparison {
      padding: 30px 24px 40px;
    }

    .plans-comparison__mobile {
      display: none;
    }

    .plans-comparison__desktop {
      display: block;
      max-width: 1100px;
      margin: 0 auto;
    }

    .plans-table__head,
    .plans-table__row,
    .plans-table__foot {
      display: grid;
      grid-template-columns: 1.15fr 1fr 1fr 1fr;
    }

    .plans-table__cell {
      position: relative;
      padding: 16px 14px;
      border-left: 1px solid var(--line);
      border-top: 1px solid var(--line);
      background: transparent;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 68px;
      font-size: 15px;
      line-height: 1.3;
    }

    .plans-table__cell:last-child {
      border-right: 1px solid var(--line);
    }

    .plans-table__foot .plans-table__cell,
    .plans-table__row:last-of-type .plans-table__cell {
      border-bottom: 1px solid var(--line);
    }

    .plans-table__cell--label {
      justify-content: flex-start;
      text-align: left;
      padding-left: 16px;
    }

    .plans-table__head .plans-table__cell--label {
      font-size: 34px;
      font-weight: 700;
    }

    .plans-table__cell--plan {
      font-size: 22px;
      gap: 6px;
    }

    .plans-table__cell--plan strong {
      font-size: 38px;
      font-weight: 700;
    }

    .plans-table__cell--featured {
      border-left: 2px solid var(--green-line);
      border-right: 2px solid var(--green-line);
    }

    .plans-table__head .plans-table__cell--featured {
      border-top: 2px solid var(--green-line);
    }

    .plans-table__foot .plans-table__cell--featured {
      border-bottom: 2px solid var(--green-line);
    }

    .plans-table__badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--accent);
      color: var(--accent-text);
      font-size: 11px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      white-space: nowrap;
    }

    .plans-table__cell--price {
      min-height: 160px;
      flex-direction: column;
      justify-content: flex-end;
      padding-bottom: 18px;
    }

    .plans-table__main-price {
      font-size: 28px;
      line-height: 1.05;
      margin-bottom: 6px;
    }

    .plans-table__main-price span{
        font-size: 18px;
    }

    .plans-table__old-price {
      font-size: 13px;
      color: var(--muted);
      text-decoration: line-through;
      margin-bottom: 16px;
    }

    .plan-card__badge{
        margin-top: 0px;
        background: var(--accent);
        top: 0;
        left: 50%;
    }

    .plans-table__button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plans-table__button:hover {
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

   /* 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;
  }

  .lista-hero{
    margin-bottom: 56px;
  }
    /*VIDEO */

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

  /* SERVIVIOS */

   .h2-band{ padding: 54px 26px; }
      .h2-band__title{ max-width: 22ch; }
      .h2-band__inner{padding: 0px 74px;}

    /* CARRUSEL CASOS EXITO */

    .proyectos{
    padding: 88px 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;
  }

  /* FORMULARIO */

  .form_section{
    margin: 134px 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;
    }

  /* FAQs */

  .faq_section{
    margin-bottom: 120px;
  }
}


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

   /* PROMO ESPECIAL */

   .promo__txt{
    width: 70%;
   }

  /* 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; }
}
