@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.3.1/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Lilita+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.fira-code-uniquifier {
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}
.jetbrains-mono-uniquifier {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}
.montserrat-uniquifier {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.lilita-one-regular {
  font-family: "Lilita One", sans-serif;
  font-style: normal;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.outfit-uniquifier {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
a {
    text-decoration: none;
}
html, body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Línea animada solo en nav-link del navbar principal */
.navbar .navbar-nav > .nav-item > .nav-link {
    position: relative;
}
.navbar .navbar-nav > .nav-item > .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: rgb(143, 119, 71);
    transition: width 0.3s ease;
}
.navbar .navbar-nav > .nav-item > .nav-link:hover::before,
.navbar .navbar-nav > .nav-item > .nav-link.active::before {
    width: 100%;
    left: 0;
}
.cama {
  height: 100vh;
  display: flex;
  align-items: end;
  padding-bottom: 3rem;
  background: radial-gradient(circle at left top, rgb(169, 115, 6) 21%, rgb(41, 37, 18) 19%, rgb(17, 11, 1) 82%);
  background-size: 145% 145%;
  background-position: 0% 0%;
  animation: camaSunMove 9s ease-in-out infinite;
  font-family: 'Montserrat', sans-serif;
  color: rgb(255, 255, 255);
}
@keyframes camaSunMove {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 16% 12%;
  }
}
/* =====================================================
   SECCIÓN .CAMA — MULTI-CLOUD HERO
   ===================================================== */
.tg-cama-kicker {
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(205, 150, 24);
  margin-bottom: 1rem;
}
.tg-cama-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.82;
  letter-spacing: -0.1em;
  color: rgb(213, 190, 153);
  margin: 0 0 0.5rem;
}
.tg-cama-title em {
  font-style: normal;
  color: rgb(93, 82, 52);
}
.tg-cama-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.tg-cama-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(205, 150, 24, 0.9);
  border: 1px solid rgba(205, 150, 24, 0.3);
  background: rgba(205, 150, 24, 0.07);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}
.cosa {
  height: 100vh;
    min-height: 990px;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(30, 21, 1);
    font-family: "Montserrat", sans-serif;
    color: rgb(255, 255, 255);
}
#nest {
    transition: all 0.4s ease-in-out;
}
.nest {
  position: fixed;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}
#nest.scrolled {
    background: rgba(36, 28, 3, 0.919) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 0.1rem solid rgba(136, 99, 5, 0.3532);
}
.navbar-brand {
    color: rgb(255, 255, 255);
}
.bg-body-tertiary {
    color: rgb(255, 255, 255);
}
.gotas {
  color: rgb(162, 150, 114);
  background-color: rgb(19, 16, 9);
  font-family: "JetBrains Mono", monospace;
}
.redes {
  color: rgb(255, 255, 255);
  font-size: 1.3rem;
}
/*marquee*/
.tg-marquee {
  overflow: hidden;
  background: rgba(17, 11, 2, 0.977);
  border-block: 1px solid rgba(165, 125, 4, 0.498);
  padding: 1.15rem 0;
}
.tg-marquee__track {
  display: flex;
  width: max-content;
  animation: tg-marquee 30s linear infinite;
}
.tg-marquee:hover .tg-marquee__track { animation-play-state: paused; }
.tg-marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.tg-marquee__item {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(.85rem, 1.6vw, 1.1rem);
}
.tg-marquee__dot { color: rgb(99, 87, 50); font-size: 1rem; vertical-align: middle; }
@keyframes tg-marquee {
  to { transform: translateX(-50%); }
}
/*marquee*/

