*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img,
video,
canvas,
iframe,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.container,
.section,
.wrapper,
footer,
header {
  width: 100%;
  max-width: 100%;
}

:root {
  --header-height: 84px;
  --logo-height: 142px;
  --hero-image: url("img/fondos/imagen-2.jpg");
  --cyan: #00e8ff;
  --cyan-soft: #d8fbff;
  --text: #f2f7fb;
  --overlay: rgba(6, 10, 16, 0.62);
  --bar: linear-gradient(90deg, #08d5e6 0%, #7debf3 45%, #f4f9fc 100%);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.12);
}

html,
body {
  margin: 0;
  padding: 0;
  background: #04090f;
  font-family: "Montserrat", "Arial", sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
  overflow-x: hidden;
}

@media (max-width: 768px){

  .container,
  .section,
  .wrapper,
  footer,
  header{
    padding-left:16px;
    padding-right:16px;
    width:100%;
    max-width:100%;
  }

  h1{
    font-size:clamp(32px,8vw,46px);
    line-height:1;
  }

  h2{
    font-size:clamp(24px,6vw,32px);
  }

  p{
    font-size:15px;
    line-height:1.4;
  }

}

.site {
  width: 100%;
  padding-top: var(--header-height);
}

.panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  transition: transform 0.7s ease, opacity 0.7s ease;
  scroll-snap-align: start;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 70%, transparent 35%, rgba(0, 0, 0, 0.22) 100%);
  z-index: -1;
}

.panel-hero {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.panel-hero::before {
  display: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

html.hero-video-fallback .hero-video {
  display: none;
}

html.hero-video-fallback .panel-hero {
  background-image:
    linear-gradient(180deg, rgba(4, 10, 16, 0.34) 0%, rgba(4, 10, 16, 0.46) 100%),
    var(--hero-image);
}

html.is-safari,
html.is-safari body {
  scroll-snap-type: y proximity;
}

html.is-safari .panel {
  min-height: 100dvh;
}

html.is-safari .hero-content {
  min-height: calc(100dvh - var(--header-height));
}

html.is-safari .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.panel-services {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 210, 255, 0.1), transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(0, 255, 200, 0.06), transparent 45%),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.panel-team {
  min-height: 100vh;
  background:
    radial-gradient(circle at 22% 14%, rgba(0, 220, 255, 0.08), transparent 42%),
    radial-gradient(circle at 78% 82%, rgba(0, 255, 210, 0.05), transparent 46%),
    linear-gradient(160deg, #040b14 0%, #081521 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#inicio,
#servicios,
#proceso,
#equipo,
#clientes,
#contacto {
  scroll-margin-top: calc(var(--header-height) * 0.45);
}

#proceso {
  scroll-margin-top: calc(var(--header-height) * 0.2);
}

.panel-clients {
  background:
    radial-gradient(circle at 22% 26%, rgba(0, 210, 255, 0.08), transparent 44%),
    radial-gradient(circle at 76% 78%, rgba(0, 255, 210, 0.05), transparent 46%),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
  pointer-events: none;
}

.pre-view {
  opacity: 0.8;
  transform: scale(0.992);
}

.in-view {
  opacity: 1;
  transform: scale(1);
}

.bar {
  display: none;
}

.bar.top {
  top: 0;
}

.bar.bottom {
  bottom: 0;
}

.panel-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 80px 0;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

/* Loader */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070b10;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(120, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 190, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
}

.loader-core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.loader-mark {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  border: 1px solid rgba(160, 222, 255, 0.24);
  background: rgba(8, 19, 31, 0.68);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.12), 0 16px 32px rgba(0, 0, 0, 0.36);
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 232, 255, 0.26));
  animation: loaderPulseLogo 1.8s ease-in-out infinite;
}

.loader-brand {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #edf8ff;
  letter-spacing: 0.04em;
}

