@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

/* ==========================================================
   01. VARIABLES
========================================================== */
:root {
  --bg: #020817;
  --bg-soft: #020b25;
  --bg-card: #06112b;
  --bg-card-strong: #071a3f;
  --blue: #2e9bff;
  --cyan: #7bdcff;
  --purple: #8b5cff;
  --text: #ffffff;
  --muted: #b8c7e8;
  --muted-strong: #93a8cf;
  --border: rgba(46, 155, 255, 0.28);
  --border-strong: rgba(123, 220, 255, 0.62);
  --shadow-blue: rgba(46, 155, 255, 0.22);
  --container: 1440px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
}

/* ==========================================================
   02. RESET Y BASE
========================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #ffffff;
  background: rgba(46, 155, 255, 0.55);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ==========================================================
   03. COMPONENTES GENERALES
========================================================== */
.section {
  position: relative;
  padding: 112px 64px;
  overflow: hidden;
  background: var(--bg-soft);
}

.section-alt {
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 155, 255, 0.1), transparent 38%),
    #020817;
}

.section-header {
  width: min(980px, 100%);
  margin: 0 auto 70px;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-header h2,
.footer-cta h2 {
  color: var(--cyan);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.section-header h2 {
  margin-bottom: 24px;
}

.section-header p,
.footer-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 18px 32px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2e9bff, #27c3ff);
  box-shadow: 0 0 24px rgba(46, 155, 255, 0.32);
}

.btn-secondary {
  color: var(--blue);
  border: 2px solid var(--blue);
  background: rgba(2, 8, 23, 0.38);
}

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

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(46, 155, 255, 0.55);
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: var(--cyan);
  background: rgba(46, 155, 255, 0.12);
}

/* ==========================================================
   04. HERO Y NAVBAR
========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 28px 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.99) 0%, rgba(2, 8, 23, 0.88) 34%, rgba(2, 8, 23, 0.2) 72%),
    url("../assets/images/hero-bg.png") center / cover no-repeat;
}

.navbar {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 0;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    padding var(--transition);
}

.navbar.navbar-scrolled,
.navbar.is-scrolled {
  position: fixed;
  top: 14px;
  right: 24px;
  left: 24px;
  width: auto;
  max-width: none;
  padding: 14px 22px;
  border: 1px solid rgba(123, 220, 255, 0.16);
  border-radius: 18px;
  background: rgba(2, 8, 23, 0.78);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-logo,
.footer-brand-logo {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.brand-name {
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  transition: color var(--transition);
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-portfolio-link {
  color: #d9e9ff;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #27c3ff);
  box-shadow: 0 0 20px rgba(46, 155, 255, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(46, 155, 255, 0.42);
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 100px);
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.hero-text {
  width: 100%;
  max-width: 780px;
}

.hero h1 {
  max-width: 780px;
  color: var(--cyan);
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -2.6px;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
  margin-top: 24px;
  color: var(--blue);
}

.hero-tags {
  margin-top: 28px;
  color: #9fc8ff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.hero-description {
  max-width: 720px;
  margin-top: 38px;
  color: #f3f7ff;
  font-size: 21px;
  line-height: 1.7;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

/* ==========================================================
   05. MARQUEE DE TECNOLOGÍAS EN HERO
========================================================== */
.partners {
  width: 100%;
  max-width: 760px;
  margin-top: 64px;
  overflow: hidden;
}

.partners > p {
  margin-bottom: 22px;
  color: #9fc8ff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.partners-marquee {
  position: relative;
  width: 100%;
  padding: 12px 0;
  overflow: hidden;
}

.partners-marquee::before,
.partners-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 72px;
  height: 100%;
  content: "";
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, 1), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 8, 23, 1), transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-track img {
  width: auto;
  height: 50px;
  max-width: 165px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(46, 155, 255, 0.24));
  transition: opacity var(--transition), transform var(--transition), filter var(--transition);
}

.partners-track img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(46, 155, 255, 0.68));
  transform: translateY(-3px) scale(1.05);
}

@keyframes partnerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================
   06. SERVICIOS
========================================================== */
.services-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 155, 255, 0.1), transparent 36%),
    #020b25;
}

.visual-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: min(1640px, calc(100% - 48px));
  margin: 0 auto;
}

.visual-service-card{

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:26px;

    background:#071225;

    border:1px solid rgba(89,170,255,.18);

    transition:.45s cubic-bezier(.22,1,.36,1);

    box-shadow:

        0 15px 45px rgba(0,0,0,.30);

}

.visual-service-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.04) 0%, rgba(2, 8, 23, 0.2) 34%, rgba(2, 8, 23, 0.95) 100%);
}

.visual-service-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at 50% 75%, rgba(46, 155, 255, 0.24), transparent 50%);
  transition: opacity 0.35s ease;
}

.visual-service-card img{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    transition:1.2s;

}

.visual-service-content{

    padding:32px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.service-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.visual-service-content h3 {
  max-width: 95%;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 900;
}

.visual-service-content p {
  max-width: 96%;
  color: #c3d1ed;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-link,
.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  transition: color var(--transition), transform var(--transition);
}

.service-link {
  opacity: 0;
  transform: translateY(14px);
}

.service-link span,
.sector-link span {
  font-size: 19px;
  transition: transform var(--transition);
}

.service-link:hover,
.sector-link:hover {
  color: #ffffff;
}

.service-link:hover span,
.sector-link:hover span {
  transform: translateX(5px);
}
.service-category{

    display:inline-flex;

    width:max-content;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(46,155,255,.12);

    color:#74D8FF;

    font-size:.72rem;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:700;

}

.visual-service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36), 0 0 34px rgba(46, 155, 255, 0.22);
}

.visual-service-card:hover::after { opacity: 1; }
.visual-service-card:hover img { transform: scale(1.08); filter: saturate(1.12) brightness(1.05); }
.visual-service-card:hover .visual-service-content { transform: translateY(0); }
.visual-service-card:hover .visual-service-content p,
.visual-service-card:hover .service-link { opacity: 1; transform: translateY(0); }

.service-ai img { object-position: 68% center; }
.service-cyber img { object-position: 63% center; }
.service-cloud img { object-position: 67% center; }
.service-development img { object-position: 71% center; }
.service-security img { object-position: 68% center; }
.service-automation img { object-position: 70% center; }

/* ==========================================================
   07. CONFIANZA
========================================================== */
.section-trust {
  background:
    radial-gradient(circle at 50% 10%, rgba(46, 155, 255, 0.08), transparent 36%),
    #020b25;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.trust-card,
.process-card,
.sector-card,
.technology-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(8, 23, 52, 0.9), rgba(3, 13, 32, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.trust-card {
  min-height: 320px;
  padding: 36px;
  border-radius: 22px;
}

.trust-card:hover,
.process-card:hover,
.sector-card:hover,
.technology-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.34), 0 0 28px rgba(46, 155, 255, 0.13);
}

.trust-icon,
.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border: 1px solid rgba(123, 220, 255, 0.32);
  border-radius: 18px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(46, 155, 255, 0.14), rgba(139, 92, 255, 0.08));
}

.trust-icon svg,
.process-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-number,
.process-number,
.sector-number {
  color: rgba(123, 220, 255, 0.24);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.trust-number {
  position: absolute;
  top: 30px;
  right: 32px;
}

.trust-card h3,
.process-card h3,
.sector-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
}

.trust-card p,
.process-card p,
.sector-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* ==========================================================
   08. METODOLOGÍA
========================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.process-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 22px;
}

.process-number {
  display: block;
  margin-bottom: 24px;
}

.process-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
}

.process-icon svg {
  width: 34px;
  height: 34px;
}

.process-card h3 {
  font-size: 22px;
}

/* ==========================================================
   09. SECTORES
========================================================== */
.sectors-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 92, 255, 0.09), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(46, 155, 255, 0.09), transparent 30%),
    #020b25;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.sector-card {
  min-height: 290px;
  padding: 32px;
  border-radius: 22px;
}

.sector-number {
  display: block;
  margin-bottom: 28px;
}

.sector-card h3 {
  font-size: 25px;
}

.sector-link {
  margin-top: 28px;
}

/* ==========================================================
   10. TECNOLOGÍAS
========================================================== */
.technologies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.technology-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  padding: 26px 28px;
  border-radius: 20px;
}

.technology-card img {
  width: 110px;
  height: 58px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(46, 155, 255, 0.2));
}

.technology-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

/* ==========================================================
   11. MÉTRICAS
========================================================== */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 90px 64px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(46, 155, 255, 0.08), transparent 52%),
    #020817;
}