.extermination {
  min-height: 100vh;
  height: auto;
  background-image: url(../img/dotpoint.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: "Poppins", sans-serif;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.exterm {
  background-color: rgb(1, 0, 0);
  background-image: url(../img/dotpoint.svg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 10%;
  padding-bottom: 10%;

}
.dismem {
  padding-top: 5%;
  padding-bottom: 5%;
}
.dismemberment {
  padding-top: 5%;
  padding-bottom: 10%;
}
/* Servicios */
.service-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 60%,
    rgba(255, 255, 255, 0.07) 100%
  );
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.8rem;
  padding: 2rem 1.5rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 6px 30px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(205, 150, 24, 0.15);
  border: 1px solid rgba(205, 150, 24, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-wrapper i {
  font-size: 1.8rem;
  color: rgb(205, 150, 24);
}
.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  margin-bottom: 0.5rem;
}
.feature-list i {
  color: rgb(205, 150, 24);
  margin-right: 0.5rem;
}
.spinning-plus {
    color: rgb(228, 161, 4);
    display: inline-block;
    font-weight: 900;
    transition: transform 0.05s linear;
    will-change: transform;
}
.tg-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(228, 165, 5, 0.9);
  background: rgba(20, 16, 1, .85);
  color: rgb(235, 162, 2);
  font-size: 2rem;
  backdrop-filter: blur(0.6rem);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease, background-color .3s ease, color .3s ease;
}
.tg-top:hover {
  background: rgb(129, 112, 76);
  color: rgb(255, 255, 255);
}
.tg-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
/*darkshine*/
#hero-header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 896px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}
#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
#canvas-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-ui {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
}
.hero-ui img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-compact-actions {
  display: none;
}
.hero-compact-mark {
  display: none;
}
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 768px) {
  #hero-header {
    height: 100svh;
    min-height: 0;
  }

  .hero-ui {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 700px) and (min-aspect-ratio: 1/1) and (max-height: 900px),
       (min-width: 700px) and (min-aspect-ratio: 1/1) and (hover: none) and (pointer: coarse) {
  #hero-header {
    min-height: 0;
    height: 100svh;
  }

  .hero-ui > img,
  .scroll-down {
    display: none;
  }

  .hero-compact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
    width: 100%;
    padding: 1rem;
  }

  .hero-compact-mark,
  .hero-compact-action {
    flex: 0 0 clamp(6.5rem, 16vw, 9rem);
    width: clamp(6.5rem, 16vw, 9rem);
    height: clamp(6.5rem, 16vw, 9rem);
    border-radius: 50%;
    box-sizing: border-box;
  }

  .hero-compact-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(20, 16, 1, .42);
    box-shadow: 0 0 0 .45rem rgba(240, 192, 64, .08), 0 0 2rem rgba(240, 192, 64, .18);
  }

  .hero-compact-mark img {
    width: 68%;
    height: auto;
  }

  .hero-compact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: 1rem;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: clamp(.65rem, 1.4vw, .85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
  }

  .hero-compact-action i {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
  }

  .hero-compact-action--gold {
    color: #f0c040;
    border: 1.5px solid rgba(240, 192, 64, .65);
    background: rgba(240, 192, 64, .12);
    box-shadow: 0 0 0 .35rem rgba(240, 192, 64, .06), 0 4px 24px rgba(240, 192, 64, .15);
  }

  .hero-compact-action--white {
    color: rgba(255, 255, 255, .9);
    border: 1.5px solid rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 0 0 .35rem rgba(255, 255, 255, .04), 0 4px 24px rgba(255, 255, 255, .08);
  }

  .hero-compact-action:hover,
  .hero-compact-action:focus-visible {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
  }
}
/* darkshine*/
/* CTA Glassmorphism Buttons */
.btn-glass-gold {
  background: rgba(240, 192, 64, 0.15);
  color: #f0c040;
  border: 1.5px solid rgba(240, 192, 64, 0.5);
  border-radius: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(240, 192, 64, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.btn-glass-gold:hover {
  background: rgba(240, 192, 64, 0.35);
  color: #fff;
  border-color: rgba(240, 192, 64, 0.9);
  box-shadow: 0 8px 32px rgba(240, 192, 64, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-glass-white {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.btn-glass-white:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(255,255,255,0.12), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.mapaoscuro {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}
.exter {
  background-color: rgb(111, 99, 87);
  color: white;
  font-family: Montserrat, sans-serif;
}
/* Contacto */
.contact-form {
  background: rgb(102, 94, 58);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(110, 101, 59, 0.61);
  border-radius: 14px;
}
/* ── Proyectos Glassmorphism ─────────────────────────────── */
.proyectos-glass {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1400 60%, #0d0d0d 100%);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.proyectos-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(205,150,24,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(205,150,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.proyectos-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: rgb(205,150,24);
  margin-bottom: 0.5rem;
}
.proyectos-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 3.5rem;
}
.proyecto-glass-card {
  display: block;
  text-decoration: none;
  border-radius: 1.8rem;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.proyecto-glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 0 1px rgba(205,150,24,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  border-color: rgba(205,150,24,0.4);
}
.proyecto-glass-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem 1.8rem 0 0;
  background: rgba(0,0,0,0.3);
}
.proyecto-glass-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: drop-shadow(0 0 30px rgba(205,150,24,0.15));
}
.proyecto-glass-card:hover .proyecto-glass-img-wrap img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 40px rgba(205,150,24,0.35));
}
.proyecto-glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.proyecto-glass-card:hover .proyecto-glass-overlay {
  opacity: 1;
}
.proyecto-glass-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(205,150,24,0.25);
  border: 1px solid rgba(205,150,24,0.6);
  border-radius: 2rem;
  padding: 0.6rem 1.6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
}
.proyecto-glass-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}
.proyecto-glass-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 1px;
}
.proyecto-glass-dot {
  color: rgba(205,150,24,0.7);
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.proyecto-glass-card:hover .proyecto-glass-dot {
  color: rgb(205,150,24);
  transform: rotate(90deg);
}
.react-logo-spin {
  animation: spin 20s linear infinite;
  will-change: transform;
  transform-origin: center;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hputa {
  background-image: linear-gradient(90deg,rgb(205, 150, 24) 20%,rgb(45, 35, 3) 20%,rgb(45, 35, 3) 40%,rgb(156, 147, 86) 40%,rgb(156, 147, 86) 60%,rgb(251, 206, 0) 60%,rgb(251, 206, 0) 80%,rgb(75, 63, 42)80%);
  height: 1px;
}
.react {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  color: rgb(90, 75, 36);
  padding-bottom: 8%;
}
.bounce {
  font-family: 'Montserrat', sans-serif;
  background-color: rgb(19, 16, 9);
  text-align: center;
}
.jso {
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.1em;
  color: rgb(86, 68, 39);
  font-weight: 900;
}
.boun {
  padding-top: 3%;
  padding-bottom: 3%;
  width: 90%;
}
@media (max-width: 768px) {
  .boun {
    width: 100%;
    padding-top: 3%;
    padding-bottom: 3%;
  }
  .bounce dotlottie-player {
    width: 100% !important;
    max-height: 60vw;
  }
}
.nosotro {
  background-color: rgb(19, 16, 9);
  color: rgb(255, 255, 255);
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  min-height: 800px;
  display: grid;
  align-items: end;
  padding-bottom: 4rem;
  background-image: url(../img/nost.jpg);
  background-size: cover;
  background-position: center 0%;
  background-repeat: no-repeat;
}
.diseno {
  background-color: rgb(28, 25, 18);
  height: 100vh;
  min-height: 800px;
  display: grid;
  align-items: end;
  padding-bottom: 4rem;
}
.graphic-hero-shell {
  position: relative;
  overflow: hidden;
}
.graphic-hero-visual {
  --parallax-y: 0px;
  --parallax-x: 0px;
  position: absolute;
  left: 12%;
  top: 20%;
  bottom: auto;
  right: auto;
  width: clamp(320px, 38vw, 570px);
  height: clamp(320px, 38vw, 570px);
  transform: rotate(-14deg) translate(var(--parallax-x), var(--parallax-y));
  z-index: 1;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
  animation: graphicFloat 9s ease-in-out infinite;
}
.graphic-hero-frame,
.graphic-hero-orbit,
.graphic-hero-pillar,
.graphic-hero-dot {
  position: absolute;
  display: block;
}
.graphic-hero-frame {
  inset: 10% 14%;
  border: 1px solid rgba(212, 170, 86, 0.7);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 236, 177, 0.13), rgba(163, 130, 64, 0.08), rgba(10, 10, 10, 0.9));
  box-shadow: inset 0 0 20px rgba(255,255,255,0.09), 0 0 22px rgba(212,170,86,0.16);
}
.graphic-hero-orbit {
  inset: 23% 18%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 211, 118, 0.58);
  box-shadow: 0 0 18px rgba(255, 211, 118, 0.25);
  animation: graphicOrbit 10s ease-in-out infinite;
}
.graphic-hero-pillar {
  left: 39%;
  top: 11%;
  width: 18%;
  height: 74%;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(255,246,214,0.95), rgba(232,188,94,0.8), rgba(63,47,18,0.9));
  box-shadow: 0 0 18px rgba(205,150,24,0.36), inset 0 0 10px rgba(255,255,255,0.2);
  transform: rotate(18deg);
}
.graphic-hero-dot {
  right: 20%;
  bottom: 16%;
  width: 16%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8e2 0%, #f3d078 24%, #bd882f 58%, rgba(17, 10, 5, 0.7) 100%);
  box-shadow: 0 0 24px rgba(255,211,118,0.48);
  animation: graphicPulse 5s ease-in-out infinite;
}
@keyframes graphicFloat {
  0%, 100% {
    transform: rotate(-14deg) translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  }
  50% {
    transform: rotate(-10deg) translate(calc(var(--parallax-x, 0px) + 10px), calc(var(--parallax-y, 0px) + 12px));
  }
}
@keyframes graphicOrbit {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes graphicPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.graphic-btn {
    border: 1px solid rgb(156, 147, 86);
    border-radius: 2rem;
    background: rgb(102, 94, 58);
    padding: 0.9rem 1.5rem;
    font: 700 0.9rem "Montserrat", sans-serif;
    color: rgb(255, 255, 255);
    letter-spacing: 0.04em;
    transition: 0.25s ease;
}
.graphic-btn:hover {
  color: rgb(10, 8, 2);
  background: rgb(205, 150, 24);
  transform: translateY(-3px);
}
.graphic-kicker {
    color: rgb(205, 150, 24);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font: 700 0.78rem "JetBrains Mono", monospace;
    font-size: 1rem;
}
.graphic-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: clamp(3.4rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
    margin: 1rem 0 1.7rem;
    color: rgb(138, 124, 96);
}
.graphic-title em {
    color: rgb(140, 148, 92);
    font-style: normal;
}
.graphic-lead {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    line-height: 1.8;
    color: rgb(143, 119, 71);
}
.web-hero-shell {
  position: relative;
  overflow: hidden;
}
.web-hero-orb {
  position: absolute;
  left: 14%;
  bottom: 44%;
  width: clamp(160px, 28vw, 420px);
  height: clamp(160px, 28vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 218, 112, 0.92) 0%, rgba(205, 150, 24, 0.8) 18%, rgba(143, 119, 71, 0.32) 38%, rgba(30, 25, 18, 0) 72%);
  box-shadow:
    0 0 0 1px rgba(255, 215, 110, 0.3),
    0 0 30px rgba(255, 191, 69, 0.4),
    0 0 80px rgba(255, 191, 69, 0.28),
    0 0 140px rgba(255, 191, 69, 0.15);
  opacity: 0.95;
  transform: scale(1);
  animation: lunarPulse 7s ease-in-out infinite;
  z-index: 1;
}
.web-hero-core {
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4d0 0%, #f5d77a 18%, #d7a63a 52%, rgba(143, 119, 71, 0.35) 100%);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 0 18px rgba(255,255,255,0.4);
}
.web-hero-orb::before,
.web-hero-orb::after {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 205, 102, 0.32);
  opacity: 0;
  animation: lunarHalo 7s ease-in-out infinite;
}
.web-hero-orb::after {
  animation-delay: 2.2s;
  inset: -23%;
}
@keyframes lunarPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.7;
    filter: brightness(0.9);
  }
  35% {
    transform: scale(1.08);
    opacity: 1;
    filter: brightness(1.15);
  }
  65% {
    transform: scale(1.18);
    opacity: 0.9;
  }
}
@keyframes lunarHalo {
  0%, 100% {
    opacity: 0;
    transform: scale(0.86);
  }
  35% {
    opacity: 0.8;
  }
  65% {
    opacity: 0.28;
    transform: scale(1.22);
  }
}
.section-label {
  color: rgb(205, 150, 24);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font: 700 0.78rem "JetBrains Mono", monospace;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: rgb(255, 255, 255);
  margin-bottom: 1.2rem;
}
.section-title em {
  color: rgb(140, 148, 92);
  font-style: normal;
}
.section-copy {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
}
.glass-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.8rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}
.stat-box {
  display: grid;
  gap: .5rem;
  text-align: center;
  padding: 1rem 0.8rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-box strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: rgb(205, 150, 24);
}
.stat-box span {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-family: "JetBrains Mono", monospace;
}
.web-showcase {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(205, 150, 24, 0.22), transparent 28%),
    linear-gradient(135deg, #15110b 0%, #221c13 60%, #0d0d0d 100%);
  padding: 5rem 0 6rem;
}
.web-showcase img,
.model-showcase img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  border-radius: 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.model-showcase img {
  object-fit: contain;
  background: rgba(255,255,255,0.02);
  max-height: 360px;
}
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.tech-badge {
  border: 1px solid rgba(205,150,24,0.35);
  color: rgb(255,255,255);
  background: rgba(205,150,24,0.08);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.workflow-step {
  height: 100%;
  text-align: left;
  padding: 1.5rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(205,150,24,0.35);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.workflow-step .step-number {
  color: rgb(205,150,24);
  font: 700 0.8rem "JetBrains Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}
.workflow-step h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: white;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}
.workflow-step p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}
.model-hero-shell {
  position: relative;
  overflow: hidden;
}
.model-hero-3d {
  --cube-size: clamp(160px, 22vw, 300px);
  position: absolute;
  left: 14%;
  bottom: 38%;
  width: var(--cube-size);
  height: var(--cube-size);
  transform-style: preserve-3d;
  animation: cubeFloat 9s ease-in-out infinite;
  z-index: 1;
}
.model-cube-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 220, 142, 0.55);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 238, 182, 0.35), rgba(202, 146, 33, 0.18), rgba(17, 13, 8, 0.72));
  box-shadow:
    inset 0 0 22px rgba(255,255,255,0.18),
    0 0 24px rgba(232, 170, 48, 0.25);
}
.face-front  { transform: translateZ(calc(var(--cube-size) / 2)); }
.face-back   { transform: rotateY(180deg) translateZ(calc(var(--cube-size) / 2)); }
.face-right  { transform: rotateY(90deg) translateZ(calc(var(--cube-size) / 2)); }
.face-left   { transform: rotateY(-90deg) translateZ(calc(var(--cube-size) / 2)); }
.face-top    { transform: rotateX(90deg) translateZ(calc(var(--cube-size) / 2)); }
.face-bottom { transform: rotateX(-90deg) translateZ(calc(var(--cube-size) / 2)); }
@keyframes cubeFloat {
  0%, 100% {
    transform: rotateX(-28deg) rotateY(28deg) rotateZ(0deg) translateY(0);
  }
  50% {
    transform: rotateX(-18deg) rotateY(52deg) rotateZ(11deg) translateY(-16px);
  }
}
.model-showcase {
  position: relative;
  background:
    radial-gradient(circle at right center, rgba(205, 150, 24, 0.2), transparent 28%),
    linear-gradient(135deg, #0d0c09 0%, #1a160f 40%, #0d0d0d 100%);
  padding: 5rem 0 6rem;
}
.frontera {
  height: 100vh;
  background-color: rgb(19, 16, 9);
  font-family: "JetBrains Mono", monospace;
  display: grid;
  place-content: center;
  color: rgba(102, 94, 58, 0.9865);
  text-align: center;
}
.v-e {
  border: solid 0.1rem rgba(136, 115, 21, 0.4944);
  border-radius: 3rem;
  background-color: rgba(102, 94, 58, 0.865);
  padding: 0.3rem 2rem;
  color: rgb(255, 255, 255);
}
.valor {
  padding-top: 6%;
  padding-bottom: 6%;
}
.cloud {
  height: 100vh;
  min-height: 800px;
  background-color: rgb(19, 16, 9);
  display: grid;
  place-items: center;
  color: rgb(213, 190, 153);
  background-image: url(../img2/code.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.nube {
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-family: "Montserrat", sans-serif;
}
.gt {
  color: rgb(129, 112, 76);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font: 700 0.78rem "JetBrains Mono", monospace;
  font-size: 1rem;
}
.gtx {
  padding-top: 3%;
  max-width: 43rem;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.8;
  color: rgb(162, 150, 114);
  font-family: 'JetBrains Mono', monospace;
}
/* === Hosting Glass Cards === */
.hosting-glass-bg {
  background: linear-gradient(135deg, rgb(10, 8, 2) 0%, rgb(44, 35, 3) 50%, rgb(15, 12, 2) 100%);
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hosting-glass-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(205, 150, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hosting-glass-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155, 146, 86, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.plan-glass-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.04) 60%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  color: #fff;
}
/* Reflejo superior */
.plan-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 100%);
  border-radius: 2rem 2rem 0 0;
  pointer-events: none;
  z-index: 0;
}
.plan-glass-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

/* Card destacada Plan 2 */
.plan-glass-featured {
  background: linear-gradient(
    145deg,
    rgba(205, 150, 24, 0.20) 0%,
    rgba(205, 150, 24, 0.06) 60%,
    rgba(205, 150, 24, 0.14) 100%
  );
  border-color: rgba(205, 150, 24, 0.45);
  box-shadow:
    0 12px 50px rgba(205, 150, 24, 0.25),
    inset 0 1px 0 rgba(255, 215, 80, 0.4),
    inset 0 -1px 0 rgba(205, 150, 24, 0.1);
  transform: scale(1.04);
}
.plan-glass-featured:hover {
  transform: scale(1.04) translateY(-8px);
}
.plan-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgb(205, 150, 24);
  color: rgb(44, 35, 3);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  z-index: 2;
}
/* Imagen redondeada */
.plan-img-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 1.2rem 1.2rem 0;
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.2);
}
.plan-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
}
.plan-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  margin: 1.2rem 0 0.5rem;
  position: relative;
  z-index: 1;
}
.plan-features {
  list-style: none;
  padding: 0 1rem;
  margin: 1rem 0;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}