.loader-text {
  font-size: clamp(0.75rem, 1.35vw, 0.9rem);
  color: #bfe4f7;
  letter-spacing: 0.04em;
}

.loader-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 232, 255, 0.3));
  animation: loaderPulseLogo 1.6s ease-in-out infinite;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 20;
  background:
    linear-gradient(100deg, rgba(8, 10, 36, 0.94) 0%, rgba(9, 9, 28, 0.9) 62%, rgba(37, 16, 72, 0.84) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.header-inner {
  width: min(1120px, 92vw);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.08rem);
  letter-spacing: 0.02em;
}

.header-brand img {
  display: block;
  width: auto;
  height: var(--logo-height);
  max-height: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
}

.header-nav a {
  color: #e9f7ff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(0.88rem, 1.3vw, 1.04rem);
}

.nav-label-mobile {
  display: none;
}

.header-nav a:hover {
  color: var(--cyan);
}

/* Hero */
.hero-content {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(14px, 2.2vh, 26px);
}

.panel-hero .panel-content {
  padding-top: clamp(36px, 7vh, 76px);
  padding-bottom: clamp(40px, 8vh, 86px);
}

.hero-message {
  text-align: left;
  width: min(1080px, 95%);
  margin: 0 auto;
}

.hero-leadflow-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 17, 28, 0.62);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.hero-leadflow-copy {
  color: #f3fbff;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero-leadflow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid #ff9f57;
  background: linear-gradient(135deg, #ff8a2b 0%, #f97316 100%);
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.84rem, 0.96vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero-leadflow-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.32);
}

.hero-kicker {
  color: #f3fbff;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-title {
  margin-top: 16px;
  color: #f3fbff;
  font-size: clamp(1.6rem, 3.1vw, 2.9rem);
  font-weight: 800;
  line-height: 1.14;
  text-wrap: balance;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.hero-title-muted {
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 1.9vw, 1.42rem);
  font-weight: 600;
  color: #dbe8f3;
}

.hero-tagline {
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.45vw, 1.24rem);
  color: #e8f3fb;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 232, 255, 0.16);
  border: 1px solid rgba(0, 232, 255, 0.45);
  color: #f5fdff;
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 11px 16px;
  margin-top: 18px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-main-cta:hover {
  background: rgba(0, 232, 255, 0.25);
  transform: translateY(-1px);
}

.hero-proof {
  margin-top: 16px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  color: var(--cyan);
  text-align: left;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  padding: 8px 14px;
  border: 1px solid rgba(0, 232, 255, 0.26);
  border-radius: 999px;
  background: rgba(4, 18, 28, 0.42);
  display: inline-block;
}

.hero-mobile-cta {
  display: none;
}

.tagline-accent-inline {
  color: var(--cyan);
}

.contact-area {
  position: static;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  z-index: 2;
  margin-top: clamp(4px, 1.2vh, 14px);
}

.instagram {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: none;
  padding: 0;
}

.instagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.contact-copy {
  width: min(470px, 96%);
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(12, 16, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.contact-title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-brief {
  color: #d8ecf7;
  font-size: clamp(0.84rem, 0.96vw, 0.95rem);
  line-height: 1.45;
  margin-bottom: 12px;
}

.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 232, 255, 0.16);
  border: 1px solid rgba(0, 232, 255, 0.45);
  color: #f5fdff;
  text-decoration: none;
  font-size: clamp(0.88rem, 1vw, 0.97rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  margin-bottom: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-whatsapp-btn:hover {
  background: rgba(0, 232, 255, 0.25);
  transform: translateY(-1px);
}

.contact-email {
  color: #bfefff;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  color: #d9f6ff;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.35;
}

.contact-item + .contact-item {
  margin-top: 8px;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}


/* Services */
.positioning-strip {
  background: transparent;
}

.positioning-strip .panel-content {
  padding: clamp(14px, 2.4vh, 24px) 0 0;
}

.services-showcase {
  width: min(1120px, 94vw);
  min-height: 52vh;
  padding: clamp(12px, 1.6vw, 20px) 0;
  display: grid;
  gap: clamp(16px, 2.2vw, 22px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-head {
  display: grid;
  gap: 10px;
}

.services-eyebrow {
  color: #f4f8ff;
  font-size: clamp(1.75rem, 3.25vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: 800;
  text-transform: none;
}

.services-head h2 {
  color: #f4f8ff;
  font-size: clamp(1.75rem, 3.25vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.services-intro {
  color: #d7e7f3;
  font-size: clamp(0.95rem, 1.08vw, 1.04rem);
  line-height: 1.55;
  max-width: 900px;
}

.positioning-line {
  width: min(1120px, 94vw);
  margin: 0 auto clamp(16px, 2.5vw, 24px);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(147, 212, 255, 0.16);
  background: linear-gradient(145deg, rgba(9, 17, 28, 0.72) 0%, rgba(10, 20, 34, 0.66) 100%);
  color: #dff3ff;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.01em;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  grid-column: span 2;
  min-height: clamp(186px, 20vw, 214px);
  padding: 20px 20px 18px;
  border: 1px solid rgba(146, 210, 255, 0.16);
  background: linear-gradient(155deg, rgba(12, 22, 35, 0.72) 0%, rgba(11, 20, 32, 0.66) 100%);
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.services-cards .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.services-cards .service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-icon {
  display: none;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.service-icon::before {
  inset: 7px;
  border: 1.6px solid rgba(160, 241, 255, 0.9);
  border-left-color: transparent;
}

.service-icon::after {
  width: 4px;
  height: 4px;
  background: #79f4ff;
  right: 6px;
  top: 6px;
}

.service-content {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.service-title {
  color: #f0f9ff;
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.22;
  text-wrap: balance;
  text-transform: none;
}

.service-description {
  color: #d3e6f3;
  font-size: clamp(0.96rem, 1.06vw, 1.04rem);
  line-height: 1.44;
  letter-spacing: 0.01em;
  margin-top: 0;
  max-height: none;
  opacity: 0.95;
  transform: none;
  overflow: visible;
  transition: opacity 0.25s ease;
}


.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
  background: linear-gradient(155deg, rgba(14, 25, 40, 0.78) 0%, rgba(13, 24, 38, 0.72) 100%);
  border-color: rgba(112, 213, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.27), 0 0 0 1px rgba(0, 210, 255, 0.08);
}

.service-card:hover .service-description,
.service-card:focus-visible .service-description,
.service-card:focus-within .service-description {
  opacity: 1;
}

.service-card:focus-visible {
  outline: 1px solid rgba(0, 232, 255, 0.35);
  outline-offset: 4px;
}

.panel-why {
  min-height: 72vh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 24%, rgba(0, 214, 255, 0.1), transparent 58%),
    radial-gradient(circle at 82% 74%, rgba(0, 255, 200, 0.06), transparent 60%),
    linear-gradient(160deg, #030a12 0%, #071a2d 100%);
}

.panel-why .panel-content {
  padding: clamp(34px, 4.8vh, 56px) 0;
}

.panel-process {
  min-height: 72vh;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 180, 255, 0.08), transparent 56%),
    radial-gradient(circle at 18% 82%, rgba(0, 255, 200, 0.04), transparent 58%),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.panel-process .panel-content {
  padding: clamp(34px, 4.8vh, 56px) 0;
}

.panel-why::before,
.panel-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.panel-why::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(0, 214, 255, 0.06), transparent 62%),
    radial-gradient(circle at 48% 56%, rgba(130, 195, 255, 0.03), transparent 70%);
  filter: blur(8px);
}

.panel-process::before {
  background:
    linear-gradient(rgba(120, 180, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
}

.value-showcase,
.process-showcase {
  position: relative;
  background: linear-gradient(145deg, rgba(8, 16, 27, 0.82) 0%, rgba(9, 19, 33, 0.76) 100%);
  border: 1px solid rgba(140, 200, 255, 0.12);
  border-radius: 16px;
  padding: clamp(28px, 4.4vw, 48px);
  display: grid;
  gap: 24px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(160, 214, 255, 0.07);
  backdrop-filter: blur(3px);
}

.process-showcase {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: clamp(10px, 1.5vw, 18px) 0;
  gap: 16px;
}

.value-showcase::after,
.process-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 16% 10%, rgba(0, 214, 255, 0.1), transparent 34%);
  opacity: 0.45;
}

.process-showcase::after {
  display: none;
}

.value-head,
.process-head {
  display: grid;
  gap: 10px;
}

.value-head h2,
.process-head h2 {
  font-size: clamp(1.75rem, 3.3vw, 2.7rem);
  color: #f4f9ff;
  line-height: 1.05;
}

.value-head h2 {
  color: #f7fbff;
}

.value-head p,
.process-head p {
  color: #d9e8f4;
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.5;
  max-width: 840px;
}

.value-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.process-step {
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(16, 24, 36, 0.76) 0%, rgba(15, 23, 34, 0.7) 100%);
  border: 1px solid rgba(150, 209, 255, 0.16);
  display: grid;
  gap: 9px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(194, 234, 255, 0.04);
}

.process-step:hover,
.process-step:focus-within {
  transform: translateY(-2px);
  border-color: rgba(125, 208, 255, 0.26);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(0, 190, 255, 0.08);
}

.value-card:hover,
.value-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(125, 208, 255, 0.26);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(0, 190, 255, 0.08);
}

.value-card h3,
.process-step h3 {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  color: #f4fbff;
  line-height: 1.2;
}

.value-card h3 {
  color: var(--cyan);
}

.value-card p,
.process-step p {
  color: #d7e8f2;
  font-size: clamp(0.82rem, 0.96vw, 0.92rem);
  line-height: 1.42;
}

.process-step span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #051019;
  background: linear-gradient(145deg, #17def9 0%, #58f2ff 100%);
  box-shadow: 0 0 0 1px rgba(8, 28, 44, 0.35), 0 8px 16px rgba(0, 190, 255, 0.2);
  font-size: 0.84rem;
  font-weight: 700;
}

/* Team */
.team-half {
  width: min(1280px, 96vw);
  padding-top: 36px;
  padding-bottom: 36px;
}

.team-intro {
  margin-bottom: 16px;
}

.team-intro h2 {
  color: #f3fbff;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 20ch;
}

.team-intro p {
  color: #d8ebf8;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.45;
  max-width: 900px;
}

.team-layout {
  min-height: 52vh;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.team-member {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.member-cyan {
  background: rgba(22, 174, 226, 0.72);
  color: #ffffff;
}

.member-dark {
  background: rgba(13, 16, 22, 0.72);
  color: #ffffff;
}

.member-light {
  background: rgba(237, 242, 247, 0.72);
  color: #0d1117;
}

.team-member h3 {
  font-size: clamp(1.65rem, 2.5vw, 3rem);
  line-height: 0.98;
  font-weight: 800;
}

.team-member p {
  font-size: clamp(0.9rem, 1.15vw, 1.28rem);
  line-height: 1.2;
  font-weight: 700;
}

.team-role {
  margin-top: 2px;
  font-size: clamp(1.02rem, 1.15vw, 1.26rem);
  line-height: 1.2;
  font-weight: 700;
}

.team-role-sub {
  font-size: clamp(0.76rem, 0.82vw, 0.93rem);
  line-height: 1.34;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 26ch;
  opacity: 0.95;
}

.member-cyan .team-role-sub,
.member-dark .team-role-sub {
  color: #e8f6ff;
}

.member-light .team-role-sub {
  color: #1e2835;
}

.team-photo-wrap {
  margin-top: auto;
  margin-bottom: 8px;
  width: min(220px, 86%);
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  transform: rotateY(0deg);
  transform-origin: center;
  backface-visibility: visible;
}

.team-member:hover .team-photo-wrap img {
  transform: rotateY(180deg);
}

/* Clients */
.logos-content {
  display: grid;
  gap: 36px;
}

.clients-intro,
.clients-subintro {
  color: #d8eaf6;
  text-align: center;
  line-height: 1.45;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  max-width: 920px;
  margin: 0 auto;
}

.panel-clients .panel-content {
  padding: clamp(36px, 5vh, 56px) 0;
}

.panel-clients .logos-content {
  gap: 24px;
}

.section-title {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.8vw, 5.2rem);
  line-height: 0.98;
  text-decoration: none;
  text-align: center;
}

.trust-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  background: linear-gradient(90deg, #7debf3 0%, #f3fbff 50%, #00e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.03em;
}

.trust-title span {
  color: #ffffff;
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
  opacity: 0.92;
}

.trust-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(220px, 64%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
}

.logos-group {
  display: grid;
  gap: 18px;
}

.panel-clients .logos-group {
  gap: 12px;
}

.logos-subtitle {
  color: #d9f7ff;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  letter-spacing: 0.14em;
  border-left: 3px solid var(--cyan);
  padding-left: 10px;
}

.logo-grid {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.clients-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.panel-clients .clients-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.panel-clients .partners-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo {
  display: grid;
  place-items: center;
  min-height: 150px;
  text-align: center;
}

.panel-clients .logo {
  min-height: 122px;
}

.logo-image {
  min-height: 160px;
  padding: 16px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-clients .logo-image {
  min-height: 128px;
  padding: 12px;
}

.logo-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.logo-image img {
  width: 100%;
  max-width: 190px;
  max-height: 92px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.panel-clients .logo-image img {
  max-height: 74px;
}

.quantumlabs-logo {
  max-width: 330px;
  max-height: 150px;
}

.panel-contact {
  min-height: 56vh;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(0, 232, 255, 0.1), transparent 40%),
    linear-gradient(135deg, #061222 0%, #070f1c 60%, #0a0f1a 100%);
}

.contact-panel-content {
  padding: clamp(36px, 5vw, 64px) 0;
}

.contact-section-card {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(6px, 1vw, 12px) 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 16px;
}

.contact-section-intro {
  display: grid;
  gap: 10px;
}

.contact-section-kicker {
  color: #8ad9f4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-section-intro h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.06;
  color: #ffffff;
}

.contact-section-intro p {
  max-width: 720px;
  font-size: clamp(0.97rem, 1.25vw, 1.12rem);
  color: #d3e8f6;
  line-height: 1.5;
}

.contact-main-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 11px 18px;
  border-radius: 12px;
  background: rgba(0, 232, 255, 0.18);
  border: 1px solid rgba(0, 232, 255, 0.46);
  color: #f7fdff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.08vw, 1rem);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-main-cta:hover {
  background: rgba(0, 232, 255, 0.28);
  transform: translateY(-1px);
}

.contact-instagram-link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c5ecfb;
  text-decoration: none;
  font-size: 0.92rem;
  width: fit-content;
}

.contact-instagram-link img,
.contact-instagram-link svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 20px;
}

.contact-instagram-link:hover {
  color: #ffffff;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-box {
  border-radius: 8px;
  padding: 16px 15px;
  background: rgba(6, 14, 24, 0.45);
  border: 1px solid rgba(192, 236, 255, 0.12);
  display: grid;
  gap: 8px;
}

.contact-box h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9bdff7;
}

.contact-box p {
  font-size: 1rem;
  color: #e7f3fb;
}

.contact-box a {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  font-weight: 700;
  text-decoration: none;
}

.contact-box a:hover {
  color: var(--cyan);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float::before {
  content: "Hablemos de tu proyecto";
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e9fbff;
  background: rgba(6, 14, 24, 0.9);
  border: 1px solid rgba(165, 230, 255, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.mobile-whatsapp-bar {
  display: none;
}

@keyframes heroBackgroundMotion {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
    background-position: 50% 50%;
  }

  50% {
    transform: scale(1.09) translate3d(-1.2%, -1%, 0);
    background-position: 49% 48%;
  }

  100% {
    transform: scale(1.07) translate3d(1.4%, 1.2%, 0);
    background-position: 52% 51%;
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.12), 0 16px 32px rgba(0, 0, 0, 0.36);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.22), 0 20px 34px rgba(0, 0, 0, 0.4);
  }
}

@keyframes loaderPulseLogo {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.86;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes loaderRotate {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes loaderAutoHide {
  0%,
  80% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 1100px) {
  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .panel-content {
    padding: 70px 0;
  }

  .services-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .services-cards .service-card:nth-child(4),
  .services-cards .service-card:nth-child(5) {
    grid-column: auto;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 20px);
    align-content: center;
  }

  .contact-area {
    position: static;
    justify-content: center;
    margin-top: 18px;
  }

  .hero-message {
    text-align: center;
  }

  .hero-leadflow-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .hero-leadflow-btn {
    width: 100%;
  }

  .logo {
    min-height: 120px;
  }

  .panel-clients .panel-content {
    padding: 44px 0;
  }

  .panel-clients .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel-clients .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (hover: none) and (pointer: coarse) {
  .service-content {
    gap: 8px;
  }

  .service-description {
    margin-top: 0;
    max-height: none;
    opacity: 0.92;
    transform: none;
    overflow: visible;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 62px;
    --logo-height: 36px;
  }

  html,
  body {
    scroll-snap-type: y proximity;
  }

  .panel-content {
    padding: 42px 0;
  }

  .instagram {
    margin-bottom: 0;
  }

  .contact-copy {
    width: min(430px, 100%);
    padding: 12px 14px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 4px;
    font-size: 0.86rem;
  }

  .header-inner {
    width: min(1120px, 96vw);
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 0 3px;
  }

  .header-brand {
    min-width: 66px;
    max-width: 82px;
  }

  .header-brand img {
    width: 100%;
    max-width: 82px;
    height: var(--logo-height);
    object-fit: contain;
  }

  .header-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 4px;
    max-width: none;
    overflow: visible;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .header-nav a {
    font-size: clamp(0.53rem, 2.2vw, 0.64rem);
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .nav-label-full {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 2px);
    gap: 8px;
  }

  .hero-title {
    font-size: clamp(1.06rem, 5.2vw, 1.38rem);
    line-height: 1.18;
    text-wrap: balance;
    max-width: 19ch;
    margin-inline: auto;
  }

  .hero-tagline {
    font-size: clamp(0.86rem, 3.8vw, 1rem);
    margin-top: 10px;
  }

  .hero-main-cta {
    margin-top: 14px;
  }

  .hero-proof {
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0;
    border: 0;
    background: transparent;
    text-shadow: none;
    color: rgba(216, 243, 255, 0.9);
    display: block;
    text-align: center;
  }

  .hero-mobile-cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 11px;
    background: rgba(0, 232, 255, 0.18);
    border: 1px solid rgba(0, 232, 255, 0.4);
    color: #f7fdff;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .contact-area {
    display: none;
  }

  .services-eyebrow {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .services-showcase {
    padding: 14px 12px;
    gap: 12px;
  }

  .service-card {
    grid-column: auto;
  }

  .service-card {
    padding: 12px 12px 11px;
    gap: 0;
    min-height: auto;
  }

  .service-title {
    font-size: clamp(0.86rem, 3.95vw, 0.97rem);
    line-height: 1.2;
  }

  .service-description {
    font-size: clamp(0.78rem, 3.25vw, 0.86rem);
    line-height: 1.35;
  }

  .services-footer-main {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }

  .services-footer-sub {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    letter-spacing: 0.04em;
  }

  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .panel-contact {
    min-height: auto;
  }

  .contact-section-card {
    padding: 0;
    gap: 10px;
  }

  .contact-section-intro {
    gap: 6px;
  }

  .contact-section-intro h2 {
    font-size: clamp(1.24rem, 5.2vw, 1.5rem);
  }

  .contact-section-intro p {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-box {
    padding: 11px;
  }

  .contact-box:nth-child(2) {
    order: -2;
  }

  .contact-box:nth-child(1) {
    order: -1;
  }

  .contact-main-cta {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .header-brand {
    min-width: 62px;
    max-width: 74px;
  }

  .header-brand img {
    max-width: 74px;
  }

  .header-nav {
    gap: 3px;
  }

  .header-nav a {
    font-size: 0.5rem;
    letter-spacing: 0;
  }
}

@media (max-width: 768px) {
  .hero-video {
    display: block;
  }

  .panel-hero .panel-content {
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .site {
    padding-bottom: 78px;
  }

  .whatsapp-float {
    display: none;
  }

  .whatsapp-float::before {
    display: none;
  }

  .mobile-whatsapp-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 48px;
    border-radius: 12px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    z-index: 9998;
  }
}

@media (max-width: 640px) {
  .bar {
    height: 14px;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 18px);
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .panel-clients .clients-grid,
  .panel-clients .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .panel-clients .logo-image {
    min-height: 118px;
    padding: 14px;
  }

  .process-showcase {
    padding: 14px 12px;
    gap: 14px;
  }

  .team-intro h2 {
    font-size: clamp(1.12rem, 6vw, 1.35rem);
  }

  .team-member {
    padding: 14px 12px;
    gap: 6px;
  }

  .team-member h3 {
    font-size: clamp(1.28rem, 8.2vw, 1.72rem);
    line-height: 0.98;
  }

  .team-role {
    font-size: clamp(0.82rem, 3.7vw, 0.95rem);
    line-height: 1.22;
  }

  .team-role-sub {
    font-size: 0.76rem;
    line-height: 1.24;
    max-width: 34ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .team-half {
    width: min(430px, 94vw);
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .team-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 12px;
  }

  .team-photo-wrap {
    width: min(128px, 44%);
    margin-top: 8px;
    margin-bottom: 0;
    border-radius: 12px;
  }

  .team-member:hover .team-photo-wrap img {
    transform: none;
  }
}


















/* LeadFlow form (contact section) */
.leadflow-form-wrap {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(99, 233, 255, 0.28);
  background: rgba(5, 13, 24, 0.72);
  border-radius: 14px;
  max-width: 720px;
}

.leadflow-form-wrap h3 {
  margin: 0 0 8px;
  color: #e9f8ff;
}

.leadflow-form-wrap p {
  margin: 0 0 16px;
  color: rgba(233, 248, 255, 0.84);
}

.leadflow-form {
  display: grid;
  gap: 12px;
}

.leadflow-form label {
  display: grid;
  gap: 6px;
  color: rgba(233, 248, 255, 0.92);
  font-size: 0.95rem;
}

.leadflow-form input,
.leadflow-form textarea {
  width: 100%;
  border: 1px solid rgba(99, 233, 255, 0.3);
  background: rgba(8, 17, 29, 0.88);
  color: #f5fcff;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
}

.leadflow-form textarea {
  resize: vertical;
  min-height: 96px;
}

.leadflow-form-submit {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  color: #07111c;
  background: linear-gradient(135deg, #2fd9ef 0%, #7cf1ff 100%);
}

.leadflow-form-status {
  margin: 2px 0 0;
  min-height: 20px;
  font-size: 0.9rem;
}

.leadflow-form-status.is-success {
  color: #87f8b7;
}

.leadflow-form-status.is-error {
  color: #ff9b9b;
}

@media (max-width: 640px) {
  .leadflow-form-wrap {
    margin-top: 20px;
    padding: 16px;
  }
}