.stat-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.stat-item:last-child { border-right: 0; }

.stat-number {
  display: block;
  min-height: 58px;
  color: var(--blue);
  font-size: clamp(40px, 3.4vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 0 24px rgba(46, 155, 255, 0.22);
  font-variant-numeric: tabular-nums;
  transition: color var(--transition), text-shadow var(--transition), transform var(--transition);
}

.stat-item:hover .stat-number {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(123, 220, 255, 0.38);
  transform: translateY(-4px);
}

.stat-item > span {
  display: block;
  max-width: 190px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.stat-static { letter-spacing: -3px; }

/* ==========================================================
   12. FOOTER CORPORATIVO
========================================================== */
.site-footer {
  position: relative;
  padding: 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(46, 155, 255, 0.12), transparent 35%),
    #010613;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 60px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 100px 0 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-content {
  max-width: 760px;
}

.footer-cta h2 {
  margin-bottom: 22px;
}

.footer-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.footer-cta-actions .btn {
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(160px, 0.75fr));
  gap: 50px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 78px 0 64px;
}

.footer-brand-column p {
  max-width: 470px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  color: #a9bce0;
  font-size: 14px;
}

.footer-contact-list a:hover,
.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-column h3 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  transition: color var(--transition), transform var(--transition);
}

.footer-column a:hover {
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f93b8;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

/* ==========================================================
   13. WHATSAPP FLOTANTE
========================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: #21c063;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(33, 192, 99, 0.28);
}

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

/* ==========================================================
   14. MENÚ MÓVIL
========================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.is-open,
.mobile-menu.active,
.mobile-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  min-height: 100%;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(46, 155, 255, 0.16), transparent 36%),
    #020817;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.38);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu-panel,
.mobile-menu.active .mobile-menu-panel,
.mobile-menu[aria-hidden="false"] .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile-menu-brand .brand-name {
  max-width: 160px;
}

.menu-close {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123, 220, 255, 0.22);
  border-radius: 12px;
  background: rgba(46, 155, 255, 0.08);
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.mobile-menu-links a {
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #dce9ff;
  font-size: 18px;
  font-weight: 800;
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu-links a:hover {
  padding-left: 8px;
  color: var(--cyan);
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 28px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
  color: #96aacf;
  font-size: 13px;
  line-height: 1.5;
}

/* ==========================================================
   15. RESPONSIVE
========================================================== */
@media (max-width: 1500px) {
  .visual-services-grid {
    width: min(1180px, calc(100% - 48px));
    gap: 24px;
  }

  .visual-service-card { min-height: 390px; }
  .visual-service-content h3 { font-size: 26px; }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1180px) {
  .hero { padding: 26px 28px; }
  .section { padding-right: 28px; padding-left: 28px; }
  .site-footer { padding-right: 28px; padding-left: 28px; }

  .nav-links-desktop { display: none; }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid rgba(123, 220, 255, 0.26);
    border-radius: 14px;
    background: rgba(2, 8, 23, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform var(--transition), opacity var(--transition);
  }

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

  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { width: min(940px, 100%); }

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

  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stat-item:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.1); }

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, minmax(160px, 1fr));
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }

  .hero {
    min-height: auto;
    padding: 18px 20px 42px;
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.99), rgba(2, 8, 23, 0.93)),
      url("../assets/images/hero-bg.png") center / cover no-repeat;
  }

  .navbar { padding: 4px 0; }

  .navbar.navbar-scrolled,
  .navbar.is-scrolled {
    top: 10px;
    right: 12px;
    left: 12px;
    padding: 10px 12px;
  }

  .brand { gap: 10px; }
  .brand-logo { font-size: 30px; }
  .brand-name { max-width: 170px; font-size: 12px; }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    min-height: auto;
    padding: 70px 0 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.03;
    letter-spacing: -1.8px;
  }

  .hero h1 span { margin-top: 18px; }
  .hero-tags { margin-top: 24px; font-size: 13px; }
  .hero-description { margin-top: 30px; font-size: 17px; line-height: 1.65; }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 36px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding: 17px 20px;
  }

  .partners { margin-top: 48px; }
  .partners-track { gap: 38px; animation-duration: 22s; }
  .partners-track img { height: 38px; max-width: 128px; }

  .section { padding: 78px 20px; }
  .section-header { margin-bottom: 46px; }
  .section-header h2,
  .footer-cta h2 { font-size: 40px; letter-spacing: -1px; }
  .section-header p,
  .footer-cta p { font-size: 16px; line-height: 1.7; }

  .visual-services-grid,
  .trust-grid,
  .process-grid,
  .sectors-grid,
  .technologies-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 22px;
  }

  .visual-service-card {
    min-height: 410px;
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .visual-service-content {
    padding: 26px;
    transform: none;
  }

  .visual-service-content h3 { font-size: 27px; }
  .visual-service-content p,
  .service-link { opacity: 1; transform: none; }

  .service-ai img { object-position: 70% center; }
  .service-cyber img { object-position: 67% center; }
  .service-cloud img { object-position: 70% center; }
  .service-development img { object-position: 73% center; }
  .service-security img { object-position: 70% center; }
  .service-automation img { object-position: 73% center; }

  .trust-card,
  .process-card,
  .sector-card {
    min-height: auto;
    padding: 27px;
  }

  .trust-number { top: 26px; right: 26px; }

  .technology-card {
    min-height: 130px;
    padding: 22px;
  }

  .technology-card img {
    width: 92px;
    height: 50px;
  }

  .stats {
    grid-template-columns: 1fr;
    padding: 68px 20px;
  }

  .stat-item,
  .stat-item:nth-child(2),
  .stat-item:last-child {
    grid-column: auto;
    min-height: 120px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child { border-bottom: 0; }

  .site-footer { padding: 0 20px; }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 78px 0 68px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 58px 0 48px;
  }

  .footer-column:last-child { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }

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

@media (max-width: 420px) {
  .brand-name { max-width: 130px; }
  .mobile-menu-panel { padding: 20px; }
  .mobile-menu-links a { font-size: 17px; }
  .section-header h2,
  .footer-cta h2 { font-size: 36px; }
  .technology-card { align-items: flex-start; }
  .technology-card img { width: 82px; }
}

/* ==========================================================
   16. ACCESIBILIDAD
========================================================== */
:focus-visible {
  outline: 3px solid rgba(123, 220, 255, 0.9);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ==========================================================
   PREMIUM UI - SCROLL REVEAL
========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.reveal-left {
  transform: translateX(-42px);
}

.reveal.reveal-right {
  transform: translateX(42px);
}

.reveal.reveal-scale {
  transform: translateY(24px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-hero {
  transform: translateY(32px);
}

.reveal-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================
   PREMIUM UI - TARJETAS
========================================================== */

.visual-service-card,
.trust-card,
.process-card,
.sector-card,
.technology-card {
  position: relative;
}

.visual-service-card::after,
.trust-card::before,
.process-card::before,
.sector-card::before,
.technology-card::before {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.trust-card,
.process-card,
.sector-card,
.technology-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.trust-card:hover,
.process-card:hover,
.sector-card:hover,
.technology-card:hover {
  transform: translateY(-9px);
  border-color: rgba(123, 220, 255, 0.62);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(46, 155, 255, 0.16);
}


/* ==========================================================
   PREMIUM UI - BOTONES
========================================================== */

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  position: absolute;
  top: -50%;
  left: -120%;

  width: 55%;
  height: 200%;

  content: "";

  background:
    linear-gradient(
      110deg,
      transparent,
      rgba(255, 255, 255, 0.32),
      transparent
    );

  transform: rotate(15deg);

  transition: left 0.65s ease;

  pointer-events: none;
}

.btn:hover::before {
  left: 145%;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}


/* ==========================================================
   PREMIUM UI - WHATSAPP
========================================================== */

.whatsapp-float {
  animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0);
  }

  50% {
    box-shadow:
      0 15px 38px rgba(0, 0, 0, 0.34),
      0 0 0 11px rgba(37, 211, 102, 0.08);
  }
}


/* ==========================================================
   PREMIUM UI - ACCESIBILIDAD
========================================================== */

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .reveal.reveal-scale,
  .reveal-hero {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .btn::before {
    display: none;
  }
}
/* ==========================================================
   PREMIUM UI - NAVBAR ACTIVE STATE
========================================================== */

:root {
  --navbar-offset: 96px;
}

section[id],
footer[id] {
  scroll-margin-top: var(--navbar-offset);
}

.navbar {
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.navbar-scrolled {
  padding: 14px 22px;

  border:
    1px solid rgba(123, 220, 255, 0.14);

  border-radius: 18px;

  background:
    rgba(2, 8, 23, 0.82);

  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-links a {
  position: relative;
}

.nav-links a.active {
  color: var(--cyan);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta.active {
  color: #ffffff;
}

.mobile-menu-links a {
  position: relative;

  transition:
    color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.mobile-menu-links a.active {
  color: var(--cyan);

  background:
    rgba(46, 155, 255, 0.08);

  transform: translateX(6px);
}

.mobile-menu-links a.active::before {
  position: absolute;
  top: 50%;
  left: 0;

  width: 3px;
  height: 60%;

  content: "";

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      var(--blue),
      var(--cyan)
    );

  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  :root {
    --navbar-offset: 82px;
  }

  .navbar-scrolled {
    padding: 12px 16px;
    border-radius: 16px;
  }
}
/* ==========================================================
   PREMIUM UI - MOUSE SPOTLIGHT
========================================================== */

.visual-service-card,
.trust-card,
.process-card,
.sector-card,
.technology-card {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --spotlight-opacity: 0;

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.premium-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;

  pointer-events: none;

  opacity: var(--spotlight-opacity);

  background:
    radial-gradient(
      420px circle at var(--spotlight-x) var(--spotlight-y),
      rgba(96, 210, 255, 0.18),
      rgba(46, 155, 255, 0.08) 30%,
      transparent 68%
    );

  transition: opacity 0.35s ease;
}

.visual-service-card > *:not(.premium-spotlight),
.trust-card > *:not(.premium-spotlight),
.process-card > *:not(.premium-spotlight),
.sector-card > *:not(.premium-spotlight),
.technology-card > *:not(.premium-spotlight) {
  position: relative;
  z-index: 1;
}


/* Borde iluminado */

.visual-service-card::before,
.trust-card::after,
.process-card::after,
.sector-card::after,
.technology-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;

  content: "";

  padding: 1px;

  border-radius: inherit;

  pointer-events: none;

  opacity: var(--spotlight-opacity);

  background:
    radial-gradient(
      300px circle at var(--spotlight-x) var(--spotlight-y),
      rgba(123, 220, 255, 0.95),
      rgba(76, 128, 255, 0.38) 34%,
      transparent 68%
    );

  -webkit-mask:
    linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#ffffff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  transition: opacity 0.35s ease;
}


/* Resplandor interior sutil */

.visual-service-card:hover,
.trust-card:hover,
.process-card:hover,
.sector-card:hover,
.technology-card:hover {
  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(46, 155, 255, 0.12);
}


/* Evita que el efecto tape imágenes */

.visual-service-card .premium-spotlight {
  background:
    radial-gradient(
      460px circle at var(--spotlight-x) var(--spotlight-y),
      rgba(92, 211, 255, 0.2),
      rgba(46, 155, 255, 0.07) 34%,
      transparent 70%
    );
}


/* Tecnología: efecto ligeramente más compacto */

.technology-card .premium-spotlight {
  background:
    radial-gradient(
      260px circle at var(--spotlight-x) var(--spotlight-y),
      rgba(123, 220, 255, 0.18),
      rgba(46, 155, 255, 0.06) 38%,
      transparent 72%
    );
}


/* Dispositivos táctiles */

@media (hover: none), (pointer: coarse) {
  .premium-spotlight {
    display: none;
  }

  .visual-service-card::before,
  .trust-card::after,
  .process-card::after,
  .sector-card::after,
  .technology-card::after {
    display: none;
  }
}


/* Accesibilidad */

@media (prefers-reduced-motion: reduce) {
  .premium-spotlight,
  .visual-service-card::before,
  .trust-card::after,
  .process-card::after,
  .sector-card::after,
  .technology-card::after {
    transition: none;
  }
}

/* ==========================================================
   17. PÁGINA DE PROYECTOS
========================================================== */

.projects-page {
  background: var(--bg);
}

.projects-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  padding: 18px 64px;
}

.projects-page .navbar {
  padding: 10px 0;
}

.projects-page .nav-links a.active:not(.nav-cta) {
  color: var(--cyan);
}

.projects-page .nav-links a.active:not(.nav-cta)::after {
  transform: scaleX(1);
}


/* HERO DE PROYECTOS */

.projects-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 820px;
  padding: 190px 6% 90px;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 23, 0.99) 0%,
      rgba(2, 8, 23, 0.91) 34%,
      rgba(2, 8, 23, 0.55) 62%,
      rgba(2, 8, 23, 0.22) 100%
    ),
    url("../assets/images/hero-proyectos.png")
      center right / cover no-repeat;
}

