/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
:root {
  --bg:          #07090E;
  --bg-1:        #0C1018;
  --bg-2:        #111827;
  --surface:     rgba(255,255,255,0.03);
  --surface-1:   rgba(255,255,255,0.055);
  --line:        rgba(255,255,255,0.06);
  --line-1:      rgba(255,255,255,0.10);
  --text:        #EFF3FF;
  --text-2:      #C8D3E8;
  --muted:       #5E6E87;
  --blue:        #3B82F6;
  --blue-glow:   rgba(59,130,246,0.28);
  --blue-dim:    rgba(59,130,246,0.12);
  --cyan:        #06B6D4;
  --cyan-glow:   rgba(6,182,212,0.2);
  --cyan-dim:    rgba(6,182,212,0.10);
  --r-xl:        24px;
  --r-lg:        16px;
  --r-md:        10px;
  --max-w:       1160px;
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

h1, h2, h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

p, li, .nav-links a, .faq-btn, .faq-answer-inner {
  font-family: 'DM Sans', sans-serif;
}

.btn {
  font-family: 'DM Sans', sans-serif !important;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1000;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul, ol { list-style: none; }

.container {
  width: min(100% - 32px, var(--max-w));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container { width: min(100% - 64px, var(--max-w)); }
}

/* ═══════════════════════════════════════════════
   UTILS
═══════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--cyan);
  opacity: 0.55;
  flex-shrink: 0;
}

.section { padding: 88px 0; }

.section-header { margin-bottom: 44px; }
.section-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-top: 12px;
  max-width: 680px;
}
.section-header p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: #5B97FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--blue-glow);
}
.btn-wa {
  background: #22C55E;
  color: #fff;
}
.btn-wa:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34,197,94,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line-1);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}
.btn-sm { height: 42px; padding: 0 20px; font-size: 14px; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  background: rgba(7,9,14,0.72);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 4px;
  color: var(--text);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  transition: color .15s ease;
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--text); }

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
@media (min-width: 900px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease, background .15s ease;
  transform-origin: center;
}
.nav-hamburger:hover span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 199;
  background: rgba(7,9,14,0.97);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--line-1);
  padding: 8px 0 16px;
}
.nav-mobile-panel.open { display: block; }
@media (min-width: 900px) { .nav-mobile-panel { display: none !important; } }
.nav-mobile-panel a {
  display: block;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  transition: color .15s ease, background .15s ease;
  letter-spacing: 0.2px;
}
.nav-mobile-panel a:hover { color: var(--text); background: var(--surface); }

/* ═══════════════════════════════════════════════
   HERO — VIDEO BACKGROUND
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 72px;
}
@media (max-width: 767px) {
  .hero { background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(59,130,246,0.15) 0%, #07090E 70%); }
  .hero-topbar { display: none; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); letter-spacing: -1px; }
  .hero-inner { padding-top: 100px; }
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark overlay for legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.30) 40%,
      rgba(7,9,14,0.85) 80%,
      rgba(7,9,14,1) 100%
    );
  z-index: 1;
  pointer-events: none;
}

/* Grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
  z-index: 2;
}

/* Top info bar */
.hero-topbar {
  position: absolute;
  top: 88px;
  left: 0; right: 0;
  z-index: 3;
  padding: 0 max(16px, calc((100% - 1160px) / 2 + 16px));
}
.hero-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.hero-topbar-left,
.hero-topbar-right {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 38ch;
}
.hero-topbar-right {
  text-align: right;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
@media (max-width: 767px) {
  .hero-topbar-inner { flex-direction: column; }
  .hero-topbar-right { text-align: left; }
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,0.35);
  background: rgba(59,130,246,0.10);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  animation: fadeUp .5s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ShinyText headline */
.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 10vw, 100px);
  line-height: 0.92;
  letter-spacing: -2px;
  max-width: 14ch;
  margin-inline: auto;
  animation: fadeUp .55s .1s ease both;
}
.hero h1 .hero-h1-plain {
  display: block;
  color: #fff;
  font-weight: 500;
}
.hero h1 .shiny-text {
  display: block;
  background: linear-gradient(
    100deg,
    #64CEFB 0%,
    #64CEFB 35%,
    #ffffff 45%,
    #ffffff 55%,
    #64CEFB 65%,
    #64CEFB 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 767px) {
  .shiny-text {
    animation: shineText 3s linear infinite;
  }

  @keyframes shineText {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
  }
}

.hero-sub {
  margin-top: 20px;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 58ch;
  margin-inline: auto;
  animation: fadeUp .55s .2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  animation: fadeUp .55s .3s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  animation: fadeUp .55s .4s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
  flex-shrink: 0;
}

.hero-zones {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  width: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: fadeUp .55s .5s ease both;
}
.hero-zones span { color: rgba(255,255,255,0.65); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   BENEFICIOS
═══════════════════════════════════════════════ */
.benefits-section {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefits-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.benefit-card:hover {
  border-color: rgba(59,130,246,0.25);
  background: var(--blue-dim);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.18);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.benefit-card strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   SOLUCIÓN
═══════════════════════════════════════════════ */
.solution-section {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solution-layout {
  display: grid;
  gap: 48px;
  align-items: center;
  justify-items: center;
  max-width: 680px;
  margin: 0 auto;
}
.solution-text { text-align: center; }
.solution-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.solution-text p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
}
.solution-text .btn { margin-top: 28px; }

/* ═══════════════════════════════════════════════
   CARRUSEL INFINITE SCROLL
═══════════════════════════════════════════════ */
.niches-section {
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}
.niches-section::before,
.niches-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.niches-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.niches-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

.niches-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 12px;
}
.carousel-track:hover { animation-play-state: paused; }

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

.niche-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--line-1);
  border-radius: 999px;
  background: var(--surface-1);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  cursor: default;
  flex-shrink: 0;
}
.niche-chip svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity .2s ease;
}
.niche-chip:hover {
  border-color: rgba(59,130,246,0.4);
  color: var(--text);
  background: var(--blue-dim);
}
.niche-chip:hover svg { opacity: 1; }