.plan-features li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.plan-features li:last-child {
  border-bottom: none;
}
.plan-features i {
  color: rgb(205, 150, 24);
  margin-right: 0.5rem;
  width: 16px;
}
.plan-bonus {
  background: rgba(205, 150, 24, 0.12);
  border: 1px solid rgba(205, 150, 24, 0.3);
  border-radius: 3rem;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.plan-bonus-title {
  font-weight: 700;
  color: rgb(205, 150, 24);
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.costo {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-weight: 900;
  font-size: 5rem;
}
.dollar {
  padding-top: 20px;
  font-size: 2rem;
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}
.iva {
  padding-top: 70px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
}
.inclinado {
  padding-top: 70px;
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}
.skid {
  padding-top:6%;
  padding-bottom: 15%;
}
.contacto {
  height: 100vh;
  background-color: rgb(15, 12, 2);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: end;
  padding-bottom: 3rem;
}
/* === Glassmorphism Formulario Contacto === */
.contacto-glass-bg {
  background:
    linear-gradient(135deg, rgb(20, 16, 5) 0%, rgb(44, 35, 3) 50%, rgb(15, 12, 2) 100%);
  background-attachment: fixed;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Orbes de luz de fondo para que el glass se vea bien */
.contacto-glass-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(205, 150, 24, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contacto-glass-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 146, 86, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.glass-form {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.5rem;
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    inset 1px 0 0 rgba(255, 255, 255, 0.15),
    inset -1px 0 0 rgba(255, 255, 255, 0.08);
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

/* Reflejo superior del glass */
.glass-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.0) 100%
  );
  border-radius: 2.5rem 2.5rem 0 0;
  pointer-events: none;
}

.fort-glass {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(205, 150, 24, 0.4);
  letter-spacing: -0.02em;
}

.glass-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

.glass-input {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 1rem !important;
  color: #ffffff !important;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 100%;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(205, 150, 24, 0.6) !important;
  box-shadow:
    0 0 0 3px rgba(205, 150, 24, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  outline: none;
}

textarea.glass-input {
  resize: vertical;
  min-height: 130px;
}

.btn-glass-submit {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(205, 150, 24, 0.7);
  color: rgb(44, 35, 3);
  background: linear-gradient(135deg, rgb(205, 150, 24) 0%, rgb(230, 175, 50) 50%, rgb(205, 150, 24) 100%);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 20px rgba(205, 150, 24, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-glass-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-glass-submit:hover::after {
  left: 150%;
}

.btn-glass-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(205, 150, 24, 0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

@media (max-width: 576px) {
  .glass-form {
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
  }
}
.service-kicker {
  color: rgb(216, 122, 5);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font: 700 0.78rem "JetBrains Mono", monospace;
  font-size: 1rem;
}
.service-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin: 1rem 0 1.7rem;
  color: rgb(243, 228, 195);
}
.service-title em {
  color: rgb(162, 150, 114);
}
.service-lead {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.8;
  font-family: "JetBrains Mono", monospace;
  color: rgb(140, 148, 92);
}
.desigraph {
  position: relative;
  overflow: hidden;
  color: rgb(111, 99, 87);
  background-color: rgb(40, 40, 40);
  padding-top: 3%;
  padding-bottom: 10%;
}
.desigraph::before {
    content: "";
    position: absolute;
    width: 44rem;
    height: 44rem;
    left: -6rem;
    bottom: -9rem;
    border-radius: 50%;
    background: 
    color-mix(in srgb, rgb(205, 150, 24) 22%, transparent);
    animation: tgFloat 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.desigraph > .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 576px) {
  .desigraph::before {
    width: 22rem;
    height: 22rem;
    left: -10rem;
    bottom: -5rem;
  }
}
@keyframes tgFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(1.5rem, -1rem) scale(1.03);
  }
}
.gruv-graph {
    height: 100%;
    padding: 2rem;
    border: 1px solid rgba(235, 219, 178, 0.12);
    border-radius: 3rem;
    background: rgb(19, 16, 9);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 12px 35px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.gruv-graph:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, rgb(180, 141, 12) 60%, transparent);
}
.gruv-graph i {
  color: rgb(205, 150, 24);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.iden {
    font: 900 clamp(2.2rem, 5vw, 4.5rem) / 1 "Montserrat", sans-serif;
    color: rgb(214, 190, 130);
    letter-spacing: -0.05em;
    padding-bottom: 5%;
}
.ion {
  font: 700 0.8rem "JetBrains Mono", monospace;
  letter-spacing: 0.18em;
  color: rgb(111, 99, 87);
  font-size: 1.3rem;
}
.gold {
  padding-top: 10%;
  padding-bottom: 10%;
}
.dre {
  display: flex;
  justify-content: space-between;
}
.tlo {
  color: rgb(156, 147, 86);
  font-size: clamp(2rem, 2vw, 3rem);
  font-family: "Montserrat", sans-serif ;
}
.f33t {
  font-family: "JetBrains Mono", monospace;
  color: rgb(111, 99, 87);
  font-size: 1.3rem;
}
.overf00x {
  background-color: rgb(19, 16, 9);
  color: rgb(111, 103, 87);
  font-size: 3rem;
  padding-top: 3%;
  padding-bottom: 2%;
  text-align: center;
}
.nest00r {
  font-family: "Montserrat", sans-serif;
  color: rgb(156, 147, 86);
}
.cul {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  color: rgb(213, 190, 153);
}
.somo {
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin: 1rem 0 1.7rem;
  color: rgb(153, 133, 52);
}
.orto {
  color: rgb(202, 129, 12);
  font-family: "Montserrat", sans-serif;
}
.or00 {
  font-family: "Montserrat", sans-serif;
  color: rgb(227, 206, 123);
}
.code {
  background: rgb(40, 40, 40);
  border: 1px solid #504945;
  border-radius: 3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.8rem, 1.1vw, 1.35rem);
  font-weight: 600;
  line-height: 1.9;
  color: rgb(235, 219, 178);
  overflow: hidden;
  padding: 1.5rem;
  text-align: left;
}
.code code {
  color: inherit;
}
.code-line {
  display: block;
  min-width: max-content;
}
.line-number {
  display: inline-block;
  width: 2.2em;
  margin-right: 1.2em;
  color: rgb(146, 131, 116);
  user-select: none;
}
.code-brace {
  color: rgb(254, 128, 25);
}
.code-string {
  color: rgb(184, 187, 38);
}
.code-function {
  color: rgb(250, 189, 47);
}
.code-punctuation {
  color: rgb(142, 192, 124);
}
.code-value {
  color: rgb(211, 134, 155);
}
.comunicar {
  min-height: 100vh;
  background: rgb(15, 12, 2);
  display: grid;
  place-content: center;
}
.mejor {
  width: 90%;
  padding-top: 6%;
  padding-bottom: 6%;
  color: rgb(174, 117, 12);
  font-family: "Montserrat", sans-serif;
  text-align: end;
}
.mejor h3 {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.tutu {
  color: rgb(140, 148, 92);
}
.yo {
  font-family: "JetBrains Mono", monospace;
  color: rgb(131, 122, 102);
  font-size: clamp(1.5rem, 1.6vw, 2rem);
  text-align: left;
  font-weight: 700;
  max-width: 92rem;
  padding-left: 4%;
  text-align: justify;
  line-height: 1.03;
  letter-spacing: -0.08em;
}
.mouse-wrapper {
  display: block;
  height: 84px;
  width: 58px;
  border: 12px solid rgba(255,255,255,0.996);
  border-radius: 35px;
  position: relative;
}
.wheel {
  display: block;
  height: 16px;
  width: 11px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 42px);
  }
}
/* =====================================================
   vWmio.jpg — SHOWCASE IMAGEN 3D
   ===================================================== */
.tg-3d-img-wrap {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.tg-3d-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3rem;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              filter 0.5s ease;
  filter: brightness(0.92) saturate(1.1);
}
.tg-3d-img-wrap:hover .tg-3d-showcase-img {
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.2);
}
.tg-3d-img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(10, 8, 2, 0.65);
  border: 1px solid rgba(205, 150, 24, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.45rem 1rem;
  border-radius: 999px;
}
.volkswagen {
  background-color: rgb(50, 42, 23);
}
.vW {
  padding-top: 8%;
  padding-bottom: 15%;
}
.dev {
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-size: clamp(4rem, 12vw, 24rem);
  font-family: "Montserrat", sans-serif;
  color: rgb(75, 68, 65);
  font-weight: 900;
}
.planes {
  padding-top: 0;
}
.idea {
  background-color: rgb(72, 60, 31);
}
.ide img {
  color: rgb(174, 117, 12);
  filter: sepia(100%) contrast(1.2) brightness(0.9);
  border: 1px solid rgba(223, 128, 3, 0.811);
  box-shadow: 0 12px 40px rgba(19, 12, 3, 0.635);
  border-radius: 2.5rem;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
}
.ide-993 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 993px) {
  .ide-993 {
    width: 50%;
  }
}
.power {
  padding-top: 8%;
  padding-bottom: 10%;
}
.idesdev {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 1rem 0 1.7rem;
  color: rgb(213, 190, 153);
  padding-bottom: 10%;
  text-shadow: 2px 4px 1px rgba(27, 23, 10, 0.832);
}
.ascii {
  position: relative;
  background-color: rgb(16, 14, 8);
  background-image: radial-gradient(ellipse at center, rgba(125, 104, 47, 0.2), transparent 72%);
  overflow: hidden;
}
.ascii::before,
.ascii::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.ascii::before {
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 231, 151, 0.08) 0,
    rgba(255, 231, 151, 0.08) 1px,
    rgba(17, 12, 3, 0.12) 1px,
    rgba(17, 12, 3, 0.12) 4px
  );
  mix-blend-mode: screen;
  animation: crt-scanlines 8s linear infinite;
}
.ascii::after {
  top: -35%;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(255, 239, 175, 0.2), transparent);
  filter: blur(5px);
  animation: crt-sweep 7s ease-in-out infinite;
}
.imago {
  position: relative;
  z-index: 1;
  padding-top: 10%;
  padding-bottom: 10%;
}
.ascii-art {
  position: relative;
  width: 100%;
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  color: transparent;
  text-align: center;
  background: linear-gradient(
    110deg,
    rgb(93, 76, 36) 0%,
    rgb(219, 181, 83) 42%,
    rgb(255, 244, 184) 50%,
    rgb(219, 181, 83) 58%,
    rgb(93, 76, 36) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(219, 181, 83, 0.42));
  animation: ascii-shimmer 5s linear infinite, ascii-float 6s ease-in-out infinite, ascii-flicker 4s steps(2, end) infinite;
}
@media (max-width: 768px) {
  .ascii .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .imago {
    padding-top: 16%;
    padding-bottom: 16%;
  }
  .ascii-art {
    font-size: clamp(0.34rem, 1.4vw, 0.9rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
  }
}
@keyframes ascii-shimmer {
  from { background-position: 150% 0; }
  to { background-position: -50% 0; }
}
@keyframes ascii-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ascii-flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.78; }
  94% { opacity: 0.96; }
}
@keyframes crt-scanlines {
  to { background-position: 0 8px; }
}
@keyframes crt-sweep {
  0%, 20% { transform: translateY(-30%); opacity: 0; }
  35% { opacity: 1; }
  65%, 100% { transform: translateY(700%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ascii::before,
  .ascii::after {
    animation: none;
  }
  .ascii-art {
    animation: none;
    color: rgb(128, 108, 59);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
}