.projects-hero::after {
  position: absolute;
  inset: auto -12% -42% auto;
  z-index: -2;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(46, 155, 255, 0.2),
    transparent 68%
  );
  content: "";
  filter: blur(24px);
}

.projects-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(123, 220, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 220, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 92%);
}

.projects-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.projects-hero-glow-one {
  top: 14%;
  left: -10%;
  width: 460px;
  height: 460px;
  background: rgba(46, 155, 255, 0.15);
}

.projects-hero-glow-two {
  right: 2%;
  bottom: 4%;
  width: 420px;
  height: 420px;
  background: rgba(123, 220, 255, 0.11);
}

.projects-hero-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.projects-hero-content {
  max-width: 880px;
}

.projects-hero-content h1 {
  max-width: 900px;
  margin: 18px 0 28px;
  color: #ffffff;
  font-size: clamp(52px, 6vw, 94px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -3.8px;
}

.projects-hero-content h1 span {
  display: block;
  color: var(--cyan);
}

.projects-hero-description {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.projects-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.projects-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 930px;
  margin-top: 78px;
  border-top: 1px solid rgba(123, 220, 255, 0.18);
}

.project-hero-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 0 0;
}

.project-hero-metric:not(:last-child) {
  border-right: 1px solid rgba(123, 220, 255, 0.16);
}

.project-hero-metric:not(:first-child) {
  padding-left: 28px;
}

.project-hero-metric strong {
  color: var(--cyan);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.project-hero-metric span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}


/* INTRODUCCIÓN */

.projects-introduction {
  padding-bottom: 70px;
}

.projects-introduction .section-header {
  max-width: 980px;
}


/* CASOS DESTACADOS */

.featured-projects {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
  padding-bottom: 120px;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(50px, 6vw, 96px);
  align-items: center;
  padding: clamp(76px, 8vw, 128px) 0;
  border-top: 1px solid rgba(123, 220, 255, 0.14);
}

.featured-project:last-child {
  border-bottom: 1px solid rgba(123, 220, 255, 0.14);
}

.featured-project-reverse .featured-project-image {
  order: 2;
}

.featured-project-reverse .featured-project-content {
  order: 1;
}

.featured-project-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(123, 220, 255, 0.24);
  border-radius: 28px;
  background: var(--bg-card);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 0 80px rgba(46, 155, 255, 0.04);
}

.featured-project-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 8, 23, 0.62), transparent 55%);
  content: "";
  pointer-events: none;
}

.featured-project-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-project:hover .featured-project-image img {
  transform: scale(1.035);
}