/* ═══════════════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  border-color: var(--line-1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.1);
}
.service-card.featured {
  border-color: rgba(59,130,246,0.25);
  background: linear-gradient(160deg, rgba(59,130,246,0.08) 0%, var(--surface) 50%);
}
.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--cyan-dim);
  border: 1px solid rgba(6,182,212,0.2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  width: fit-content;
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--text);
}
.service-desc {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  flex-grow: 1;
}
.service-includes {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-2);
}
.service-includes li::before {
  content: '';
  width: 5px; height: 5px;
  margin-top: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.service-cta:hover {
  background: #5B97FF;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

/* ═══════════════════════════════════════════════
   PROYECTOS
═══════════════════════════════════════════════ */
.portfolio-section {
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255,255,255,0.035) 0%, transparent 58%), var(--bg);
}
.project-case {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}
.project-case:target {
  opacity: 1;
  transform: none;
}
.project-case + .project-case {
  margin-top: clamp(76px, 10vw, 132px);
  padding-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.project-case-intro {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  max-width: 860px;
}
.project-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(239,243,255,0.58);
}
.project-case-meta span:first-child {
  color: #D8C08A;
}
.project-case-heading {
  display: grid;
  gap: 12px;
}
.project-case-heading h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(56px, 12vw, 136px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--text);
}
.project-case-heading p {
  max-width: 720px;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text);
}
.project-case-copy {
  max-width: 680px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
}
.project-case-hero {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  background: #05070A;
  box-shadow: 0 28px 90px rgba(0,0,0,0.34);
}
.project-case-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #05070A;
}
.project-case-footer {
  display: grid;
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .project-case-footer {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
    align-items: end;
  }
}
.project-case-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #D8C08A;
}
.project-case-footer p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}
.project-case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.project-link:hover {
  transform: translateY(-2px);
  border-color: rgba(216,192,138,0.45);
  background: rgba(216,192,138,0.08);
}
.project-link-primary {
  border-color: rgba(216,192,138,0.38);
  background: rgba(216,192,138,0.12);
  color: #F3E7C6;
}
.project-case-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 24px);
}
@media (min-width: 760px) {
  .project-case-gallery { grid-template-columns: repeat(2, 1fr); }
}
.project-case-gallery figure {
  display: grid;
  gap: 12px;
  align-content: start;
}
.project-case-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  background: #05070A;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.project-case-gallery-waitlist img {
  object-position: center 34%;
}
.project-case-marea-mobile {
  justify-items: center;
}
.project-case-marea-mobile img {
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  padding: 14px;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 42%),
    #05070A;
}
.project-case-gallery figcaption {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(239,243,255,0.58);
}
.project-case-estate {
  gap: clamp(30px, 5vw, 60px);
}
#preciodetucasa,
#preciodetucasa-galeria,
#alba-higueron,
#alba-higueron-galeria,
#christian-cavaco,
#sistema-creado {
  scroll-margin-top: 96px;
}
.project-case-alba {
  gap: clamp(32px, 5vw, 64px);
}
.project-case-alba-grid {
  display: grid;
  gap: clamp(26px, 5vw, 56px);
  align-items: end;
}
.project-case-alba-intro {
  max-width: 980px;
}
.project-case-alba .project-case-meta span:first-child,
.project-case-alba .project-case-label {
  color: #E7D6A6;
}
.project-case-alba .project-case-heading h3 {
  max-width: 1080px;
  font-size: clamp(42px, 9.5vw, 112px);
  line-height: 0.92;
}
.project-case-alba .project-case-heading p {
  max-width: 780px;
  font-size: clamp(24px, 3.2vw, 42px);
}
.project-case-alba-note {
  max-width: 360px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(231,214,166,0.18);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 14% 0%, rgba(231,214,166,0.13), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(59,130,246,0.035)),
    rgba(255,255,255,0.026);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 48px rgba(0,0,0,0.22);
}
.project-case-alba-note p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}
.project-case-alba-hero {
  padding: clamp(8px, 1.4vw, 16px);
  border-color: rgba(231,214,166,0.22);
  background:
    linear-gradient(135deg, rgba(231,214,166,0.14), rgba(6,182,212,0.055)),
    #05070A;
  box-shadow: 0 30px 100px rgba(0,0,0,0.42), 0 0 70px rgba(231,214,166,0.055);
}
.project-case-alba-hero img {
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--r-xl) - 8px);
}
.project-case-alba .project-link:hover {
  border-color: rgba(231,214,166,0.54);
  background: rgba(231,214,166,0.09);
}
.project-case-alba .project-link-primary {
  border-color: rgba(231,214,166,0.48);
  background: rgba(231,214,166,0.14);
  color: #F7EDCF;
}
.project-case-alba-showcase {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  align-items: stretch;
}
.project-case-alba-showcase figure {
  display: grid;
  gap: 12px;
  align-content: start;
}
.project-case-alba-showcase img {
  display: block;
  width: 100%;
  border: 1px solid rgba(231,214,166,0.14);
  border-radius: var(--r-lg);
  background: #05070A;
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}
.project-case-alba-lifestyle img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.project-case-alba-showcase figcaption {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(239,243,255,0.62);
}
.project-case-alba-mobile {
  display: flex;
  min-height: clamp(480px, 50vw, 620px);
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(231,214,166,0.12), transparent 48%),
    rgba(255,255,255,0.025);
}
.project-case-alba-mobile figure {
  width: min(100%, 320px);
  min-width: 0;
}
.project-case-alba-mobile img {
  aspect-ratio: 9 / 16;
  height: min(560px, 100%);
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  box-shadow: 0 22px 58px rgba(0,0,0,0.38), 0 0 36px rgba(231,214,166,0.055);
}
.project-case-estate-grid {
  display: grid;
  gap: clamp(26px, 5vw, 56px);
  align-items: end;
}
.project-case-estate-intro {
  max-width: 900px;
}
.project-case-estate .project-case-meta span:first-child,
.project-case-estate .project-case-label {
  color: #C99B52;
}
.project-case-estate .project-case-heading h3 {
  max-width: 960px;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.95;
}
.project-case-estate .project-case-heading p {
  max-width: 760px;
  font-size: clamp(24px, 3vw, 40px);
}
.project-case-estate-note {
  max-width: 340px;
  padding-left: 24px;
  border-left: 1px solid rgba(201,155,82,0.42);
}
.project-case-estate-note p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}
.project-case-estate-hero {
  padding: clamp(8px, 1.5vw, 16px);
  border-color: rgba(239,243,255,0.14);
  background: linear-gradient(135deg, rgba(250,246,238,0.12), rgba(59,130,246,0.055)), #080B10;
}
.project-case-estate-hero img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: calc(var(--r-xl) - 8px);
  background: #F4EFE6;
}
.project-case-estate .project-link:hover {
  border-color: rgba(201,155,82,0.52);
  background: rgba(201,155,82,0.08);
}
.project-case-estate .project-link-primary {
  border-color: rgba(201,155,82,0.44);
  background: rgba(201,155,82,0.13);
  color: #F6E8CC;
}
.project-case-estate-gallery img {
  border-color: rgba(239,243,255,0.12);
  background: #F4EFE6;
}
.project-case-estate-gallery .project-case-gallery-wide img {
  aspect-ratio: 16 / 10;
  object-position: center top;
}
.project-case-estate-gallery .project-case-gallery-mobile img {
  aspect-ratio: 9 / 13;
  object-position: center top;
}
.project-case-pilot {
  gap: clamp(20px, 3vw, 34px);
  max-width: 1120px;
  margin-inline: auto;
}
.project-case-pilot .project-case-meta span:first-child,
.project-case-pilot .project-case-label {
  color: #80D7E8;
}
.project-case-pilot-grid {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}
.project-case-pilot-intro {
  max-width: 760px;
}
.project-case-pilot .project-case-heading h3 {
  max-width: 780px;
  font-size: clamp(36px, 5.3vw, 64px);
  line-height: 1;
}
.project-case-pilot .project-case-heading p {
  max-width: 680px;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.14;
}
.project-case-pilot-note {
  align-self: start;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(6,182,212,0.16);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(59,130,246,0.14), transparent 42%),
    linear-gradient(135deg, rgba(59,130,246,0.07), rgba(6,182,212,0.035)),
    rgba(255,255,255,0.024);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 18px 42px rgba(0,0,0,0.18);
}
.project-case-pilot .project-case-footer {
  gap: 24px;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 0;
  border-top: 1px solid rgba(239,243,255,0.12);
  border-bottom: 0;
}
.project-case-pilot .project-case-footer > div {
  min-width: 0;
}
.project-case-pilot .project-case-actions {
  justify-content: flex-start;
}
.project-case-pilot-note p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}
.project-case-pilot-panels {
  display: grid;
  gap: clamp(12px, 1.8vw, 16px);
}
.project-case-pilot-panels > div,
.project-case-pilot-panels > article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(239,243,255,0.10);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 16% 0%, rgba(59,130,246,0.12), transparent 44%),
    linear-gradient(135deg, rgba(59,130,246,0.065), rgba(6,182,212,0.028)),
    rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 38px rgba(0,0,0,0.16);
}
.project-case-pilot-panels p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-2);
}
.project-case-pilot-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 980px;
  margin-top: -4px;
}
.project-case-pilot-checklist span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(6,182,212,0.16);
  border-radius: 999px;
  background: rgba(6,182,212,0.055);
  color: rgba(239,243,255,0.82);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  white-space: normal;
}
.project-case-pilot .project-link:hover {
  border-color: rgba(6,182,212,0.48);
  background: rgba(6,182,212,0.08);
}
.project-case-pilot .project-link-primary {
  border-color: rgba(6,182,212,0.42);
  background: rgba(6,182,212,0.12);
  color: #D7F8FF;
}
.project-case-pilot-gallery {
  gap: clamp(14px, 1.8vw, 18px);
}
.project-case-pilot-gallery figure {
  display: flex;
  min-height: unset;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(239,243,255,0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.14), transparent 46%),
    linear-gradient(180deg, rgba(6,182,212,0.035), rgba(255,255,255,0.018)),
    rgba(255,255,255,0.026);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 18px 42px rgba(0,0,0,0.22);
}
.project-case-pilot-shot {
  align-items: stretch;
  gap: 0;
}
.project-case-pilot-media {
  display: flex;
  height: 360px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
}
.project-case-pilot-gallery img {
  display: block;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  padding: 0;
}
.project-case-pilot-gallery .case-image--phone {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 320px;
  transform: scale(1.12);
  transform-origin: center;
}
.project-case-pilot-gallery .case-image--crm {
  width: 92.5%;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  transform: scale(1.08);
  transform-origin: center;
}
.project-case-pilot-gallery figcaption {
  width: 100%;
  margin-top: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
}
@media (min-width: 760px) {
  .project-case-alba-showcase {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }
  .project-case-estate-gallery {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
    align-items: start;
  }
  .project-case-pilot-panels {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-case-pilot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}
@media (min-width: 920px) {
  .project-case-alba-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }
  .project-case-alba-note {
    justify-self: end;
  }
  .project-case-estate-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }
  .project-case-estate-note {
    justify-self: end;
  }
  .project-case-pilot-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }
  .project-case-pilot-note {
    justify-self: end;
  }
  .project-case-pilot .project-case-footer {
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, 1fr) auto;
    align-items: center;
  }
  .project-case-pilot .project-case-actions {
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .project-case-pilot-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 599px) {
  .project-case { gap: 28px; }
  .project-case-heading h3 { font-size: clamp(42px, 15vw, 62px); }
  .project-case-heading p { font-size: clamp(22px, 8vw, 30px); }
  .project-case-copy { font-size: 15px; line-height: 1.78; }
  .project-case-actions, .project-case-actions .project-link { width: 100%; }
  .project-case-footer { gap: 20px; }
  .project-case + .project-case {
    margin-top: 68px;
    padding-top: 54px;
  }
  .project-case-alba .project-case-heading h3 {
    font-size: clamp(34px, 10vw, 44px);
  }
  .project-case-alba-note {
    max-width: none;
  }
  .project-case-alba-hero {
    border-radius: var(--r-lg);
  }
  .project-case-alba-hero img {
    aspect-ratio: 4 / 5;
    border-radius: calc(var(--r-lg) - 6px);
  }
  .project-case-alba-lifestyle img {
    min-height: 240px;
  }
  .project-case-alba-mobile {
    min-height: 460px;
    padding: 14px;
  }
  .project-case-alba-mobile figure {
    width: min(100%, 260px);
  }
  .project-case-estate .project-case-heading h3 {
    font-size: clamp(32px, 10vw, 42px);
  }
  .project-case-pilot .project-case-heading h3 {
    font-size: clamp(31px, 9.4vw, 40px);
  }
  .project-case-pilot .project-case-heading p {
    font-size: clamp(20px, 7vw, 27px);
  }
  .project-case-estate-note {
    max-width: none;
    padding-left: 18px;
  }
  .project-case-pilot-note {
    padding: 20px;
  }
  .project-case-pilot-checklist {
    gap: 9px;
  }
  .project-case-pilot .project-case-footer {
    gap: 18px;
    padding-top: 22px;
  }
  .project-case-pilot-gallery figure {
    min-height: auto;
    padding: 12px;
  }
  .project-case-pilot-media {
    height: 330px;
  }
  .project-case-pilot-gallery .case-image--phone {
    max-height: 315px;
    transform: scale(1.08);
  }
  .project-case-pilot-gallery .case-image--crm {
    max-height: 240px;
    transform: scale(1.04);
  }
  .project-case-estate-hero {
    border-radius: var(--r-lg);
  }
  .project-case-estate-hero img {
    border-radius: calc(var(--r-lg) - 6px);
  }
}
/* ═══════════════════════════════════════════════
   PROCESO
═══════════════════════════════════════════════ */
.proceso-section {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-1), transparent);
    pointer-events: none;
    z-index: 0;
  }
}
.step-card {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  position: relative;
  z-index: 1;
  transition: border-color .2s ease, transform .2s ease;
}
.step-card:hover {
  border-color: var(--line-1);
  transform: translateY(-2px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(59,130,246,0.25);
  background: var(--blue-dim);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.1px;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .faq-layout { grid-template-columns: 360px 1fr; }
}

.faq-list { display: grid; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--line-1); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  line-height: 1.45;
}
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .2s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  border-color: rgba(59,130,246,0.4);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════════ */
.testimonios-section { padding: 88px 0; background: var(--bg-1); }
.testimonios-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 44px;
}
@media (min-width: 640px) { .testimonios-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonios-card {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s ease, transform .2s ease;
}
.testimonios-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-3px);
}
.testimonios-stars {
  display: flex;
  gap: 3px;
}
.testimonios-stars span {
  color: #F59E0B;
  font-size: 14px;
}
.caso-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--blue);
  margin-bottom: 16px;
}
.testimonios-quote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
  flex: 1;
}
.caso-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 8px;
}
.testimonios-source {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.testimonios-source-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.testimonios-source-biz {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}
/* ═══════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════ */
.cta-section { padding: 88px 0 108px; position: relative; overflow: hidden; }

/* Orbs decorativos */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.orb-blue {
  width: 500px; height: 300px;
  background: rgba(59,130,246,0.12);
  top: -60px; left: 50%;
  transform: translateX(-50%);
}
.orb-cyan {
  width: 300px; height: 200px;
  background: rgba(6,182,212,0.10);
  bottom: 0; right: 10%;
}
.orb-blue-2 {
  width: 260px; height: 200px;
  background: rgba(59,130,246,0.08);
  bottom: -20px; left: 5%;
}

.cta-box {
  position: relative;
  z-index: 2;
  padding: 60px 32px 52px;
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 32px;
  background: radial-gradient(ellipse 120% 100% at 50% -10%, rgba(59,130,246,0.14) 0%, rgba(7,9,14,0.98) 60%);
  text-align: center;
  box-shadow: 0 0 100px rgba(59,130,246,0.08), inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden;
}

/* Top border gradient */
.cta-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}