.project-image-category {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 11px 15px;
  border: 1px solid rgba(123, 220, 255, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(2, 8, 23, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.featured-project-content {
  max-width: 620px;
}

.project-category {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.featured-project-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -2.2px;
}

.project-summary {
  margin: 24px 0 34px;
  color: #c4d0e7;
  font-size: 17px;
  line-height: 1.82;
}

.project-detail {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid rgba(123, 220, 255, 0.46);
}

.project-detail-label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-detail p {
  color: var(--muted-strong);
  line-height: 1.75;
}

.project-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.project-results div {
  padding: 18px 16px;
  border: 1px solid rgba(46, 155, 255, 0.2);
  border-radius: 16px;
  background: rgba(7, 26, 63, 0.62);
}

.project-results strong,
.project-results span {
  display: block;
}

.project-results strong {
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
}

.project-results span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.project-technologies span {
  padding: 9px 12px;
  border: 1px solid rgba(46, 155, 255, 0.2);
  border-radius: 999px;
  color: #b8d2ef;
  background: rgba(7, 26, 63, 0.62);
  font-size: 11px;
  font-weight: 800;
}


/* MÁS PROYECTOS */

.more-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.more-project-card {
  overflow: hidden;
  border: 1px solid rgba(46, 155, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 23, 52, 0.94), rgba(3, 13, 32, 0.96));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.more-project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(46, 155, 255, 0.1);
}

.more-project-image {
  height: 290px;
  overflow: hidden;
}

.more-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.more-project-card:hover .more-project-image img {
  transform: scale(1.05);
}

.more-project-content {
  padding: 30px;
}

.more-project-content h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.more-project-content p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}


/* NUBE DE TECNOLOGÍAS */

.technology-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.technology-cloud span {
  padding: 16px 21px;
  border: 1px solid rgba(46, 155, 255, 0.22);
  border-radius: 14px;
  color: #dce9f8;
  background: linear-gradient(145deg, rgba(8, 31, 67, 0.82), rgba(4, 17, 39, 0.94));
  font-size: 13px;
  font-weight: 800;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 14px 35px rgba(0, 0, 0, 0.16);
  transition:
    transform var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.technology-cloud span:hover {
  color: var(--cyan);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}


/* ENFOQUE */

.project-approach-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.project-approach-content h2 {
  max-width: 690px;
  margin: 16px 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 4.5vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2.8px;
}

.project-approach-content p {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.project-approach-steps {
  position: relative;
  display: grid;
  gap: 16px;
}

.project-approach-steps::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 33px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(123, 220, 255, 0.56), transparent);
  content: "";
}

.approach-step {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 20px 22px 20px 80px;
  border: 1px solid rgba(46, 155, 255, 0.2);
  border-radius: 18px;
  background: rgba(7, 26, 63, 0.64);
}

.approach-step::before {
  position: absolute;
  left: 25px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 3px solid #07182f;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  box-shadow: 0 0 18px rgba(123, 220, 255, 0.5);
}

.approach-step span {
  color: #ffffff;
  font-weight: 800;
}


/* FOOTER EN PÁGINA DE PROYECTOS */

.projects-page .site-footer {
  margin-top: 0;
}


/* RESPONSIVE PROYECTOS */

@media (max-width: 1180px) {
  .projects-topbar {
    padding-right: 28px;
    padding-left: 28px;
  }

  .featured-project {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .featured-project-reverse .featured-project-image,
  .featured-project-reverse .featured-project-content {
    order: initial;
  }

  .featured-project-content {
    max-width: 880px;
  }

  .featured-project-image,
  .featured-project-image img {
    min-height: 520px;
  }

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

  .project-approach-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .projects-topbar {
    padding: 14px 20px;
  }

  .projects-hero {
    min-height: auto;
    padding: 140px 20px 78px;
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 23, 0.72) 0%,
        rgba(2, 8, 23, 0.88) 45%,
        rgba(2, 8, 23, 0.98) 82%,
        rgba(2, 8, 23, 1) 100%
      ),
      url("../assets/images/hero-proyectos.png")
        62% center / cover no-repeat;

  }

  .projects-hero-content h1 {
    font-size: clamp(44px, 12vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
  }

  .projects-hero-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .projects-hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .project-hero-metric,
  .project-hero-metric:not(:first-child) {
    padding: 20px 0;
    border-right: 0;
  }

  .project-hero-metric:not(:last-child) {
    border-bottom: 1px solid rgba(123, 220, 255, 0.16);
  }

  .featured-projects {
    width: calc(100% - 40px);
  }

  .featured-project {
    padding: 72px 0;
  }

  .featured-project-image,
  .featured-project-image img {
    min-height: 390px;
  }

  .project-results {
    grid-template-columns: 1fr;
  }

  .more-projects-grid,
  .technology-cloud,
  .project-approach-wrapper {
    width: calc(100% - 40px);
  }

  .more-projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .projects-hero-actions {
    display: grid;
  }

  .projects-hero-actions .btn {
    width: 100%;
  }

  .featured-project-image,
  .featured-project-image img {
    min-height: 300px;
  }

  .featured-project-image {
    border-radius: 20px;
  }

  .featured-project-content h2 {
    font-size: 38px;
    letter-spacing: -1.3px;
  }

  .more-project-image {
    height: 230px;
  }

  .more-project-content {
    padding: 24px;
  }

  .technology-cloud {
    gap: 10px;
  }

  .technology-cloud span {
    padding: 13px 16px;
    font-size: 12px;
  }

  .project-approach-content h2 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
}

/* ==========================================================
   NAVBAR EN PÁGINAS INTERNAS
========================================================== */

.projects-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 18px 64px 0;
}

.projects-navbar {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.projects-navbar.is-scrolled {
  position: fixed;
  top: 14px;
  right: 24px;
  left: 24px;
  width: auto;
  max-width: none;
  margin: 0;
}

@media (max-width: 768px) {

  .projects-header {
    padding: 14px 20px 0;
  }

  .projects-navbar.is-scrolled {
    top: 10px;
    right: 12px;
    left: 12px;
  }

}
/* ==========================================================
   PÁGINA DE SERVICIOS
========================================================== */

.services-page {
  overflow-x: hidden;
  background: #020b1d;
  color: #ffffff;
}


/* ==========================================================
   HEADER INTERNO
========================================================== */

.services-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  padding: 18px 64px 0;
}

.services-topbar .navbar {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.services-topbar .navbar.navbar-scrolled,
.services-topbar .navbar.is-scrolled {
  position: fixed;
  top: 14px;
  right: 24px;
  left: 24px;
  width: auto;
  max-width: none;
  margin: 0;
}


/* ==========================================================
   HERO DE SERVICIOS
========================================================== */

.services-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 920px;
  padding: 190px 6% 100px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(32, 157, 255, 0.22),
      transparent 27%
    ),
    radial-gradient(
      circle at 86% 65%,
      rgba(36, 83, 204, 0.2),
      transparent 32%
    ),
    linear-gradient(
      125deg,
      #020817 0%,
      #031027 46%,
      #051d40 100%
    );
}

.services-hero::before {
  position: absolute;
  top: 14%;
  right: 7%;
  z-index: -2;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(79, 196, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(43, 177, 255, 0.12) 0%,
      rgba(15, 79, 166, 0.07) 35%,
      transparent 68%
    );
  content: "";
  box-shadow:
    inset 0 0 100px rgba(54, 180, 255, 0.08),
    0 0 120px rgba(28, 128, 255, 0.08);
}

.services-hero::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  z-index: -3;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(53, 174, 255, 0.2),
      transparent 68%
    );
  content: "";
  filter: blur(25px);
}

.services-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.26;
  background-image:
    linear-gradient(
      rgba(77, 186, 255, 0.075) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(77, 186, 255, 0.075) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      transparent 92%
    );
}

.services-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.services-hero-glow-one {
  top: 18%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: rgba(17, 109, 255, 0.17);
}

.services-hero-glow-two {
  right: 9%;
  bottom: 9%;
  width: 420px;
  height: 420px;
  background: rgba(54, 203, 255, 0.11);
}

.services-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
  width: min(100%, 1440px);
  margin: auto;
}

.services-hero-content {
  max-width: 920px;
}

.services-hero-content h1 {
  max-width: 930px;
  margin: 1.2rem 0 1.6rem;
  color: #ffffff;
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.services-hero-content h1 span {
  display: block;
  color: #68d8ff;
}

.services-hero-description {
  max-width: 790px;
  color: #b7c7e2;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.8;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.35rem;
}

.services-hero-summary {
  display: grid;
  gap: 1rem;
}

.services-hero-summary-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.45rem;
  border: 1px solid rgba(72, 177, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(9, 31, 67, 0.83),
      rgba(3, 16, 38, 0.88)
    );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.services-hero-summary-item:hover {
  transform: translateX(-8px);
  border-color: rgba(86, 207, 255, 0.48);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.26),
    0 0 32px rgba(40, 162, 255, 0.08);
}

.services-hero-summary-item > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(76, 196, 255, 0.35);
  border-radius: 15px;
  background: rgba(17, 77, 151, 0.16);
  color: #67d8ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.services-hero-summary-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.services-hero-summary-item p {
  margin: 0;
  color: #9fb1cd;
  font-size: 0.84rem;
  line-height: 1.6;
}


/* ==========================================================
   INTRODUCCIÓN Y RESUMEN DE SERVICIOS
========================================================== */

.services-introduction {
  position: relative;
  overflow: hidden;
}

.services-introduction .section-header {
  max-width: 1020px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(100% - 3rem, 1440px);
  margin: 4.5rem auto 0;
}

.service-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(67, 171, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(9, 31, 67, 0.9),
      rgba(3, 16, 38, 0.95)
    );
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.service-overview-card::after {
  position: absolute;
  right: -20%;
  bottom: -45%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(59, 190, 255, 0.18),
      transparent 68%
    );
  content: "";
  transition: transform 450ms ease;
}

.service-overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(80, 204, 255, 0.52);
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.3),
    0 0 35px rgba(30, 145, 255, 0.08);
}

.service-overview-card:hover::after {
  transform: scale(1.25);
}

.service-overview-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  border: 1px solid rgba(76, 196, 255, 0.38);
  border-radius: 15px;
  background: rgba(21, 93, 177, 0.16);
  color: #66d8ff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-overview-card h3 {
  position: relative;
  z-index: 1;
  margin: 2rem 0 0.75rem;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.service-overview-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #a8bad5;
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ==========================================================
   DETALLE DE CADA SERVICIO
========================================================== */

.service-detail-section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(73, 168, 255, 0.1);
  background: #020b1d;
  scroll-margin-top: 110px;
}

.service-detail-section-alt {
  background:
    linear-gradient(
      145deg,
      rgba(6, 23, 52, 0.9),
      rgba(2, 11, 29, 0.98)
    );
}

.service-detail-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
  width: min(100%, 1480px);
  margin-inline: auto;
}

.service-detail-reverse .service-detail-image {
  order: 2;
}

.service-detail-reverse .service-detail-content {
  order: 1;
}

.service-detail-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(70, 176, 255, 0.24);
  border-radius: 30px;
  background: #071630;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 80px rgba(40, 162, 255, 0.05);
}

.service-detail-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(1, 9, 25, 0.62),
      transparent 52%
    );
  content: "";
  pointer-events: none;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition:
    transform 750ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 750ms ease;
}

.service-detail-section:hover .service-detail-image img {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.service-detail-number {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(95, 207, 255, 0.36);
  border-radius: 18px;
  background: rgba(3, 17, 40, 0.76);
  color: #69d9ff;
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-detail-content {
  max-width: 670px;
}

.service-detail-content h2 {
  max-width: 700px;
  margin: 1rem 0 1.5rem;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.4vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.service-detail-summary {
  margin: 0;
  color: #bdcbe1;
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-detail-columns > div {
  padding: 1.5rem;
  border: 1px solid rgba(68, 171, 255, 0.17);
  border-radius: 18px;
  background: rgba(7, 25, 55, 0.62);
}

.service-detail-columns h3 {
  margin: 0 0 1rem;
  color: #6edaff;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-detail-columns ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-columns li {
  position: relative;
  padding-left: 1.15rem;
  color: #9fb1cc;
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-detail-columns li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #51ceff;
  content: "";
  box-shadow: 0 0 12px rgba(80, 203, 255, 0.45);
}

.service-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.service-technologies span {
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(67, 176, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 29, 63, 0.72);
  color: #aac8e8;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
  color: #62d5ff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 220ms ease,
    gap 220ms ease;
}

.service-detail-link:hover {
  gap: 1rem;
  color: #ffffff;
}

.service-detail-link span {
  font-size: 1.25rem;
}


/* ==========================================================
   MODELO DE ACOMPAÑAMIENTO
========================================================== */

.services-model-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(23, 124, 225, 0.12),
      transparent 32rem
    ),
    #020b1d;
}

.services-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(100% - 3rem, 1440px);
  margin: 4.5rem auto 0;
}

.services-model-card {
  position: relative;
  min-height: 290px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(69, 173, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(9, 31, 67, 0.88),
      rgba(3, 16, 38, 0.95)
    );
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 300ms ease,
    border-color 300ms ease;
}

.services-model-card:hover {
  transform: translateY(-7px);
  border-color: rgba(82, 206, 255, 0.5);
}

.services-model-card > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(75, 196, 255, 0.35);
  border-radius: 14px;
  background: rgba(19, 86, 165, 0.15);
  color: #69d9ff;
  font-size: 0.76rem;
  font-weight: 900;
}

.services-model-card h3 {
  margin: 3.3rem 0 1rem;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.services-model-card p {
  margin: 0;
  color: #9fb1cd;
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1180px) {

  .services-hero-container {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

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

  .services-hero-summary-item {
    grid-template-columns: 1fr;
  }

  .service-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .service-detail-reverse .service-detail-image,
  .service-detail-reverse .service-detail-content {
    order: initial;
  }

  .service-detail-content {
    max-width: 900px;
  }

  .service-detail-image,
  .service-detail-image img {
    min-height: 560px;
  }

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

}


@media (max-width: 900px) {

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

  .services-hero-summary {
    grid-template-columns: 1fr;
  }

  .services-hero-summary-item {
    grid-template-columns: 56px 1fr;
  }

}


@media (max-width: 760px) {

  .services-topbar {
    padding: 14px 20px 0;
  }

  .services-topbar .navbar.navbar-scrolled,
  .services-topbar .navbar.is-scrolled {
    top: 10px;
    right: 12px;
    left: 12px;
  }

  .services-hero {
    min-height: auto;
    padding: 140px 20px 80px;
  }

  .services-hero::before {
    top: 8%;
    right: -45%;
    width: 580px;
    opacity: 0.62;
  }

  .services-hero-container {
    gap: 3.5rem;
  }

  .services-hero-content h1 {
    font-size: clamp(44px, 12vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
  }

  .services-hero-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-hero-actions {
    display: grid;
  }

  .services-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 1440px);
  }

  .service-overview-card {
    min-height: 235px;
  }

  .service-detail-section {
    padding: 5rem 1rem;
    scroll-margin-top: 90px;
  }

  .service-detail-image,
  .service-detail-image img {
    min-height: 410px;
  }

  .service-detail-image {
    border-radius: 22px;
  }

  .service-detail-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .service-detail-columns {
    grid-template-columns: 1fr;
  }

  .services-model-grid {
    grid-template-columns: 1fr;
    width: min(100% - 2rem, 1440px);
  }

  .services-model-card {
    min-height: 250px;
  }

}


@media (max-width: 520px) {

  .services-hero-content h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.35rem);
  }

  .services-hero-summary-item {
    grid-template-columns: 48px 1fr;
    padding: 1.2rem;
  }

  .services-hero-summary-item > span {
    width: 46px;
    height: 46px;
  }

  .service-detail-image,
  .service-detail-image img {
    min-height: 310px;
  }

  .service-detail-number {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }

  .service-detail-summary {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .service-detail-columns > div {
    padding: 1.25rem;
  }

  .service-technologies {
    gap: 0.55rem;
  }

  .service-technologies span {
    font-size: 0.68rem;
  }

}
/* ==========================================================
   PÁGINA NOSOTROS
========================================================== */

.about-page {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(26, 112, 255, 0.08),
      transparent 36rem
    ),
    #05080e;
}


/* ==========================================================
   HEADER INTERNO
========================================================== */

.about-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  border-bottom: 1px solid transparent;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    transform 0.35s ease;
}
.about-topbar.scrolled {
  background: rgba(4, 8, 15, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}
.about-topbar .nav-links a.active {
  color: #ffffff;
}

.about-topbar .nav-links a.active::after {
  width: 100%;
}


/* ==========================================================
   HERO
========================================================== */

.about-hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 170px 6vw 100px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 14, 0.98) 0%,
      rgba(5, 11, 22, 0.94) 52%,
      rgba(5, 13, 27, 0.92) 100%
    );
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 72% 40%,
      rgba(27, 118, 255, 0.15),
      transparent 35%
    ),
    radial-gradient(
      circle at 12% 70%,
      rgba(0, 178, 255, 0.09),
      transparent 30%
    );
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.17;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      transparent 92%
    );
}

.about-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
}

.about-hero-glow-one {
  width: 480px;
  height: 480px;
  top: 10%;
  right: 2%;
  background: rgba(0, 108, 255, 0.13);
}

.about-hero-glow-two {
  width: 380px;
  height: 380px;
  left: -8%;
  bottom: 0;
  background: rgba(0, 194, 255, 0.08);
}

.about-hero-container {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(460px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.about-hero-content {
  max-width: 760px;
}

.about-hero-content h1 {
  margin: 22px 0 26px;
  max-width: 900px;
  font-size: clamp(3.3rem, 6.5vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  color: #ffffff;
}

.about-hero-content h1 span {
  display: block;
  color: #59a8ff;
}

.about-hero-description {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  color: rgba(222, 233, 247, 0.77);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}


/* ==========================================================
   PANEL HERO
========================================================== */

.about-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(109, 174, 255, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(14, 25, 42, 0.9),
      rgba(5, 11, 21, 0.95)
    );
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
}

.about-hero-panel::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(28, 128, 255, 0.14);
  filter: blur(70px);
}

.about-panel-header,
.about-panel-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(218, 232, 249, 0.58);
}

.about-panel-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-panel-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.about-panel-footer strong {
  color: #6eb6ff;
  font-weight: 700;
}

.about-panel-status {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #4cdd9b;
  box-shadow: 0 0 16px rgba(76, 221, 155, 0.75);
}