.cta-box .eyebrow { margin-bottom: 16px; }

.cta-box h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  max-width: 20ch;
  margin-inline: auto;
}
.cta-box > p {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.cta-micro {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}
.cta-micro strong { color: var(--text-2); font-weight: 500; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #22C55E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(34,197,94,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 36px rgba(34,197,94,0.55);
}
.wa-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.footer-top {
  padding: 40px 0 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand .brand-name {
  display: block;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--text);
}
.footer-brand p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 28ch;
}
.footer-tagline {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 6px;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.footer-legal a {
  color: var(--muted);
  transition: color .15s ease;
}
.footer-legal a:hover { color: var(--text-2); }
.footer-legal span { opacity: 0.4; }
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
  }
}
.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom-email {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  transition: color .15s ease;
}
.footer-bottom-email:hover { color: var(--text); }

/* ═══════════════════════════════════════════════
   SOCIAL ICONS
═══════════════════════════════════════════════ */
.social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line-1);
  background: var(--surface);
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.social-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  background: var(--surface-1);
  transform: translateY(-2px);
}
.social-link svg { display: block; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
   MOBILE TWEAKS
═══════════════════════════════════════════════ */
@media (max-width: 599px) {
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .header-cta .btn { height: 38px; padding: 0 14px; font-size: 13px; }
}
@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .cta-section { padding: 64px 0 80px; }
  .cta-box { padding: 44px 22px 40px; border-radius: 22px; }
}
/* ═══════════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════════ */
.contacto-section {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contacto-layout {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .contacto-layout { grid-template-columns: 1fr 1fr; }
}
.contacto-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin-top: 12px;
}
.contacto-text p {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.contacto-data {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacto-dato {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  transition: color .15s ease;
}
.contacto-dato:hover { color: var(--text); }
.contacto-dato svg { flex-shrink: 0; color: var(--cyan); }

.contacto-form {
  display: grid;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.2px;
}
.form-optional {
  font-weight: 300;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: var(--surface-1);
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.05);
}
.form-note {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 4px;
}
.form-wa-link {
  color: #22C55E;
  font-weight: 500;
  transition: color .15s ease;
}
.form-wa-link:hover { color: #16A34A; }