.about-panel-header {
  justify-content: flex-start;
}

.about-panel-main {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.about-panel-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.about-panel-logo {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(100, 173, 255, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(31, 135, 255, 0.2),
      rgba(4, 15, 29, 0.9)
    );
  box-shadow:
    0 18px 40px rgba(0, 103, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 1.65rem;
  font-weight: 900;
  color: #67b4ff;
}

.about-panel-brand div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-panel-brand strong {
  font-size: 1.12rem;
  color: #ffffff;
}

.about-panel-brand div span {
  font-size: 0.86rem;
  color: rgba(218, 231, 247, 0.58);
}

.about-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.about-panel-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.about-panel-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 166, 255, 0.28);
  background: rgba(46, 142, 255, 0.07);
}

.about-panel-grid article > span {
  display: block;
  margin-bottom: 28px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #61adff;
}

.about-panel-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
}

.about-panel-grid p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(213, 227, 244, 0.58);
}


/* ==========================================================
   INTRODUCCIÓN
========================================================== */

.about-introduction {
  padding-top: 150px;
  padding-bottom: 150px;
}

.about-introduction-grid {
  width: min(1320px, 88vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.about-introduction-content h2 {
  max-width: 790px;
  margin: 18px 0 28px;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.about-introduction-content p {
  max-width: 800px;
  margin: 0 0 20px;
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text-muted, rgba(216, 227, 241, 0.67));
}

.about-introduction-card {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(78, 158, 255, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(21, 38, 63, 0.72),
      rgba(8, 15, 27, 0.93)
    );
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-introduction-card::before {
  content: "“";
  position: absolute;
  top: 3px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  color: rgba(63, 151, 255, 0.09);
}

.about-card-label {
  display: inline-flex;
  margin-bottom: 32px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #65afff;
}

.about-introduction-card blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.about-card-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-signature-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(42, 137, 255, 0.12);
  font-size: 1rem;
  font-weight: 900;
  color: #65afff;
}

.about-card-signature div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card-signature strong {
  font-size: 0.9rem;
  color: #ffffff;
}

.about-card-signature div span {
  font-size: 0.78rem;
  color: rgba(213, 226, 243, 0.52);
}


/* ==========================================================
   HISTORIA
========================================================== */

.about-history {
  position: relative;
  padding-top: 145px;
  padding-bottom: 160px;
}

.about-history-wrapper {
  position: relative;
  width: min(1160px, 88vw);
  margin: 75px auto 0;
}

.about-history-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48px;
  width: 1px;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(75, 160, 255, 0.45) 10%,
      rgba(75, 160, 255, 0.25) 90%,
      transparent
    );
}

.about-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 38px;
  padding-bottom: 72px;
}

.about-history-item:last-child {
  padding-bottom: 0;
}

.about-history-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(80, 162, 255, 0.25);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      #101c2e,
      #07101d
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 1.18rem;
  font-weight: 900;
  color: #5eacff;
}

.about-history-item > div {
  padding: 10px 0 0;
}

.about-history-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #5eacff;
}

.about-history-item h3 {
  margin: 0 0 15px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  letter-spacing: -0.035em;
  color: #ffffff;
}

.about-history-item p {
  max-width: 780px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(215, 228, 244, 0.62);
}


/* ==========================================================
   PROPÓSITO
========================================================== */

.about-purpose {
  padding-top: 150px;
  padding-bottom: 160px;
}

.about-purpose-grid {
  width: min(1360px, 88vw);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-purpose-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(17, 28, 45, 0.74),
      rgba(7, 13, 23, 0.9)
    );
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.about-purpose-card:hover {
  transform: translateY(-8px);
  border-color: rgba(87, 166, 255, 0.3);
}

.about-purpose-card-featured {
  border-color: rgba(86, 169, 255, 0.28);
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(41, 137, 255, 0.17),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(18, 38, 66, 0.88),
      rgba(6, 13, 24, 0.94)
    );
}

.about-purpose-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 58px;
  place-items: center;
  border: 1px solid rgba(95, 171, 255, 0.25);
  border-radius: 17px;
  background: rgba(47, 143, 255, 0.08);
}

.about-purpose-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #65afff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-purpose-card > span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #62adff;
}

.about-purpose-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.about-purpose-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(213, 226, 243, 0.61);
}


/* ==========================================================
   DIFERENCIADORES
========================================================== */

.about-differences {
  padding-top: 150px;
  padding-bottom: 160px;
}

.about-differences-layout {
  width: min(1400px, 88vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(360px, 0.75fr)
    minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(70px, 8vw, 130px);
}

.about-differences-content {
  position: sticky;
  top: 130px;
}

.about-differences-content h2 {
  margin: 18px 0 25px;
  font-size: clamp(2.5rem, 4.2vw, 4.45rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.about-differences-content p {
  margin: 0 0 19px;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(213, 226, 243, 0.63);
}

.about-differences-content .btn {
  margin-top: 18px;
}

.about-differences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-difference-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.about-difference-card:hover {
  transform: translateY(-7px);
  border-color: rgba(82, 163, 255, 0.27);
  background: rgba(42, 135, 248, 0.055);
}

.about-difference-number {
  display: block;
  margin-bottom: 56px;
  font-size: 0.75rem;
  font-weight: 900;
  color: #5eacff;
}

.about-difference-card h3 {
  margin: 0 0 13px;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #ffffff;
}

.about-difference-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(211, 225, 242, 0.57);
}


/* ==========================================================
   VALORES
========================================================== */

.about-values {
  padding-top: 150px;
  padding-bottom: 155px;
}

.about-values-grid {
  width: min(1320px, 88vw);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.about-value-card {
  min-height: 250px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s ease;
}

.about-value-card:hover {
  background: rgba(47, 142, 255, 0.045);
}

.about-value-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 68px;
  background:
    linear-gradient(
      90deg,
      #5caaff,
      rgba(92, 170, 255, 0)
    );
}

.about-value-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.28rem;
  color: #ffffff;
}

.about-value-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(212, 226, 243, 0.57);
}


/* ==========================================================
   CAPACIDADES
========================================================== */

.about-capabilities {
  padding-top: 150px;
  padding-bottom: 165px;
}

.about-capabilities-grid {
  width: min(1360px, 88vw);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-capability-card {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 30, 48, 0.72),
      rgba(7, 13, 23, 0.92)
    );
  text-decoration: none;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.about-capability-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(42, 141, 255, 0.1);
  filter: blur(40px);
  transition: transform 0.4s ease;
}

.about-capability-card:hover {
  transform: translateY(-8px);
  border-color: rgba(89, 170, 255, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.about-capability-card:hover::after {
  transform: scale(1.35);
}

.about-capability-code {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 15px;
  background: rgba(48, 144, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #63afff;
}

.about-capability-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: #ffffff;
}

.about-capability-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.75;
  color: rgba(211, 225, 242, 0.57);
}

.about-capability-link {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5cabff;
}


/* ==========================================================
   MODELO
========================================================== */

.about-method {
  padding-top: 150px;
  padding-bottom: 160px;
}

.about-method-wrapper {
  width: min(1380px, 88vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(360px, 0.8fr)
    minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.about-method-content h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.about-method-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(213, 226, 243, 0.63);
}

.about-method-content .btn {
  margin-top: 30px;
}

.about-method-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-method-step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  min-height: 132px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background:
    linear-gradient(
      90deg,
      rgba(26, 43, 68, 0.66),
      rgba(8, 15, 27, 0.74)
    );
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.about-method-step:hover {
  transform: translateX(8px);
  border-color: rgba(86, 166, 255, 0.28);
}

.about-method-step > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: rgba(45, 140, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 900;
  color: #62afff;
}

.about-method-step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.12rem;
  color: #ffffff;
}

.about-method-step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(211, 225, 242, 0.56);
}


/* ==========================================================
   STATEMENT
========================================================== */

.about-statement {
  position: relative;
  min-height: 700px;
  display: grid;
  overflow: hidden;
  place-items: center;
  padding: 130px 6vw;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(24, 107, 220, 0.16),
      transparent 43%
    ),
    #050a12;
}

.about-statement::before,
.about-statement::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(110px);
}

.about-statement::before {
  top: -160px;
  left: -160px;
  background: rgba(0, 115, 255, 0.1);
}

.about-statement::after {
  right: -160px;
  bottom: -160px;
  background: rgba(0, 193, 255, 0.07);
}

.about-statement-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
}

.about-statement-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-statement-content h2 {
  margin: 20px auto 28px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 1;
  letter-spacing: -0.065em;
  color: #ffffff;
}

.about-statement-content h2 span {
  display: block;
  color: #5baaff;
}

.about-statement-content p {
  max-width: 790px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(215, 228, 244, 0.66);
}

.about-statement-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1180px) {

  .about-hero {
    min-height: auto;
  }

  .about-hero-container,
  .about-introduction-grid,
  .about-differences-layout,
  .about-method-wrapper {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    max-width: 900px;
  }

  .about-hero-panel {
    max-width: 760px;
  }

  .about-differences-content {
    position: static;
  }

  .about-purpose-grid,
  .about-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 820px) {

  .about-hero {
    padding:
      135px 6vw
      80px;
  }

  .about-hero-content h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .about-panel-main {
    padding: 24px;
  }

  .about-panel-grid {
    grid-template-columns: 1fr;
  }

  .about-panel-grid article {
    min-height: auto;
  }

  .about-introduction,
  .about-history,
  .about-purpose,
  .about-differences,
  .about-values,
  .about-capabilities,
  .about-method {
    padding-top: 105px;
    padding-bottom: 110px;
  }

  .about-introduction-card {
    padding: 32px;
  }

  .about-purpose-grid,
  .about-capabilities-grid,
  .about-values-grid,
  .about-differences-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose-card {
    min-height: auto;
  }

  .about-value-card {
    min-height: auto;
  }

  .about-history-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 22px;
  }

  .about-history-line {
    left: 34px;
  }

  .about-history-number {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .about-method-step {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .about-statement {
    min-height: 590px;
    padding:
      105px 6vw;
  }

}


@media (max-width: 560px) {

  .about-hero-actions,
  .about-statement-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-actions .btn,
  .about-statement-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-hero-panel {
    border-radius: 22px;
  }

  .about-panel-header,
  .about-panel-footer {
    padding: 16px 18px;
  }

  .about-panel-main {
    padding: 22px 18px;
  }

  .about-panel-brand {
    align-items: flex-start;
  }

  .about-introduction-grid,
  .about-history-wrapper,
  .about-purpose-grid,
  .about-differences-layout,
  .about-values-grid,
  .about-capabilities-grid,
  .about-method-wrapper {
    width: min(90vw, 100%);
  }

  .about-introduction-card,
  .about-purpose-card,
  .about-difference-card,
  .about-capability-card {
    padding: 27px;
  }

  .about-purpose-icon,
  .about-difference-number,
  .about-value-card::before,
  .about-capability-code {
    margin-bottom: 38px;
  }

  .about-history-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 55px;
  }

  .about-history-line {
    display: none;
  }

  .about-history-number {
    width: 58px;
    height: 58px;
  }

  .about-method-step {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 24px;
  }

  .about-method-step:hover {
    transform: translateY(-5px);
  }

}
/* ==========================================================
   PÁGINA CONTACTO
========================================================== */

.contact-page {
  background: #05080e;
}


/* ==========================================================
   HEADER
========================================================== */

.contact-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  border-bottom: 1px solid transparent;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-topbar.scrolled {
  background: rgba(4, 8, 15, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}


/* ==========================================================
   HERO
========================================================== */

.contact-hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 170px 6vw 105px;

  background:
    linear-gradient(
      90deg,
      rgba(3, 8, 16, 0.98),
      rgba(5, 13, 27, 0.95)
    );
}

.contact-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9),
      transparent 95%
    );
}

.contact-hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
}

.contact-hero-glow-one {
  top: 5%;
  right: -4%;
  width: 530px;
  height: 530px;
  background: rgba(0, 112, 255, 0.15);
}

.contact-hero-glow-two {
  bottom: -10%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: rgba(0, 193, 255, 0.08);
}

.contact-hero-container {
  width: min(1400px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(440px, 0.95fr);

  align-items: center;
  gap: clamp(65px, 8vw, 130px);
}

.contact-hero-content {
  max-width: 790px;
}

.contact-hero-content h1 {
  margin: 22px 0 28px;

  font-size: clamp(3.4rem, 6.5vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;

  color: #ffffff;
}

.contact-hero-content h1 span {
  display: block;
  color: #55a7ff;
}

.contact-hero-description {
  max-width: 720px;
  margin: 0;

  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.82;

  color: rgba(220, 232, 247, 0.7);
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}


/* ==========================================================
   CONSOLA HERO
========================================================== */

.contact-console {
  overflow: hidden;
  border: 1px solid rgba(100, 174, 255, 0.22);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(15, 30, 52, 0.9),
      rgba(5, 12, 23, 0.97)
    );

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(20px);
}

.contact-console-header,
.contact-console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 19px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-console-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 0;
}

.contact-console-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-console-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #43dc97;
  box-shadow: 0 0 17px rgba(67, 220, 151, 0.85);
}

.contact-console-status p,
.contact-console-header small,
.contact-console-footer span,
.contact-console-footer strong {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-console-status p,
.contact-console-footer span {
  color: rgba(215, 228, 244, 0.52);
}

.contact-console-header small,
.contact-console-footer strong {
  color: #60adff;
}

.contact-console-content {
  padding: 42px 36px;
}

.contact-console-label {
  display: inline-flex;
  margin-bottom: 16px;

  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: #60adff;
}

.contact-console-content h2 {
  margin: 0 0 18px;

  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 1.17;
  letter-spacing: -0.04em;

  color: #ffffff;
}

.contact-console-content > p {
  margin: 0;

  font-size: 0.96rem;
  line-height: 1.75;

  color: rgba(214, 227, 244, 0.6);
}

.contact-console-process {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-console-process div {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.025);
}

.contact-console-process span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;

  border-radius: 13px;
  background: rgba(45, 141, 255, 0.1);

  font-size: 0.72rem;
  font-weight: 900;
  color: #61adff;
}

.contact-console-process strong {
  font-size: 0.92rem;
  color: #ffffff;
}


/* ==========================================================
   CANALES
========================================================== */

.contact-channels-section {
  padding-top: 145px;
  padding-bottom: 155px;
}

.contact-channels-grid {
  width: min(1380px, 88vw);
  margin: 72px auto 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-channel-card {
  position: relative;
  display: flex;
  min-height: 365px;
  flex-direction: column;

  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 30, 48, 0.72),
      rgba(7, 13, 23, 0.94)
    );

  text-decoration: none;

  transition:
    transform 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.contact-channel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(84, 166, 255, 0.3);

  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.contact-channel-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  place-items: center;

  border: 1px solid rgba(92, 171, 255, 0.23);
  border-radius: 17px;

  background: rgba(43, 140, 255, 0.08);
}

.contact-channel-icon svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: #63afff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-channel-card > span {
  margin-bottom: 10px;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: #60adff;
}

.contact-channel-card strong {
  margin-bottom: 16px;

  font-size: 1.12rem;
  line-height: 1.4;
  word-break: break-word;

  color: #ffffff;
}

.contact-channel-card p {
  margin: 0;

  font-size: 0.88rem;
  line-height: 1.75;

  color: rgba(211, 225, 242, 0.57);
}

.contact-channel-card small {
  margin-top: auto;
  padding-top: 28px;

  font-size: 0.77rem;
  font-weight: 700;

  color: #60adff;
}


/* ==========================================================
   FORMULARIO
========================================================== */

.contact-form-section {
  padding-top: 150px;
  padding-bottom: 165px;
}

.contact-form-layout {
  width: min(1380px, 88vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(360px, 0.8fr)
    minmax(0, 1.2fr);

  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}

.contact-form-introduction {
  position: sticky;
  top: 130px;
}

.contact-form-introduction h2 {
  margin: 18px 0 25px;

  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.contact-form-introduction > p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.85;

  color: rgba(213, 226, 243, 0.63);
}

.contact-form-benefits {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact-form-benefits article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;

  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.022);
}

.contact-form-benefits article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;

  border-radius: 14px;
  background: rgba(46, 142, 255, 0.09);

  font-size: 0.72rem;
  font-weight: 900;

  color: #61adff;
}

.contact-form-benefits strong {
  display: block;
  margin-bottom: 6px;

  font-size: 0.98rem;
  color: #ffffff;
}

.contact-form-benefits p {
  margin: 0;

  font-size: 0.83rem;
  line-height: 1.65;

  color: rgba(211, 225, 242, 0.54);
}

.contact-form-card {
  overflow: hidden;
  border: 1px solid rgba(94, 170, 255, 0.2);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 51, 0.85),
      rgba(7, 13, 23, 0.96)
    );

  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-form-card-header span,
.contact-form-card-header small {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-card-header span {
  color: #ffffff;
}

.contact-form-card-header small {
  color: #61adff;
}

.consultation-form {
  padding: 34px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  margin-top: 22px;
}

.form-group label {
  margin-bottom: 10px;

  font-size: 0.78rem;
  font-weight: 700;

  color: rgba(230, 239, 250, 0.78);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: none;

  background: rgba(4, 10, 19, 0.7);

  font-family: inherit;
  font-size: 0.92rem;
  color: #ffffff;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.form-group input,
.form-group select {
  min-height: 55px;
  padding: 0 17px;
}

.form-group textarea {
  min-height: 170px;
  padding: 17px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(211, 225, 242, 0.34);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #091321;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(76, 160, 255, 0.68);
  background: rgba(5, 13, 25, 0.92);

  box-shadow: 0 0 0 4px rgba(44, 139, 255, 0.09);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: rgba(255, 97, 97, 0.7);
}

.form-error {
  display: none;
  margin-top: 8px;

  font-size: 0.73rem;
  color: #ff8585;
}

.form-group.has-error .form-error {
  display: block;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;

  cursor: pointer;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;

  accent-color: #3c9fff;
}

.contact-consent span {
  font-size: 0.78rem;
  line-height: 1.6;

  color: rgba(211, 225, 242, 0.56);
}

.contact-consent.has-error span {
  color: #ff8585;
}

.contact-submit-button {
  width: 100%;
  min-height: 58px;
  margin-top: 27px;

  justify-content: center;
  gap: 12px;

  border: 0;
  cursor: pointer;
}

.contact-submit-button svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-note {
  margin: 16px 0 0;

  text-align: center;
  font-size: 0.72rem;
  line-height: 1.55;

  color: rgba(211, 225, 242, 0.42);
}


/* ==========================================================
   COBERTURA
========================================================== */

.contact-coverage-section {
  padding-top: 145px;
  padding-bottom: 155px;
}

.contact-coverage-card {
  width: min(1320px, 88vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  overflow: hidden;
  border: 1px solid rgba(87, 166, 255, 0.18);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(17, 31, 52, 0.78),
      rgba(6, 13, 24, 0.94)
    );

  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.contact-coverage-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(37, 134, 255, 0.16),
      transparent 38%
    ),
    #07101d;
}

.contact-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(88, 169, 255, 0.13) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(88, 169, 255, 0.13) 1px,
      transparent 1px
    );

  background-size: 55px 55px;
}

.contact-map-location {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 15px;

  transform: translate(-50%, -50%);
}

.contact-map-pulse {
  position: relative;
  width: 17px;
  height: 17px;
  border-radius: 50%;

  background: #55a7ff;
  box-shadow: 0 0 22px rgba(85, 167, 255, 0.9);
}

.contact-map-pulse::before,
.contact-map-pulse::after {
  content: "";
  position: absolute;
  inset: -10px;

  border: 1px solid rgba(85, 167, 255, 0.48);
  border-radius: 50%;

  animation: contactPulse 2.5s infinite ease-out;
}

.contact-map-pulse::after {
  animation-delay: 1.2s;
}

@keyframes contactPulse {

  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }

  100% {
    opacity: 0;
    transform: scale(2.7);
  }

}

.contact-map-location div {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 14px 18px;
  border: 1px solid rgba(99, 175, 255, 0.2);
  border-radius: 14px;

  background: rgba(5, 12, 23, 0.86);
  backdrop-filter: blur(12px);
}

.contact-map-location strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.contact-map-location small {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #63afff;
}

.contact-map-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;

  background:
    linear-gradient(
      90deg,
      rgba(85, 167, 255, 0),
      rgba(85, 167, 255, 0.6),
      rgba(85, 167, 255, 0)
    );
}

.contact-map-line-one {
  top: 27%;
  left: 22%;
  width: 310px;
  transform: rotate(19deg);
}

.contact-map-line-two {
  top: 66%;
  left: 28%;
  width: 340px;
  transform: rotate(-16deg);
}

.contact-map-line-three {
  top: 43%;
  left: 46%;
  width: 260px;
  transform: rotate(-44deg);
}

.contact-coverage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(50px, 6vw, 85px);
}

.contact-coverage-content h2 {
  margin: 18px 0 22px;

  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.contact-coverage-content > p {
  margin: 0;

  font-size: 0.98rem;
  line-height: 1.82;

  color: rgba(212, 226, 243, 0.61);
}

.contact-coverage-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-coverage-features span {
  padding: 10px 13px;
  border: 1px solid rgba(84, 164, 255, 0.17);
  border-radius: 999px;

  background: rgba(44, 139, 255, 0.055);

  font-size: 0.74rem;
  color: rgba(220, 232, 247, 0.72);
}


/* ==========================================================
   FAQ
========================================================== */

.contact-faq-section {
  padding-top: 145px;
  padding-bottom: 155px;
}

.contact-faq-list {
  width: min(980px, 88vw);
  margin: 70px auto 0;
}

.contact-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  padding: 29px 4px;

  list-style: none;
  cursor: pointer;

  font-size: clamp(1rem, 1.5vw, 1.17rem);
  font-weight: 700;
  color: #ffffff;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-symbol {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.contact-faq-symbol::before,
.contact-faq-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 15px;
  height: 1.5px;

  background: #62aeff;

  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.contact-faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-faq-item[open] .contact-faq-symbol::after {
  transform: translate(-50%, -50%) rotate(0);
}

.contact-faq-answer {
  padding: 0 50px 27px 4px;
}

.contact-faq-answer p {
  max-width: 840px;
  margin: 0;

  font-size: 0.93rem;
  line-height: 1.8;

  color: rgba(211, 225, 242, 0.59);
}


/* ==========================================================
   CTA FINAL
========================================================== */

.contact-final-cta {
  position: relative;
  min-height: 650px;
  display: grid;
  overflow: hidden;
  place-items: center;

  padding: 120px 6vw;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(32, 126, 247, 0.17),
      transparent 42%
    ),
    #050a12;
}

.contact-final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );

  background-size: 80px 80px;
}

.contact-final-content {
  position: relative;
  z-index: 2;

  width: min(1050px, 100%);
  margin: 0 auto;

  text-align: center;
}

.contact-final-content h2 {
  margin: 19px auto 26px;

  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.064em;

  color: #ffffff;
}

.contact-final-content p {
  max-width: 720px;
  margin: 0 auto;

  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;

  color: rgba(215, 228, 244, 0.64);
}

.contact-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1180px) {

  .contact-hero-container,
  .contact-form-layout,
  .contact-coverage-card {
    grid-template-columns: 1fr;
  }

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

  .contact-hero-visual {
    max-width: 760px;
  }

  .contact-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-introduction {
    position: static;
  }

  .contact-coverage-map {
    min-height: 430px;
  }

}


@media (max-width: 760px) {

  .contact-hero {
    padding:
      135px 6vw
      82px;
  }

  .contact-hero-content h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-channels-section,
  .contact-form-section,
  .contact-coverage-section,
  .contact-faq-section {
    padding-top: 105px;
    padding-bottom: 110px;
  }

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

  .contact-channel-card {
    min-height: auto;
  }

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

  .form-group-full {
    margin-top: 20px;
  }

  .consultation-form {
    padding: 26px;
  }

  .contact-form-card-header {
    padding: 20px 25px;
  }

  .contact-console-content {
    padding: 32px 25px;
  }

  .contact-coverage-map {
    min-height: 360px;
  }

  .contact-final-cta {
    min-height: 560px;
    padding: 100px 6vw;
  }

}


@media (max-width: 520px) {

  .contact-console {
    border-radius: 22px;
  }

  .contact-console-header,
  .contact-console-footer {
    padding: 16px 18px;
  }

  .contact-console-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-console-process div {
    align-items: flex-start;
  }

  .contact-form-layout,
  .contact-channels-grid,
  .contact-coverage-card,
  .contact-faq-list {
    width: min(90vw, 100%);
  }

  .contact-form-card {
    border-radius: 22px;
  }

  .contact-form-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .consultation-form {
    padding: 23px 18px;
  }

  .contact-form-benefits article {
    grid-template-columns: 1fr;
  }

  .contact-map-line {
    display: none;
  }

  .contact-coverage-content {
    padding: 40px 25px;
  }

  .contact-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-final-actions .btn {
    width: 100%;
    justify-content: center;
  }

}
/* ==========================================================
   CORRECCIÓN DE SCROLL EN PÁGINAS INTERNAS
========================================================== */

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  min-height: 100%;
  overflow-y: visible;
}

body.services-page:not(.menu-open),
body.projects-page:not(.menu-open) {
  overflow-x: hidden;
  overflow-y: visible;
  height: auto;
  min-height: 100%;
}