@font-face {
  font-family: "CalSans";
  /* AsegÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Âºrate de que el nombre del archivo aquÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­ coincida con el que pegaste (incluyendo .ttf, .otf, o .woff2) */
  src:
    url("/libs/fonts/CalSans-Regular.woff2") format("woff2"),
    url("/libs/fonts/CalSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Anton — solo para títulos gigantes de sección (display ultra-bold) */
@font-face {
  font-family: "Anton";
  src: url("/libs/fonts/Anton-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  src: url("/libs/fonts/Anton-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/libs/fonts/inter-regular-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/libs/fonts/inter-medium-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/libs/fonts/inter-semibold-600.woff2') format('woff2');
}

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

/* Transición entre páginas: View Transitions API (receta tipo cuberto) —
   definida en el CSS crítico inline de cada página (el opt-in @view-transition
   debe ir inline; Chrome no espera el CSS diferido). */

:root {
  /* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Colores base ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
  --bg-color: #081b29;
  --primary-bg: #0a0f1c;
  --title-color: #22d3ee;
  --text-color: rgba(255, 255, 255, 0.9);
  --soft-white: #e5e7eb;

  /* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Navbar ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
  --navbar-gradient-start: #1d2b36;
  --navbar-gradient-end: #081b29;

  /* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Utilidades ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;

  /* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Cards y gradientes ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
  --card-bg-1: linear-gradient(145deg, #1a252f, #0f1419);
  --card-bg-2: linear-gradient(145deg, #1f2937, #111827);
  --purple-gradient: linear-gradient(135deg, #6a4c93, #9333ea);
  --cyan-gradient: linear-gradient(135deg, #22d3ee, #0099cc);
  --orange-gradient: linear-gradient(135deg, #f59e0b, #d97706);
  --green-gradient: linear-gradient(135deg, #10b981, #059669);

  /* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Sistema tipogrÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡fico ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Major Third (ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â1.250) | Base: 17px ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
  /*    Valores tomados de typescale.com                           */
  --font-display: "CalSans", sans-serif;
  --font-heading: "CalSans", sans-serif;
  --font-body: "Inter", sans-serif;

  /*                 mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­n        fluido          desktop mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡x       typescale  */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8rem); /*  ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢  0.640rem */
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.9rem); /*  ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢  0.800rem */
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); /* p  ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢  1.000rem */
  --text-md: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); /* h5 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ 1.563rem */
  --text-lg: clamp(1.35rem, 1.2rem + 0.75vw, 1.75rem); /* h4 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ 1.953rem */
  --text-xl: clamp(1.6rem, 1.35rem + 1.2vw, 2.25rem); /* h3 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ 2.441rem */
  --text-2xl: clamp(1.95rem, 1.55rem + 2vw, 2.95rem); /* h2 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ 3.052rem */
  --text-3xl: clamp(2.4rem, 1.7rem + 3.5vw, 4.2rem); /* h1 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ 3.815rem */

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight: -0.02em;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
}

/* ===== LENIS SMOOTH SCROLL ===== */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ===== ELEMENTOS BASE ===== */
body {
  background-color: var(--bg-color);
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  /* CalSans/Anton solo existen en weight 400 e Inter llega hasta 600:
     sin esto, cualquier weight superior (700, bold por defecto de
     strong/b, etc.) dispara el bold sintético del navegador, que en
     una display font geométrica se ve engrosado de forma desigual. */
  font-synthesis-weight: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--soft-white);
  font-weight: 400;
  text-wrap: balance;
}

strong,
b {
  font-weight: 600;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Escala jerÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡rquica de encabezados ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
h1 {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
}
h2 {
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
}
h3 {
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}
h4 {
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
}
h5 {
  font-size: var(--text-md);
  line-height: var(--leading-normal);
}
h6 {
  font-size: var(--text-base);
}

/* ===== COMPONENTES REUTILIZABLES ===== */
.section,
.section-padding {
  /* Aire fluido estilo estudio: ~72px en móvil → ~150px en desktop */
  padding: clamp(72px, 9vw, 150px) 0;
}

.btn-custom {
  background-color: var(--title-color);
  color: white;
  border: none;
  padding: 10px 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-custom:hover {
  background-color: #00c9d8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--soft-white);
  margin-bottom: 15px;
}

.section-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--title-color);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--soft-white);
  line-height: var(--leading-tight);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-normal);
  max-width: 650px;
  margin: 0 auto 20px;
  text-align: center;
}

/* Modificadores para alineaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n a la izquierda en layouts de 2 columnas */
.section-header.text-start {
  align-items: flex-start;
  text-align: left;
}
.section-title.text-start {
  text-align: left;
}
.section-subtitle.text-start {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ===== REVELADO DE TEXTO AL SCROLL (palabra por palabra, scrub) ===== */
/* El subtitulo gana presencia y se "rellena" gris->blanco segun el scroll.
   Fallback (sin JS / reduced-motion): texto legible al 0.85.
   Especificidad alta (.section-subtitle.reveal-words) + !important para
   ganarle al override movil de .section-subtitle. */
.section-subtitle.reveal-words {
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.95rem) !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.85);
  /* ch, no px: la medida (~50-58 caracteres/línea) se mantiene aunque
     el font-size cambie con el clamp(). Antes perdía en cascada contra
     .section-header--editorial .section-subtitle (misma especificidad,
     declarada después) y quedaba en 560px reales → líneas de ~34
     caracteres, muy por debajo del rango legible de 45-65ch. */
  max-width: 38ch !important;
}

.reveal-words .rw {
  /* color inicial real lo fija GSAP; esto es solo el fallback legible */
  color: inherit;
  will-change: color;
}

/* ===== HEADER EDITORIAL (alineado izquierda, eyebrow con paréntesis) ===== */
.section-header.section-header--editorial {
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}
/* Servicios no vive en un contenedor: replica el ancho del .cards-wrapper */
#services.section-header--editorial {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
/* Portafolio: header es un .container; le devuelvo el padding que el editorial quitó */
#portfolio .section-header--editorial {
  padding-left: 20px;
  padding-right: 20px;
}
/* Estas dos secciones conservan padding de contenedor en su contenido:
   se le devuelve al header para que alinee con él */
#testimonials .section-header--editorial {
  padding-left: 20px;
}
#faq .section-header--editorial {
  padding-left: 25px;
}
.section-header--editorial .section-badge {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: var(--soft-white);
  margin-bottom: 22px;
}
/* Paréntesis cyan del eyebrow — global (cualquier .section-badge) */
.section-badge .paren {
  color: var(--title-color);
  margin: 0 4px;
  font-weight: 700;
}
.section-header--editorial .section-title {
  text-align: left;
  font-size: clamp(1.5rem, 3.4vw + 0.6rem, 2.55rem);
  max-width: 900px;
  text-transform: none;
}

/* Título gigante de una palabra (estilo estudio) */
.section-title--giant {
  font-family: "Anton", var(--font-display), sans-serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 6rem) !important;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: none;
  max-width: none !important;
  margin-bottom: 26px;
}
.section-title--giant .st-dot {
  color: var(--title-color);
}
@media (max-width: 768px) {
  .section-header--editorial .section-title--giant {
    font-size: clamp(2.2rem, 10vw, 3.2rem) !important;
    line-height: 0.98;
  }
}
.section-header--editorial .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 560px;
}

/* ===== NAVBAR SIMPLIFICADO ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 18px 0;
  box-shadow: none;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease,
    border-color 0.4s ease, transform 0.4s ease;
}

/* Al hacer scroll: materializa el fondo con blur (nav flotante) */
.navbar.scrolled {
  background: linear-gradient(
    to right,
    rgba(29, 43, 54, 0.85),
    rgba(8, 27, 41, 0.85)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(34, 211, 238, 0.18);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Se oculta deslizando hacia arriba al bajar (mismo comportamiento que index) */
.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Wordmark de texto (reemplaza el logo circular) */
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  transition: opacity 0.3s ease;
}

.brand-js {
  font-size: 1.5rem;
}

.brand-suffix {
  font-size: 1.5rem; /* mismo tamaño que .brand-js: una sola unidad, no marca + etiqueta */
  color: var(--title-color); /* color sólido, no opacidad: se lee nítido a este tamaño */
}

.navbar-brand:hover .brand-wordmark {
  opacity: 0.85;
}

.brand-dot {
  color: var(--title-color);
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  padding: 0;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  position: relative;
  margin: 0 10px;
}

.nav-link {
  color: var(--soft-white) !important;
  margin: 0 6px;
  transition: color 0.3s ease;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  padding: 6px 2px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--title-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.nav-link:hover {
  color: var(--title-color) !important;
}

.nav-link.active {
  color: var(--soft-white) !important;
  font-weight: 500;
}

/* Blindaje navbar: Bootstrap va diferido (preload+onload) para no bloquear
   el render, pero el layout flex/collapse de .navbar-nav/.navbar-collapse/
   .navbar-toggler vive solo ahí. Sin esto, la primera pintura de cada página
   (y el snapshot que capturan las View Transitions al navegar) muestra el
   menú como lista con viñetas y el botón hamburguesa con el fondo blanco
   nativo del navegador hasta que Bootstrap termina de aplicarse. Estas
   reglas replican exactamente el breakpoint navbar-expand-lg (992px) para
   que se vea bien desde el primer frame; cuando Bootstrap carga, sus mismas
   reglas (misma especificidad, después en el cascade) toman el control sin
   ningún salto visual. */
.navbar-toggler {
  background-color: transparent;
  border: 0;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: inline-block;
  }
  .navbar-collapse:not(.show) {
    display: none;
  }
  .navbar-collapse.show {
    display: flex;
  }
}
@media (min-width: 992px) {
  /* Especificidad de 2 clases a propósito: iguala a .navbar-expand-lg
     .navbar-toggler de Bootstrap para ganarle a .custom-toggler{display:
     inline-flex} (1 clase) sin depender del orden de carga. */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-collapse {
    display: flex !important;
  }
  .navbar-nav {
    flex-direction: row;
  }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CTA NAVBAR ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.navbar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.navbar-cta-btn i {
  font-size: 1.1rem;
}

.navbar-cta-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Mobile: full width dentro del menÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Âº */
@media (max-width: 991px) {
  .navbar-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.85rem;
  }
}

.custom-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 211, 238, 0.5) !important;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.custom-toggler:hover {
  background-color: rgba(34, 211, 238, 0.1);
}

.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25);
  outline: none;
}

/* Hamburguesa custom: 2 barras que se animan a X */
.navbar-toggler-icon {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: transparent;
  background-image: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -5px;
}

.navbar-toggler-icon::after {
  top: 5px;
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-top: 10px;
    padding: 20px;
  }

  .logo-img {
    height: 40px;
  }
}

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

/* ===== CONTENEDOR PRINCIPAL ===== */
.hero-modern {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background-color: #081b29;
}

/* ===== FONDOS Y EFECTOS ELIMINADOS POR REFACTORIZACIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN SPLIT SCREEN ===== */

/* ===== CONTENIDO ===== */
.hero-content {
  position: relative;
  z-index: 3;
}

/* Tratamiento Editorial para imÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡genes del Hero (hasta que se reemplace por PNG sin fondo) */
.hero-editorial-img {
  filter: grayscale(100%) brightness(0.7) contrast(1.2);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.hero-editorial-img:hover {
  filter: grayscale(80%) brightness(0.8) contrast(1.1);
  opacity: 0.9;
}

.hero-text-column {
  position: relative;
  z-index: 4;
}

.hero-text-content {
  max-width: none;
}

/* ========================================
   TIPOGRAFÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂA HERO
   ======================================== */

/* H1 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â keyword SEO y CRO Hook */
.hero-headline {
  margin-bottom: 25px;
}

.seo-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-weight: 600;
}
/* Paréntesis cyan decorativos (no entran al texto del H1 → SEO limpio) */
.seo-eyebrow::before {
  content: "(";
  color: var(--title-color);
  font-weight: 700;
  margin-right: 7px;
}
.seo-eyebrow::after {
  content: ")";
  color: var(--title-color);
  font-weight: 700;
  margin-left: 7px;
}

.main-hook {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw + 0.5rem, 5rem);
  line-height: 1.05;
  font-weight: 400; /* CalSans solo trae weight 400: pedir 800 fuerza bold sintético */
  color: #ffffff;
  letter-spacing: -0.025em;
}

.highlight-cyan {
  color: var(--title-color);
}

/* PÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡rrafo hero ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â --text-md para destacar sin competir con el titular */
.hero-description {
  font-family: var(--font-body);
  font-size: var(--text-md); /* clamp(1.10rem, 2.2vw + 0.42rem, 1.42rem) */
  line-height: var(--leading-normal);
  color: #a1a1aa; /* paso de jerarquía: no compite con el titular blanco */
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 500px;
}

/* Wrapper del bloque CTA */
.hero-cta-wrapper {
  margin-bottom: 40px;
}

/* Nota pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±a bajo el botÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n */
.hero-cta-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--soft-white);
  margin: 12px 0 0 0;
  line-height: var(--leading-normal);
}

/* Social proof ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â layout */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-social-proof:hover img {
  transform: translateY(-3px);
}

/* Stack de avatares */
.hero-avatar-stack {
  display: flex;
}

.hero-avatar-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #081b29;
  margin-left: -10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition: all 0.3s ease;
}

.hero-avatar-img:first-child {
  margin-left: 0;
}

/* Texto del social proof */
.hero-social-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.hero-social-text strong {
  color: var(--title-color);
}

.hero-social-text span {
  font-size: var(--text-xs);
  opacity: 0.9;
  display: inline-block;
  margin-top: 2px;
}

/* ========================================
   BOTONES CTA
   ======================================== */

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary-hero {
  background: #22d3ee;
  width: auto;
  max-width: 100%;
  color: #081b29;
  padding: 16px 35px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600; /* Inter solo trae hasta 600 (el CSS crítico del head ya usaba 600) */
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(34, 211, 238, 0.35);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary-hero i {
  font-size: 1.5rem;
  color: #081b29;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.5);
  color: #081b29;
  background: #38dcf3;
}

.btn-primary-hero:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s;
}

/* Texto solo para lectores de pantalla y SEO (completa H2 con keywords sin alterar el diseño) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   IMAGEN MÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œVIL
   ======================================== */

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

/* ========================================
   ANIMACIONES
   ======================================== */

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

/* Desktop XL ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â solo ajustes de layout, la tipografÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­a la maneja clamp() */
@media (min-width: 992px) and (max-width: 1399px) {
  .hero-text-column {
    flex: 0 0 65%;
    max-width: 65%;
    padding-right: 4rem;
  }

  .hero-content {
    padding-left: 2rem;
  }
}

/* Tablet horizontal */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-modern {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-text-content {
    max-width: 680px;
    text-align: center;
    margin: 0 auto 50px;
  }

  .hero-headline,
  .hero-description {
    text-align: center;
  }

  .hero-cta-wrapper,
  .hero-social-proof {
    justify-content: center;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil */
@media (max-width: 767px) {
  .hero-modern {
    padding: 100px 0 60px;
    min-height: 85vh;
  }

  .hero-background-img {
    display: none !important;
  }

  .hero-gradient {
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(34, 211, 238, 0.08) 40%,
        rgba(34, 211, 238, 0) 50%
      ),
      linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 60%,
        rgba(249, 115, 22, 0.08) 70%,
        rgba(255, 255, 255, 0) 80%
      ),
      radial-gradient(
        ellipse at 10% 70%,
        rgba(249, 115, 22, 0.18) 0%,
        transparent 45%
      ),
      radial-gradient(
        ellipse at 90% 25%,
        rgba(34, 211, 238, 0.15) 0%,
        transparent 45%
      ),
      linear-gradient(180deg, #040914 0%, #081b29 100%) !important;
    opacity: 1 !important;
  }

  .hero-mobile-image {
    display: block;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 25px auto 35px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.3);
  }

  .hero-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-text-content {
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-eyebrow,
  .hero-headline,
  .hero-description {
    text-align: center !important;
  }

  .hero-cta-wrapper {
    justify-content: center !important;
  }

  .hero-social-proof {
    flex-direction: column;
    text-align: center !important;
    align-items: center !important;
    gap: 15px;
  }
  .btn-primary-hero {
    font-size: 0.9rem;
    padding: 15px 30px;
  }

  .btn-primary-hero i {
    font-size: 1.4rem;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±o */
@media (max-width: 600px) {
  .hero-modern {
    padding: 80px 0 50px;
  }

  .hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn-primary-hero {
    width: auto;
    min-width: 280px;
    max-width: 100%;
  }

  .hero-mobile-image {
    max-width: 400px;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil XS */
@media (max-width: 480px) {
  .hero-modern {
    padding: 70px 0 40px;
  }

  .btn-primary-hero {
    padding: 14px 28px;
    font-size: 0.85rem;
    min-width: 260px;
  }

  .btn-primary-hero i {
    font-size: 1.3rem;
  }

  .hero-mobile-image {
    max-width: 350px;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil XXS */
@media (max-width: 360px) {
  .hero-mobile-image {
    max-width: 300px;
  }

  .btn-primary-hero {
    min-width: 240px;
    padding: 12px 24px;
  }
}

/* ========================================
   BADGE SUPERIOR
   ======================================== */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #22d3ee;
  font-family: "CalSans", sans-serif;
}

@media (max-width: 767px) {
  .hero-badge {
    padding: 6px 16px;
    gap: 8px;
    background: rgba(34, 211, 238, 0.05) !important;
    border: 1px solid transparent !important;
    position: relative;
    z-index: 1;
  }

  .hero-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(90deg, #f97316, var(--title-color));
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
  }

  .hero-badge-text {
    font-size: 14px !important;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    padding: 7px 16px;
  }

  .hero-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.3px;
  }
}

/* ========================================
   BARRA DE TECNOLOGÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂAS (TICKER)
   ======================================== */

.tech-ticker {
  background: #07141f;
  border-top: 1px solid rgba(34, 211, 238, 0.12);
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 -1px 0 rgba(34, 211, 238, 0.06),
    0 1px 0 rgba(34, 211, 238, 0.06);
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
  will-change: transform;
}

.ticker-wrapper:hover .ticker-content {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-content {
    animation: none;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "CalSans", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.ticker-item i {
  font-size: 1.2rem;
  color: var(--title-color);
  opacity: 0.85;
}

.ticker-separator {
  font-size: 0.5rem;
  color: rgba(34, 211, 238, 0.25);
  font-weight: bold;
  margin: 0 40px;
}

/* Responsive para ticker */
@media (max-width: 768px) {
  .ticker-item {
    font-size: 0.8rem;
  }

  .ticker-item i {
    font-size: 1.2rem;
  }
}

/* ===== ABOUT WHY SECTION - OPTIMIZADO FINAL ===== */
.about-why-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.about-why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(34, 211, 238, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* === COLUMNA IZQUIERDA === */
.about-left-wrapper {
  position: relative;
  padding: 20px;
}

.about-img-box {
  margin-bottom: 30px;
  position: relative;
}

/* Imagen MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂS ALTA */
.about-team-img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
  filter: drop-shadow(0 10px 30px rgba(34, 211, 238, 0.1));
  animation: floating 7s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* EstadÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­sticas SIN CUADROS/TARJETAS */
.about-stats-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* SIN background, border ni padding */
  transition: all 0.3s ease;
}

.about-stat-item:hover {
  transform: translateY(-3px);
}

.about-stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.15),
    rgba(34, 211, 238, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-stat-icon i {
  font-size: 1.3rem;
  color: var(--title-color);
}

.about-stat-content {
  flex: 1;
}

.about-stat-num {
  font-size: 1.8rem;
  font-weight: 400; /* CalSans no tiene 800 real */
  font-variant-numeric: tabular-nums;
  color: var(--title-color);
  margin: 0;
  line-height: 1;
  font-family: var(--font-display);
}

.about-stat-text {
  font-size: 0.8rem;
  color: var(--soft-white);
  margin: 5px 0 0;
  line-height: 1.3;
  font-family: "CalSans", sans-serif;
}

/* === COLUMNA DERECHA === */
.process-content-wrapper {
  padding: 20px;
}

/* Sobre mi: badge "Potenciado con IA" */
.about-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 22px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.18),
    rgba(34, 211, 238, 0.04)
  );
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--title-color);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-ai-badge i {
  font-size: 1rem;
}

/* Sobre mi: callout destacado del diferenciador IA */
.about-ai-callout {
  position: relative;
  margin: 0 0 30px;
  padding: 18px 22px;
  border-left: 3px solid var(--title-color);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(
    90deg,
    rgba(34, 211, 238, 0.08),
    rgba(34, 211, 238, 0)
  );
  color: var(--soft-white);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-ai-callout strong {
  color: #fff;
}

/* Badge superior */
.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.15),
    rgba(34, 211, 238, 0.05)
  );
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 20px;
  padding: 8px 20px;
  font-family: "CalSans", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--title-color);
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.process-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--title-color);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* TÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­tulo principal */
.process-title {
  font-family: "CalSans", sans-serif;
  font-size: 2rem;
  color: var(--soft-white);
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.process-title-highlight {
  color: var(--title-color);
  font-weight: 700;
}

/* DescripciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n */
.process-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* === BENEFICIOS LIMPIOS === */
.process-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.process-benefit-item:hover {
  transform: translateX(5px);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Âcono de check */
.process-benefit-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.15),
    rgba(34, 211, 238, 0.05)
  );
  border: 2px solid rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-benefit-item:hover .process-benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.25),
    rgba(34, 211, 238, 0.1)
  );
  border-color: var(--title-color);
  transform: scale(1.1);
}

.process-benefit-icon i {
  font-size: 0.9rem;
  color: var(--title-color);
}

/* Texto del beneficio */
.process-benefit-text {
  flex: 1;
}

.process-benefit-title {
  font-family: "CalSans", sans-serif;
  font-size: 1.05rem;
  color: #ffffff; /* BLANCO */
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n CTA */
.process-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--title-color), #00b8c7);
  color: var(--bg-color);
  font-family: "CalSans", monospace;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 16px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
  position: relative;
  overflow: hidden;
}

.process-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.portfolio-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  z-index: 10;
}

.spotlight-carousel-container {
  max-width: 1240px;
  position: relative;
  margin: 28px auto 0;
  overflow: visible;
  padding: 20px 20px;
}

.spotlight-carousel {
  width: 100%;
  overflow: visible;
  position: relative;
}

.spotlight-track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.spotlight-slide {
  flex: 0 0 1220px;
  max-width: 86vw;
  aspect-ratio: 1220 / 660;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  opacity: 0.35;
  transform: scale(0.9);
  pointer-events: none;
}

.spotlight-slide.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

@media (min-width: 1200px) {
  .spotlight-slide {
    max-width: 1220px;
  }
}

.spotlight-card {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  background: #0b1c28;
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-slide.active .spotlight-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.12);
}

.spotlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.spotlight-slide.active .spotlight-card:hover img {
  transform: scale(1.03);
}

.spotlight-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  z-index: 2;
}

.spotlight-card-info {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 18px);
  text-align: left;
}

@media (min-width: 768px) {
  .spotlight-card-info {
    max-width: 50%;
  }
}

.spotlight-category {
  color: var(--title-color);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.spotlight-title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.spotlight-location {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.spotlight-result {
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  margin: 0;
  line-height: 1.45;
}

.spotlight-result strong {
  color: var(--title-color);
}

.spotlight-cta {
  color: var(--title-color);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: transform 0.25s ease, opacity 0.25s ease;
  margin-top: clamp(8px, 1.2vw, 16px);
}

.spotlight-cta i {
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.spotlight-cta:hover {
  color: #00c9d8;
  transform: translateX(4px);
}

.spotlight-cta:hover i {
  transform: translate(2px, -2px);
}

.spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
}

.spotlight-dots {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spotlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-radius 0.3s ease;
}

.spotlight-dot.active {
  width: 28px;
  border-radius: 4px;
  background-color: var(--title-color);
}

.spotlight-pause-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--title-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spotlight-pause-btn:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.6);
  color: #ffffff;
  transform: scale(1.05);
}

.spotlight-pause-btn i {
  font-size: 1.2rem;
}

.spotlight-pause-btn .spotlight-ic {
  width: 16px;
  height: 16px;
}

/* Por defecto reproduce: se muestra la pausa, se oculta el play */
.spotlight-pause-btn .spotlight-ic--play {
  display: none;
}
.spotlight-pause-btn.is-paused .spotlight-ic--pause {
  display: none;
}
.spotlight-pause-btn.is-paused .spotlight-ic--play {
  display: inline-block;
}

/* Spacer style */
.portfolio-spacer {
  margin-bottom: 20px;
}



/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ SLIDE INNER ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */




/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ SLIDE OVERLAY ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */


.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* Gradiente cian como los botones de servicios */
  background: linear-gradient(135deg, #00f5ff 0%, #00ccff 50%, #0099cc 100%);
  color: #000000;
  font-family: "CalSans", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 16px 35px;
  border-radius: 50px; /* Consistente con hero */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  text-transform: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 8px 25px rgba(34, 211, 238, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo */
.btn-ver-mas::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-ver-mas:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(34, 211, 238, 0.45),
    0 0 30px rgba(34, 211, 238, 0.25);
  background: linear-gradient(135deg, #00ffff 0%, #22d3ee 50%, #00ccff 100%);
  color: #000000;
}

.btn-ver-mas:hover::before {
  left: 100%;
}

.btn-ver-mas:active {
  transform: translateY(-1px) scale(0.99);
  transition: transform 0.1s;
}

/* Icono */
.btn-ver-mas i {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.btn-ver-mas:hover i {
  transform: translateX(5px);
}

/* Focus para accesibilidad */
.btn-ver-mas:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.5);
  outline-offset: 4px;
}

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

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .slide-track {
    width: calc(380px * 21);
  }

  .slide {
    width: 380px;
    height: 520px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-380px * 7));
    }
  }

  .slider-container:before,
  .slider-container:after {
    width: 150px;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles grandes (481px - 767px) */
@media (max-width: 767px) {
  .portfolio-section {
    padding: 60px 0;
  }

  .slide-track {
    width: calc(320px * 21);
    animation: scroll 50s linear infinite;
  }

  .slide {
    width: 320px;
    height: 480px;
    padding: 0 10px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 7));
    }
  }

  .slider-container:before,
  .slider-container:after {
    width: 80px;
  }

  .btn-ver-mas {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±os (hasta 480px) */
@media (max-width: 480px) {
  .portfolio-section {
    padding: 50px 0;
  }

  .slide-track {
    width: calc(280px * 21);
    animation: scroll 45s linear infinite;
  }

  .slide {
    width: 280px;
    height: 420px;
    padding: 0 8px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-280px * 7));
    }
  }

  .slider-container:before,
  .slider-container:after {
    width: 50px;
  }

  .btn-ver-mas {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* ===== WHY CHOOSE SECTION ===== */

.why-choose-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(34, 211, 238, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.phone-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.phone-mockup {
  max-width: 90%; /* Reducido de 100% para dar mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s espacio al texto */
  height: auto;
  max-height: 500px;
  border-radius: 10px;
  animation: floating 5s ease-in-out infinite;
}

.why-choose-content {
  padding: 20px 40px; /* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s padding derecho */
}

.why-choose-title {
  font-family: "CalSans", sans-serif;
  font-size: 2rem; /* Aumentado para mejor lectura */
  color: var(--title-color);
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  line-height: 1.4; /* CLAVE: permite que el tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­tulo respire en 2 lÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­neas */
  max-width: 500px; /* Limita el ancho para forzar 2 lÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­neas */
}

.why-choose-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--title-color);
}

.benefits-list {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(5px);
  background-color: rgba(13, 27, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.check-icon {
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0; /* Evita que el icono se comprima */
}

.check-icon i {
  font-size: 1.3rem;
  color: var(--title-color);
}

.benefit-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  flex: 1;
}

.benefit-text .highlight {
  color: #ffffff;
  font-weight: 600;
}

.cta-container {
  margin-top: 30px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border: none;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  background-color: #f8f9fa;
  color: #000000;
}

.btn-cta-primary i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
  transform: translateX(5px);
}

/* Ajuste de columnas para mejor balance */
@media (min-width: 992px) {
  .why-choose-section .col-lg-6:first-child {
    flex: 0 0 40%; /* Imagen ocupa 40% */
    max-width: 40%;
  }

  .why-choose-section .col-lg-6:last-child {
    flex: 0 0 60%; /* Texto ocupa 60% */
    max-width: 60%;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-color);
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contenedor especÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­fico para testimonios */
.testimonials .testimonial-item {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--title-color),
    transparent
  );
  transform: translateX(-100%);
  transition: var(--transition);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.testimonials .testimonial-item:hover:before {
  transform: translateX(0);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: #f59e0b;
  font-size: 1.1rem;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 15px;
  object-fit: cover;
  transition: var(--transition);
}

.testimonials .testimonial-item:hover .testimonial-img {
  border-color: rgba(255, 255, 255, 0.3);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 20px auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  flex-grow: 1;
}

.profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonials .testimonial-item .t-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.testimonials .testimonial-item .t-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ GOOGLE BADGE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.google-badge:hover span {
  color: rgba(255, 255, 255, 0.85);
}

.google-badge span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  letter-spacing: 0.2px;
}

/* Swiper especÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­fico */
.testimonials .swiper {
  width: 100%;
  padding-bottom: 50px !important;
}

.testimonials .swiper-wrapper {
  height: auto;
  padding-bottom: 20px;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
  bottom: 0 !important;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(34, 211, 238, 0.3);
  opacity: 1;
  transition: var(--transition);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--title-color);
  box-shadow: 0 0 15px var(--title-color);
}

.testimonials .swiper-slide {
  opacity: 0.6;
  transition: var(--transition);
  height: auto;
}

.testimonials .swiper-slide-active {
  opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 20px;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next,
  .testimonials .swiper-slide-prev {
    opacity: 0.3;
  }

  .testimonials .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    min-height: 300px;
    margin: 20px 15px;
    padding: 25px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonial-item {
    margin: 20px 10px;
    padding: 20px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(34, 211, 238, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-intro {
  margin-bottom: 50px;
}

.contact-subtitle {
  color: var(--title-color);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.contact-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--title-color);
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw + 0.5rem, var(--text-2xl));
  color: var(--soft-white);
  margin-bottom: 25px;
  font-weight: 400;
  line-height: var(--leading-snug);
}

.contact-description {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-color);
  line-height: var(--leading-normal);
  max-width: 500px;
}

/* Contact Info */
.contact-section .section-header {
  margin-bottom: 0;
}

/* Tarjeta de contacto (lista de items con circulo + texto) */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon i {
  color: #ffffff;
  font-size: 22px;
}

/* Variante enlace (Instagram): clicable, con hover */
a.contact-icon {
  text-decoration: none;
}

a.contact-icon:hover {
  border-color: var(--title-color);
  background-color: rgba(34, 211, 238, 0.1);
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

a.contact-value {
  text-decoration: none;
  transition: color 0.3s;
}

a.contact-value:hover {
  color: var(--title-color);
}

.contact-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 10px 0;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--title-color), #00c9d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(34, 211, 238, 0.3);
}

.info-icon i {
  color: #081b29;
  font-size: 1.2rem;
  font-weight: bold;
}

.info-label {
  color: var(--title-color);
  font-family: "CalSans", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.info-content p {
  color: var(--soft-white);
  margin: 0;
  font-size: 1rem;
}

/* Contact Form */




.form-title {
  color: var(--soft-white);
  font-family: var(--font-display);
  font-size: var(--text-md);
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  color: var(--soft-white);
  font-family: "CalSans", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--border-radius);
  color: var(--soft-white);
  padding: 15px;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--title-color);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
  outline: none;
  color: var(--soft-white);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-send {
  background: linear-gradient(135deg, var(--title-color), #00b8c7);
  color: #081b29;
  font-family: "CalSans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(34, 211, 238, 0.25);
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}

.btn-send::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-send:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
}

.btn-send:hover::before {
  left: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  text-decoration: none;
}

.whatsapp-float i {
  color: white;
  font-size: 1.8rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive */
@media (max-width: 768px) {
  

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float i {
    font-size: 1.6rem;
  }
}

/* FOOTER SIMPLIFICADO CON LOGO */
.footer-main {
  background: linear-gradient(135deg, #0a1929 0%, #081b29 50%, #0d2235 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.footer-content {
  padding: 40px 0 20px;
  text-align: center;
}

/* Logo con imagen simplificado */
.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-logo-img {
  height: 100px; /* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“Ãƒâ€¹Ã¢â‚¬Â  NUEVA ALTURA */
  width: auto;
  max-width: 300px; /* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“Ãƒâ€¹Ã¢â‚¬Â  TAMBIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°N AUMENTÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â° EL MAX-WIDTH */
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
  filter: brightness(1.3) drop-shadow(0 0 15px rgba(34, 211, 238, 0.5));
}

.footer-tagline {
  color: var(--soft-white);
  font-size: 0.9rem;
  margin-top: 8px;
  opacity: 0.8;
}

/* Grid simplificado */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 30px;
  margin-bottom: 30px;
  text-align: left;
  align-items: start;
}

.footer-section h4 {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* NavegaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n simplificada */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 0;
}
/* Variante apilada (columna "Zonas de Servicio") */
.footer-nav-list--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-nav-link {
  position: relative;
  color: var(--soft-white);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1.2;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.footer-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--title-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-nav-link:hover {
  color: #ffffff;
}

.footer-nav-link:hover::after {
  transform: scaleX(1);
}

/* Contacto simplificado */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-item {
  color: var(--soft-white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: var(--title-color);
  width: 16px;
}

/* Redes: enlaces de texto con flecha (estilo agencia) */
.footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.social-link .social-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  color: var(--title-color);
}

.social-link:hover .social-arrow {
  color: var(--title-color);
  transform: translate(3px, -3px);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  color: var(--soft-white);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

.footer-copyright strong {
  color: var(--title-color);
}

/* Enlaces legales (privacidad / terminos) */
.legal-links {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:not(:last-child) {
  margin-right: 15px;
}

.legal-links a:hover {
  color: var(--title-color);
}

.developer-link {
  color: var(--title-color);
  text-decoration: none;
  font-family: "CalSans", monospace;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.developer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--title-color);
  transition: var(--transition);
}

.developer-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
  transform: scale(1.05);
}

.developer-link:hover::after {
  width: 100%;
}

.back-to-top {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--title-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--title-color);
  color: #081b29;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-content {
    padding: 32px 0 16px;
    text-align: left;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.12);
  }

  .footer-tagline {
    text-align: center;
    font-size: 0.82rem;
    max-width: 280px;
    margin: 6px auto 0;
    line-height: 1.5;
  }

  /* Logo mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±o en mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil */
  .footer-logo-img {
    height: 70px;
  }

  /* Grid: NavegaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n + Zonas en 2 columnas lado a lado */
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 24px;
  }

  /* Cada secciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n con padding y separador interno */
  .footer-section {
    padding: 16px 12px 16px 4px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.08);
  }

  /* Contacto (3ª) y Redes (última) ocupan todo el ancho */
  .footer-section:nth-child(3),
  .footer-section:last-child {
    grid-column: 1 / -1;
    padding: 16px 4px;
  }

  .footer-section h4,
  .footer-section .footer-section-title {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-align: left;
    text-transform: uppercase;
  }

  /* Listas de nav: columna vertical alineada a la izquierda */
  .footer-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    justify-content: flex-start;
  }

  .footer-nav-link {
    font-size: 0.95rem;
    padding-bottom: 2px;
  }

  /* Contacto: fila horizontal en 2 columnas */
  .footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    align-items: start;
    text-align: left;
  }

  /* El primer ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­tem (ubicaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n) ocupa todo el ancho */
  .footer-contact .contact-item:first-child {
    grid-column: 1 / -1;
  }

  .contact-item {
    font-size: 0.82rem;
    align-items: flex-start;
    gap: 6px;
  }

  /* Redes: lista de texto en 2 columnas para aprovechar el ancho */
  .footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    padding: 4px 0 0;
  }

  .social-link {
    width: auto;
    height: auto;
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    flex-wrap: nowrap;
    padding: 16px 0 12px;
  }

  .footer-copyright {
    text-align: left;
    font-size: 0.82rem;
    width: auto;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
  color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== MEDIA QUERIES ===== */

/* Tablet y laptop pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±a */
@media (max-width: 1200px) {
  .tech-icons {
    gap: 20px;
  }
  .experience-info {
    gap: 30px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  /* Navbar */
  .navbar-collapse {
    background: linear-gradient(
      to bottom,
      var(--navbar-gradient-start),
      var(--navbar-gradient-end)
    );
    border-radius: var(--border-radius);
    margin-top: 10px;
    padding: 15px;
    border: 1px solid rgba(34, 211, 238, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav {
    padding: 10px 0;
    margin: 0 auto;
  }
  .logo-img {
    height: 40px;
    width: auto;
  }
  .nav-item {
    margin: 8px 0;
  }
  .nav-link {
    padding: 10px 15px !important;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: rgba(34, 211, 238, 0.1);
    color: #22d3ee !important;
  }

  .nav-link::after {
    display: none;
  }

  /* Animaciones */
  .navbar-collapse.collapsing {
    height: auto;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .navbar-collapse.show {
    animation: slideDown 0.3s forwards;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Experience bar */
  .experience-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .experience-info {
    padding-left: 0;
    justify-content: center;
    gap: 60px;
  }

  .tech-icons {
    padding-right: 0;
    justify-content: center;
    gap: 30px;
  }

  .experience-bar {
    padding: 30px 0;
  }

  /* Hero section */
  .hero {
    padding: 100px 0 40px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero h3 {
    font-size: 1.1rem;
  }
  .hero p {
    font-size: 0.95rem;
  }

  /* Services */
  .service-card {
    padding: 35px 20px;
  }
  .service-title {
    font-size: 1.1rem;
  }
  .service-description {
    font-size: 0.9rem;
  }

  /* Why choose section */
  .why-choose-title {
    font-size: 1.6rem;
  }
  .benefit-text {
    font-size: 0.95rem;
  }
  .phone-mockup {
    max-height: 400px;
  }

  /* Banner */
  .desktop-banner {
    display: none;
  }
  .mobile-banner {
    display: block;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil grande */
@media (max-width: 767.98px) {
  /* Typography & Section Headers */
  .section-header {
    align-items: flex-start !important;
    text-align: left !important;
    padding-top: 40px !important;
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
  }

  .section-badge {
    font-size: 14px !important;
  }

  .section-title {
    font-size: clamp(1.75rem, 8.5vw, 2.1rem) !important;
    text-align: left !important;
    margin-bottom: 15px;
    line-height: 1.25 !important;
  }

  .section-subtitle {
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  /* Navbar */
  .logo-img {
    height: 36px;
    width: auto;
  }
  .navbar {
    padding: 8px 0;
  }
  .navbar-collapse {
    margin-top: 8px;
    padding: 10px;
  }
  .nav-link {
    font-size: 0.85rem;
    padding: 8px 12px !important;
  }

  /* Hero */
  .hero {
    padding: 80px 0 30px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .hero h3 {
    font-size: 1rem;
  }
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  .rocket-img {
    max-width: 80%;
  }

  /* Questions container */
  .questions-container {
    padding: 15px 0;
  }
  .question-item {
    margin-bottom: 20px;
  }
  .question-item h5 {
    font-size: 0.9rem;
  }
  .question-item i {
    font-size: 1.1rem;
  }

  /* Experience bar */
  .experience-bar {
    padding: 25px 0;
  }
  .experience-container {
    flex-direction: column;
    gap: 25px;
    padding: 0 10px;
  }
  .experience-info {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .experience-stat {
    gap: 10px;
    padding: 8px;
    flex-direction: column;
    text-align: center;
  }
  .experience-number {
    font-size: 2.2rem;
    line-height: 1;
  }
  .experience-text {
    font-size: 0.75rem;
    text-align: center;
  }
  .tech-icons {
    gap: 20px;
    justify-content: center;
    max-width: 100%;
  }
  .tech-icons img {
    height: 32px;
  }
  .tech-label {
    font-size: 0.65rem;
  }

  /* Services */
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  .service-icon {
    height: 70px;
    margin-bottom: 20px;
  }
  .service-img {
    max-height: 60px;
  }
  .service-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .service-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .btn-cotizar {
    font-size: 0.9rem;
    padding: 12px 28px;
  }

  /* Why choose */
  .why-choose-section {
    padding: 60px 0;
  }
  .why-choose-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
  }
  .why-choose-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .phone-mockup {
    max-height: 350px;
  }
  .benefit-item {
    padding: 12px;
    margin-bottom: 15px;
  }
  .benefit-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .check-icon i {
    font-size: 1.1rem;
  }
  .btn-cta-primary {
    font-size: 0.9rem;
    padding: 12px 25px;
    width: 100%;
    justify-content: center;
  }

  /* Banner */
  .banner-full-section {
    padding: 20px 0 40px;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±o */
@media (max-width: 575.98px) {
  /* General */
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  /* Navbar */
  .logo-img {
    height: 34px;
    width: auto;
  }
  .navbar-collapse {
    padding: 8px;
  }

  /* Hero */
  .hero {
    padding: 70px 0 25px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .hero h3 {
    font-size: 0.9rem;
  }
  .hero p {
    font-size: 0.8rem;
  }
  .rocket-img {
    max-width: 75%;
  }

  /* Experience bar */
  .experience-info {
    gap: 30px;
  }
  .experience-number {
    font-size: 2rem;
  }
  .experience-text {
    font-size: 0.7rem;
  }
  .tech-icons {
    gap: 15px;
  }
  .tech-icons img {
    height: 28px;
  }

  /* Services */
  .services-section {
    padding: 50px 0;
  }
  .service-card {
    padding: 25px 15px;
  }
  .service-icon {
    height: 60px;
  }
  .service-img {
    max-height: 50px;
  }
  .service-title {
    font-size: 0.95rem;
  }
  .service-description {
    font-size: 0.8rem;
  }
  .btn-cotizar {
    font-size: 0.85rem;
    padding: 10px 25px;
  }

  /* Why choose */
  .why-choose-section {
    padding: 50px 0;
  }
  .why-choose-title {
    font-size: 1.2rem;
  }
  .phone-mockup {
    max-height: 300px;
  }
  .benefit-item {
    padding: 10px;
  }
  .benefit-text {
    font-size: 0.8rem;
  }
  .check-icon {
    margin-right: 12px;
  }
  .check-icon i {
    font-size: 1rem;
  }
  .btn-cta-primary {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil extra pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±o */
@media (max-width: 480px) {
  /* Hero */
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero h3 {
    font-size: 0.85rem;
  }
  .hero p {
    font-size: 0.75rem;
  }

  /* Experience */
  .experience-info {
    gap: 25px;
    flex-direction: column;
  }
  .experience-number {
    font-size: 1.8rem;
  }
  .experience-text {
    font-size: 0.65rem;
  }
  .tech-icons {
    gap: 12px;
  }
  .tech-icons img {
    height: 24px;
  }

  /* Services */
  .service-card {
    padding: 20px 12px;
  }
  .service-title {
    font-size: 0.9rem;
  }
  .service-description {
    font-size: 0.75rem;
  }

  /* Why choose */
  .why-choose-title {
    font-size: 1.1rem;
  }
  .phone-mockup {
    max-height: 280px;
  }
  .benefit-text {
    font-size: 0.75rem;
  }
}

/* Landscape mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³vil */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    padding: 40px 0 20px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .rocket-img {
    max-width: 60%;
  }
  .experience-bar {
    padding: 15px 0;
  }
  .section {
    padding: 40px 0;
  }
  .phone-mockup {
    max-height: 250px;
  }
}

/* Optimizaciones de rendimiento para dispositivos mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles */
@media (max-width: 767.98px) {
  /* Reducir animaciones en mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles para mejor rendimiento */
  .slide-track {
    animation-duration: 80s;
  }

  /* Simplificar efectos hover en mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles */
  .service-card:hover,
  .slide:hover,
  .benefit-item:hover {
    transform: none;
  }

  /* Optimizar sombras para mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles */
  .service-card,
  .benefit-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .slide-track {
    animation: none;
  }

  .rocket-img {
    animation: none;
  }

  .phone-mockup {
    animation: none;
  }
}

/* Alto contraste */
@media (prefers-contrast: high) {
  :root {
    --title-color: #00ffff;
    --text-color: #ffffff;
    --soft-white: #ffffff;
  }

  .service-card,
  .benefit-item {
    border: 2px solid var(--title-color);
  }
}

/* ========================================
   SECCIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN DE PRECIOS
   ======================================== */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 15% 50%,
      rgba(106, 76, 147, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 85% 15%,
      rgba(34, 211, 238, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 90%,
      rgba(16, 185, 129, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.pricing-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== HEADER ===== */
.pricing-title {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-title h2 {
  font-family: "CalSans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--title-color);
  margin-bottom: 20px;
  letter-spacing: 0.03em; /* em, no px: escala con el clamp() */
  text-transform: uppercase;
  font-weight: 400; /* CalSans no tiene 600 real */
}

.gradient-text {
  background: linear-gradient(135deg, #22d3ee 0%, rgba(34, 211, 238, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pricing-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--soft-white);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

/* ===== GRID DE CARDS ===== */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start; /* FIX: era stretch */
  margin-bottom: 0;
}

/* ===== CARDS ELITE SAAS ===== */
.pricing-card {
  background: #09090b;
  background-image: radial-gradient(
    120% 120% at 50% -10%,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  overflow: hidden;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Card destacada */
.pricing-card.professional {
  border-color: rgba(34, 211, 238, 0.3);
  background-image: radial-gradient(
    120% 120% at 50% -10%,
    rgba(34, 211, 238, 0.05) 0%,
    transparent 100%
  );
  transform: scale(1.02);
  box-shadow: inset 0 1px 0 0 rgba(34, 211, 238, 0.15);
}

.pricing-card.professional:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 0 rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.5);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--title-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(34, 211, 238, 0.2);
  backdrop-filter: blur(10px);
}

/* ===== CONTENIDO DE CARDS ===== */
.plan-name {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.plan-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 30px 0;
  min-height: 40px;
  line-height: 1.5;
}

.plan-price {
  margin-bottom: 25px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.price-container {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.currency {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 4px;
}

.amount {
  font-family: "CalSans", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
  font-weight: 400; /* CalSans no tiene 600 real */
  font-variant-numeric: tabular-nums; /* dígitos de ancho fijo: el precio no "salta" al cambiar */
  letter-spacing: -0.02em; /* em, no px: escala junto con el clamp() */
  line-height: 0.9;
}

.currency-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 4px;
}

.price-from {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: -4px;
}

.price-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: -10px 0 25px 0;
  line-height: 1.5;
}

/* ===== LISTA DE FEATURES ===== */
.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.plan-features li:hover {
  color: #ffffff;
}

.plan-features li i {
  color: #d4d4d8;
  margin-right: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Modificador para checks destacados */
.pricing-card.professional .plan-features li i {
  color: var(--title-color);
  opacity: 0.8;
}

/* ===== ITEMS DESTACADOS (sin fondos abaratadores) ===== */
.plan-features li.feature-highlight {
  flex-direction: row;
  padding: 0;
  background: transparent;
  border: none;
  margin: 0;
}

.plan-features li.feature-highlight div {
  display: flex;
  flex-direction: column;
}

.plan-features li.feature-highlight strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.plan-features li.feature-highlight .feature-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ===== BOTONES CTA DE CARDS (DARK GLASS) ===== */
.plan-cta {
  padding: 16px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}

/* Botones BÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡sicos (Dark Glass) */
.pricing-card .plan-cta {
  background: #18181b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .plan-cta:hover {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.2);
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n Destacado (Contraste MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ximo) */
.pricing-card.professional .plan-cta {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  font-weight: 600;
}

.pricing-card.professional .plan-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-cta i {
  font-size: 1.2rem;
  transform: translateY(1px); /* AlineaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³ptica */
}

/* ========================================
   CIERRE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â FOOTER DE PRECIOS
   ======================================== */
.pricing-footer {
  max-width: 800px;
  margin: auto;
  margin-top: 60px;
  padding: 40px;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 20px;
  background: rgba(34, 211, 238, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-question {
  font-family: "CalSans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--soft-white);
  margin: 0 0 8px 0;
  font-weight: 400; /* CalSans no tiene 600 real */
  letter-spacing: 0.02em;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.footer-copy {
  flex: 1;
  min-width: 200px;
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n footer ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â RediseÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±o Premium SÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³lido */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-cta:hover {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-cta:hover i {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .pricing-row {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .pricing-card.professional {
    transform: scale(1.02);
  }
  .pricing-card.professional:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 30px 22px;
    max-width: none;
  }

  .pricing-card.professional {
    transform: none;
  }
  .pricing-card.professional:hover {
    transform: translateY(-4px);
  }

  .plan-name {
    font-size: 1.3rem;
  }
  .amount {
    font-size: 1.5rem;
  }
  .plan-features li {
    font-size: 0.85rem;
    padding: 10px 0;
  }
  .plan-description {
    min-height: auto;
  }
  .popular-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }
  .pricing-title {
    margin-bottom: 50px;
  }

  /* Footer responsive */
  .pricing-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 20px;
    text-align: left;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-container {
    padding: 0 15px;
  }
  .pricing-title {
    margin-bottom: 40px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .plan-cta {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  .amount {
    font-size: 1.4rem;
  }
  .pricing-footer {
    margin-top: 40px;
    padding: 24px 18px;
  }
  .footer-question {
    font-size: 0.95rem;
  }
  .footer-text {
    font-size: 0.85rem;
  }
  .footer-cta {
    font-size: 0.78rem;
    padding: 13px 22px;
  }
}

/* ===== STICKY BAR DE CONVERSIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN ===== */
.conversion-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  padding: 15px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* Mostrar cuando el usuario hace scroll */
.conversion-bar.show {
  transform: translateY(0);
}

.conversion-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.conversion-text {
  color: var(--soft-white);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.conversion-text strong {
  color: var(--title-color);
  font-weight: 600;
}

.btn-conversion {
  background: var(--cyan-gradient);
  color: var(--primary-bg);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-conversion:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.3);
}

/* Responsive para sticky bar */
@media (max-width: 768px) {
  .conversion-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .conversion-text {
    font-size: 0.85rem;
  }

  .btn-conversion {
    width: 100%;
    max-width: 250px;
  }
}

.footer-cta:hover i {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .pricing-row {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .pricing-card.professional {
    transform: scale(1.02);
  }
  .pricing-card.professional:hover {
    transform: scale(1.02) translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 30px 22px;
    max-width: none;
  }

  .pricing-card.professional {
    transform: none;
  }
  .pricing-card.professional:hover {
    transform: translateY(-4px);
  }

  .plan-name {
    font-size: 1.3rem;
  }
  .amount {
    font-size: 1.5rem;
  }
  .plan-features li {
    font-size: 0.85rem;
    padding: 10px 0;
  }
  .plan-description {
    min-height: auto;
  }
  .popular-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }
  .pricing-title {
    margin-bottom: 50px;
  }

  /* Footer responsive */
  .pricing-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 20px;
    text-align: left;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-container {
    padding: 0 15px;
  }
  .pricing-title {
    margin-bottom: 40px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .plan-cta {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  .amount {
    font-size: 1.4rem;
  }
  .pricing-footer {
    margin-top: 40px;
    padding: 24px 18px;
  }
  .footer-question {
    font-size: 0.95rem;
  }
  .footer-text {
    font-size: 0.85rem;
  }
  .footer-cta {
    font-size: 0.78rem;
    padding: 13px 22px;
  }
}

/* ===== STICKY BAR DE CONVERSIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN ===== */
.conversion-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  padding: 15px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* Mostrar cuando el usuario hace scroll */
.conversion-bar.show {
  transform: translateY(0);
}

.conversion-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.conversion-text {
  color: var(--soft-white);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.conversion-text strong {
  color: var(--title-color);
  font-weight: 600;
}

.btn-conversion {
  background: var(--cyan-gradient);
  color: var(--primary-bg);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-conversion:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.3);
}

/* Responsive para sticky bar */
@media (max-width: 768px) {
  .conversion-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .conversion-text {
    font-size: 0.85rem;
  }

  .btn-conversion {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .conversion-bar {
    padding: 12px 0;
  }

  .conversion-text {
    font-size: 0.8rem;
  }

  .btn-conversion {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(34, 211, 238, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-subtitle {
  color: var(--title-color);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.faq-title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, var(--text-2xl));
  font-weight: 400;
  margin: 0 0 15px;
  letter-spacing: var(--tracking-wide);
}

.faq-description {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: var(--text-base);
  margin: 0;
  line-height: var(--leading-normal);
}

/* Container de FAQ */
.custom-accordion {
  max-width: 760px !important;
  margin: 0 auto !important;
}

/* Accordion Items */
.faq-item, 
.accordion-item.faq-item {
  background-color: rgba(255, 255, 255, 0.02) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: none !important;
}

/* BotÃƒÆ’Ã‚Â³n del acordeÃƒÆ’Ã‚Â³n */
.faq-button {
  background-color: transparent !important;
  background: transparent !important; /* Force reset */
  color: #FFFFFF !important;
  font-family: var(--font-display);
  font-size: 20px !important; /* CORRECCIÓN: Letra más grande */
  font-weight: 400 !important;
  box-shadow: none !important;
  padding: 24px 32px !important; /* CORRECCIÓN: Esto le da la altura y respiración */
  letter-spacing: 0 !important;
  line-height: var(--leading-normal);
  transition: var(--transition);
  border: none !important;
}

.faq-button::after {
  background-image: none !important;
  content: '\002B' !important; /* Icono + */
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
  font-family: system-ui, -apple-system, sans-serif !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  filter: none !important;
}

.faq-button:not(.collapsed) {
  color: #FFFFFF !important;
  background-color: transparent !important;
}

.faq-button:not(.collapsed)::after {
  content: '\2212' !important; /* Icono - */
  border-color: var(--title-color) !important;
  color: var(--title-color) !important;
  transform: rotate(180deg) !important;
}

/* Cuerpo del acordeÃƒÆ’Ã‚Â³n */
.faq-body {
  font-family: var(--font-body);
  color: #A1A1AA !important;
  line-height: 1.6 !important;
  padding: 0 32px 24px 32px !important; /* CORRECCIÓN: Alineado perfecto con la pregunta */
  background-color: transparent !important;
  font-size: var(--text-base);
  border-top: none !important;
}

/* Link CTA inferior */
.faq-footer {
  text-align: center;
  margin-top: 35px;
}

.faq-cta-link {
  color: var(--title-color);
  font-family: "CalSans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.faq-cta-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--title-color);
  transition: var(--transition);
}

.faq-cta-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.faq-cta-link:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE FAQ ===== */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-button {
    padding: 20px 24px !important;
    font-size: 18px !important;
  }
  .faq-body {
    padding: 0 24px 20px 24px !important;
  }
}
@media (max-width: 480px) {
  .faq-button {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }
  .faq-body {
    padding: 0 20px 16px 20px !important;
  }
}

/* ===== PORTFOLIO HERO SECTION ===== */
.portfolio-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Cambiado a scroll para compatibilidad móvil y evitar repetición */
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  min-height: 70vh; /* Ocupa el 70% de la altura visible, igual que index.html */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 15, 25, 0.85) 0%,
    rgba(10, 15, 25, 0.5) 45%,
    transparent 100%
  );
  z-index: 1;
}

.portfolio-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.portfolio-hero__wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: var(--text-3xl); /* token del sistema (= H1 de index) */
  margin-bottom: 25px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  animation: portfolio-fadeInDown 0.8s ease-out;
  font-weight: 400;
  text-align: center;
}

.portfolio-hero__highlight {
  background: linear-gradient(135deg, #00eeee 0%, #00c9d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.3));
  display: block;
}

.portfolio-hero__subtitle-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.portfolio-hero__description {
  color: #a1a1aa; /* misma jerarquía que .hero-description en index */
  font-family: var(--font-body);
  font-size: var(--text-md); /* Tipografía fluida basada en index.html */
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: var(--leading-normal);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  animation: portfolio-fadeInUp 0.8s ease-out 0.2s both;
  text-align: center;
}

.portfolio-hero__link {
  color: #00eeee;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.portfolio-hero__link:hover {
  color: #00c9d8;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
  text-decoration-thickness: 2px;
}

/* ===== CTAs CONTAINER ===== */
.portfolio-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  animation: portfolio-fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== CTA PRIMARIO ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â azul cyan ===== */
.portfolio-hero__cta {
  background: linear-gradient(135deg, #00eeee 0%, #00c9d8 50%, #00a8b5 100%);
  color: #000;
  padding: 16px 35px;
  border-radius: 50px;
  font-family: "Inter", sans-serif; /* mismo tratamiento que .btn-primary-hero en index */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 25px rgba(34, 211, 238, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: cyan-pulse 3s ease-in-out infinite;
}

.portfolio-hero__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.portfolio-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  background: #f8f9fa;
  color: #000;
}

.portfolio-hero__cta:hover::before {
  left: 100%;
}

.portfolio-hero__cta:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s;
}

/* ===== CTA SECUNDARIO ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â naranja suave ===== */
.portfolio-hero__cta--secondary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  color: #ffffff;
  padding: 16px 35px;
  border-radius: 50px;
  font-family: "Inter", sans-serif; /* mismo tratamiento que el CTA primario */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 25px rgba(245, 158, 11, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: amber-pulse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.portfolio-hero__cta--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.portfolio-hero__cta--secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(245, 158, 11, 0.4),
    0 0 30px rgba(245, 158, 11, 0.25);
  color: #ffffff;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  animation: none;
}

.portfolio-hero__cta--secondary:hover::before {
  left: 100%;
}

.portfolio-hero__cta--secondary:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s;
}

@keyframes amber-pulse {
  0%,
  100% {
    box-shadow:
      0 8px 25px rgba(245, 158, 11, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  }
  50% {
    box-shadow:
      0 8px 35px rgba(245, 158, 11, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .portfolio-hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .portfolio-hero__cta,
  .portfolio-hero__cta--secondary {
    padding: 13px 32px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .portfolio-hero__cta,
  .portfolio-hero__cta--secondary {
    padding: 12px 28px;
    font-size: 0.8rem;
    max-width: 280px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .portfolio-hero {
    min-height: 550px;
    padding: 100px 0 70px;
  }

  .portfolio-hero__title {
    margin-bottom: 20px;
  }

  .portfolio-hero__description {
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .portfolio-hero {
    min-height: 480px;
    padding: 80px 0 60px;
    background-attachment: scroll;
  }

  /* Paridad con index: en móvil el overlay va vertical (to bottom) */
  .portfolio-hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 15, 25, 0.85) 0%,
      rgba(10, 15, 25, 0.68) 60%,
      rgba(10, 15, 25, 0.85) 100%
    );
  }

  .portfolio-hero__title {
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .portfolio-hero__description {
    margin-bottom: 30px;
    line-height: 1.7;
  }

  .portfolio-hero__cta,
  .portfolio-hero__cta--secondary {
    padding: 13px 32px;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    width: 100%;
    text-align: center;
  }

  .portfolio-hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .portfolio-hero {
    min-height: 420px;
    padding: 60px 0 50px;
  }

  .portfolio-hero__title {
    margin-bottom: 12px;
  }

  .portfolio-hero__description {
    margin-bottom: 25px;
  }

  .portfolio-hero__cta,
  .portfolio-hero__cta--secondary {
    padding: 12px 28px;
    font-size: 0.75rem;
  }
}

/* ===== GALLERY SECTION - MINIMALISTA PULIDA ===== */
.gallery-section {
  background-color: var(--bg-color);
  padding: 80px 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== FILTER BUTTONS ===== */
.filter-container {
  text-align: center;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(34, 211, 238, 0.3);
  color: var(--title-color);
  padding: 12px 24px;
  margin: 6px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--title-color);
  color: var(--bg-color);
  border-color: var(--title-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(34, 211, 238, 0.3);
}

/* ===== GRID 3 COLUMNAS ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* ===== CARD MINIMALISTA - PROPORCIÓN 370x610 ===== */
.gallery-item {
  position: relative;
  background: rgba(15, 35, 50, 0.6);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.2);
  cursor: pointer;
  aspect-ratio: 370 / 610;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(34, 211, 238, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  /* Scroll reveal initial state */
  opacity: 0;
  transform: translateY(35px);
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(34, 211, 238, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gallery-item.visible:hover {
  transform: translateY(-8px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== IMAGE WRAPPER - 80% de altura (490/610) ===== */
.gallery-item .image-wrapper {
  position: relative;
  width: 100%;
  flex: 0 0 80%;
  overflow: hidden;
  background: rgba(8, 27, 41, 0.3);
}

/* ===== IMAGEN CON EFECTO SCROLL COMPLETO - AJUSTE CLAVE ===== */
.gallery-item img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
/* Zoom lento al hover (ken-burns) — coherente con las cards de index */
.gallery-item:hover img {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item img {
    transition: none;
  }
  .gallery-item:hover img {
    transform: none;
  }
}

/* ===== HOT BADGE MINIMALISTA ===== */
.gallery-item .hot-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 107, 53, 0.95);
  color: white;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

/* ===== CONTENT WRAPPER - 20% de altura (120/610) ===== */
.gallery-item .content-wrapper {
  position: relative;
  flex: 0 0 20%;
  padding: 20px 24px;
  background: rgba(8, 27, 41, 0.6);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== BREADCRUMB MINIMALISTA ===== */
.gallery-item .breadcrumb {
  display: block;
  color: rgba(34, 211, 238, 0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: var(--font-display);
}

/* ===== TÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂTULO LIMPIO ===== */
.gallery-item .project-title {
  font-size: var(--text-base);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

/* ===== BOTÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN EXTERNO MINIMALISTA ===== */
.gallery-item .btn-external {
  position: absolute;
  bottom: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 8px;
  color: var(--title-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.gallery-item .btn-external:hover {
  background: var(--title-color);
  color: var(--bg-color);
  border-color: var(--title-color);
  transform: scale(1.08);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filter-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 35px;
  }

  .filter-btn {
    padding: 10px 18px;
    margin: 4px;
  }

  .gallery-item .content-wrapper {
    padding: 18px 20px;
  }
}

/* ===== ANIMACIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN DE ENTRADA ===== */
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

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

/* ===== FILTRADO ===== */
.gallery-item.hide {
  display: none;
}

.gallery-item.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

/* ===== CTA FINAL PORTAFOLIO ===== */
.portfolio-cta-final {
  background: linear-gradient(
    135deg,
    rgba(8, 27, 41, 0.98) 0%,
    rgba(8, 27, 41, 0.95) 100%
  );
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  padding: 80px 20px;
  text-align: center;
}

.portfolio-cta-final__eyebrow {
  font-family: var(--font-display);
  color: #22d3ee;
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.portfolio-cta-final__title {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.portfolio-cta-final__highlight {
  background: linear-gradient(135deg, #00eeee 0%, #00c9d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.3));
}

.portfolio-cta-final__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-md);
  max-width: 480px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
}

.portfolio-cta-final__sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-cta-final {
    padding: 60px 20px;
  }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ HEADER Servicios Cartagena ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.section-header {
  text-align: center;
  padding: 4rem 2rem 5rem;
}
.section-eye {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--title-color);
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.section-eye::before,
.section-eye::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #22d3ee;
  opacity: 0.35;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ STACK CARDS WRAPPER ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.cards-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Cards base ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.cards-wrapper .card {
  position: sticky;
  top: 8vh;
  transform-origin: top center;
  will-change: transform, filter;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  /* Visibles por defecto (fallback sin-JS / reduced-motion).
     La entrada y el recede al scroll los gobierna animations.js (5C). */
}
.cards-wrapper .card:not(:last-child) {
  margin-bottom: 3vh;
}
.cards-wrapper .card:nth-child(1) {
  z-index: 1;
}
.cards-wrapper .card:nth-child(2) {
  z-index: 2;
}
.cards-wrapper .card:nth-child(3) {
  z-index: 3;
}
.cards-wrapper .card-body {
  padding: 0;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Tarjeta visual ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.card-body {
  border-radius: 22px;
  overflow: hidden;
  /* min-height (no height fijo): la card crece con el contenido y NUNCA
     recorta el CTA. Piso 450px → proporción ~2.6:1 en laptops (menos
     "banner"); tope 500px para no pasar de ~2.4:1 en monitores altos. */
  min-height: clamp(450px, 46vh, 500px);
  display: grid;
  grid-template-columns: 40% 60%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.04),
              0 4px 24px rgba(0, 0, 0, 0.3);
  background: linear-gradient(160deg, #17171b 0%, #0a0a0b 60%);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

/* Hover premium: lift sutil + borde con acento + sombra profunda */
.cards-wrapper .card:hover .card-body {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.5);
}
/* La imagen escala lento dentro del card-body (overflow:hidden la recorta) */
.card__right img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.cards-wrapper .card:hover .card__right img {
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .card-body,
  .card__right img {
    transition: none;
  }
}
#card1 .card-body {
}
#card2 .card-body {
}
#card3 .card-body {
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Glow por card ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
#card1 .card__glow,
#card2 .card__glow,
#card3 .card__glow {
  display: none;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Columna izquierda ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.card__left {
  position: relative;
  z-index: 2;
  padding: 3rem 1.8rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.6rem;
}
.card__top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
/* Eyebrow uppercase (estilo Método) */
.card__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

/* Número gigante de fondo (gradiente clip cyan, marca de agua) */
.card__bignum {
  position: absolute;
  bottom: -2.4rem;
  right: 62%;
  left: auto;
  z-index: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13rem;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.22), rgba(34, 211, 238, 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.5s ease;
}
.cards-wrapper .card:hover .card__bignum {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.4), rgba(34, 211, 238, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
}

.card__title {
  margin-top: 0.4rem;
  line-height: 1;
}
.card__service-name {
  display: block;
  font-size: var(--text-md);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.card__service-hook {
  display: block;
  font-size: clamp(0.85rem, 1.2vw + 0.4rem, 1.05rem);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 500;
  color: var(--title-color);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Bottom: descripciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n + CTA ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.card__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.card__desc {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
}
.card__desc strong {
  color: #ffffff;
  font-weight: 600;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CTA ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--title-color);
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  padding: 11px 22px;
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}
.card__cta:hover {
  background: var(--title-color);
  border-color: var(--title-color);
  color: #06181c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
}
.card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.card__cta:hover svg {
  transform: translateX(4px);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Columna imagen ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.card__right {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0;
  margin: 0;
  height: 100%;
}
.card__right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  background: linear-gradient(90deg, #141417 0%, transparent 100%);
  pointer-events: none;
}
.card__right img {
  /* absolute: rellena la columna sin imponer su altura natural a la card.
     Así el alto lo dicta el contenido (texto) + min-height, no la imagen. */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.9);
  transition:
    filter 0.5s,
    transform 0.7s;
}
.card-body:hover .card__right img {
  filter: brightness(0.92) saturate(1.05);
  transform: scale(1.04);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ MOBILE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 820px) {
  .card-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.04), 
                0 4px 24px rgba(0, 0, 0, 0.3) !important;
  }
  .card__right {
    order: -1;
    height: auto;
  }
  .card__right::after {
    display: none !important;
  }
  .card__right img {
    position: static !important; /* en móvil va en flujo, no absolute */
    inset: auto !important;
    margin: 16px 16px 0 16px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    width: calc(100% - 32px) !important;
    height: 200px !important;
    display: block !important;
    object-fit: cover !important;
  }
  .card__left {
    padding: 20px 20px 24px 20px !important;
  }
  .card__bignum {
    font-size: 7rem;
    bottom: -1.4rem;
    right: 5%;
    left: auto;
  }
  .card__title {
    margin-bottom: 12px;
  }
  .card__service-name {
    font-size: 22px !important;
    line-height: 1.2;
  }
  .card__service-hook {
    font-size: 14px !important;
  }
  .card__desc {
    font-size: 16px !important;
    line-height: 1.5;
  }
  .card__cta {
    display: inline-flex !important;
    padding: 12px 0 !important;
    min-height: 48px !important;
    line-height: 1.4 !important;
    align-items: center !important;
  }
}
@media (max-width: 480px) {
  .card__cta {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    border: 1px solid rgba(34, 211, 238, 0.3) !important;
    border-radius: 8px !important;
    background: rgba(34, 211, 238, 0.05) !important;
    min-height: 48px !important;
  }
}

/* PRICING CLOSING */
.pricing-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 30px 40px;
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.pricing-closing__guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.pricing-closing__guarantee i {
  color: var(--title-color);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pricing-closing__guarantee p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.pricing-closing__guarantee strong {
  color: #ffffff;
}

.pricing-closing__divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.pricing-closing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.pricing-closing__question {
  color: #ffffff;
  font-family: "CalSans", sans-serif;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

.pricing-closing__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981, #047857);
  color: #ffffff;
  font-family: "CalSans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.pricing-closing__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pricing-closing {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  .pricing-closing__divider {
    width: 60px;
    height: 1px;
  }
  .pricing-closing__guarantee {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   AJUSTES FINALES UI - SECCIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN HERO (FIT & FINISH)
   ========================================================================== */

/* 1. El punto del Badge (Cambiar de rojo a Cyan) */
.hero-badge-dot {
  background-color: var(--title-color) !important; /* O el cÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³digo HEX de nuestro Cyan */
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7) !important;
  animation: pulse-dot-cyan 2s ease-in-out infinite !important;
}

@keyframes pulse-dot-cyan {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
  }
}

/* 2. IntegraciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n de la Imagen sin fondo (A todo color sobre Dark Mode) */
.hero-image-wrapper img,
.hero-mobile-image img {
  border: none !important;
  opacity: 1 !important;
  filter: none !important;
  transition: transform 0.3s ease !important;
}

.hero-image-wrapper img:hover,
.hero-mobile-image img:hover {
  transform: translateY(-5px);
}

/* ==========================================================================
   ACTUALIZACIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN HERO: FONDO PANTALLA COMPLETA (FULL BLEED)
   ========================================================================== */

.hero-modern {
  position: relative;
  overflow: hidden;
}

.hero-bg-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 15, 25, 0.85) 0%, rgba(10, 15, 25, 0.5) 45%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   ACTUALIZACIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN POR QUÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â° ELEGIRME (FIT & FINISH)
   ========================================================================== */

/* 1. Imagen Cutout y Glow Cyan */
.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-main-img {
  filter: brightness(0.85) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
  position: relative;
}

/* 5. Tarjeta de Cristal (Glassmorphism Bento) */
.about-stats-container {
  position: absolute;
  bottom: 10%;
  right: 0%;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .about-stats-container {
    right: 10px;
    bottom: 0px;
  }
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat-icon i {
  font-size: 24px;
  color: var(--title-color);
}

.about-stat-num {
  font-family: "CalSans", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

.about-stat-text {
  font-size: 0.85rem;
  color: #A1A1AA;
  margin: 0;
  line-height: 1.2;
}

/* 2. TipografÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­a Regular para PÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡rrafos y Bullets */
.process-description,
.process-benefit-title {
  font-family: var(--font-body);
  font-weight: 400 !important;
  color: #A1A1AA !important;
}

.process-benefit-title strong {
  font-weight: 600;
  color: #ffffff;
}

/* 4. BotÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n Limpio (Sin Radiactividad) */
.process-cta-button {
  box-shadow: none !important;
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid transparent !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
}

.process-cta-button i {
  color: #000000 !important;
}

.process-cta-button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px) !important;
}

.process-cta-button:hover i {
  transform: translateX(5px);
}

.process-cta-button:hover::before {
  left: 100%;
}

/* ===== BENTO LAYOUT - POR QUÉ ELEGIRME ===== */

/* Tarjeta de Perfil Ejecutivo */
.bento-profile-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
              0 0 90px -25px rgba(34, 211, 238, 0.3);
  transition: border-color 0.5s ease, box-shadow 0.5s ease,
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-profile-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
              0 0 110px -18px rgba(34, 211, 238, 0.42),
              inset 0 0 0 1px rgba(34, 211, 238, 0.12);
  transform: translateY(-4px);
}

.bento-profile-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}
/* Velo cyan→oscuro al pie de la foto: integra el B&N con la marca */
.bento-profile-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(34, 211, 238, 0.1) 80%, rgba(10, 10, 11, 0.65));
  pointer-events: none;
}

.bento-profile-img {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%) brightness(0.88) contrast(1.08);
  transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: cover;
  object-position: center 12%;
}
.bento-profile-card:hover .bento-profile-img {
  filter: grayscale(100%) brightness(0.95) contrast(1.12);
  transform: scale(1.04);
}

/* Estadísticas dentro de la tarjeta */
.bento-profile-stats {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  padding: 30px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.05), transparent);
}
/* Watermark de marca para profundidad (estilo estudio) */
.bento-profile-stats::before {
  content: "JS";
  position: absolute;
  right: 18px;
  bottom: -14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
}

.bento-stat {
  position: relative;
  text-align: center;
  flex: 1;
}
.bento-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.bento-stat-num {
  font-family: "CalSans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1;
  margin: 0;
}

.bento-stat-text {
  font-size: 0.76rem;
  color: #a1a1aa;
  margin: 8px 0 0;
  line-height: 1.3;
}

/* Grid de Beneficios 2x2 */
.bento-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 24px;
  column-gap: 40px;
}

.bento-benefit-card {
  padding: 0;
}

.bento-benefit-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #ffffff;
  margin: 0 0 6px;
  font-weight: 400 !important;
  letter-spacing: 0.2px;
}

.bento-benefit-title i {
  color: #22d3ee;
  font-size: 1.15rem;
  flex-shrink: 0;
  font-weight: normal !important;
}

.bento-benefit-title strong {
  color: #ffffff;
  font-weight: 600 !important;
  letter-spacing: -0.3px;
}

.bento-benefit-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #A1A1AA;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  padding-left: 27px;
}

/* CTA centrado bajo el grid (versión desktop). En móvil hay un botón
   aparte reposicionado debajo de las estadísticas (col-12 d-lg-none en el
   HTML) — sin este override quedan los dos visibles: display:flex!important
   acá gana por orden de cascada sobre el d-none de Bootstrap. */
.bento-cta-wrapper {
  display: flex !important;
  justify-content: center;
  margin-top: 45px;
}
@media (max-width: 991.98px) {
  .bento-cta-wrapper {
    display: none !important;
  }
}

/* ===== BENTO RESPONSIVE ===== */
@media (max-width: 991px) {
  .bento-profile-card {
    max-width: 420px;
    margin: 40px auto 0;
  }

  .bento-profile-stats {
    gap: 40px;
    padding: 28px 20px;
  }

  .bento-stat-num {
    font-size: 2.2rem;
  }

  .bento-benefits-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bento-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .bento-benefit-title {
    font-size: 0.9rem;
  }

  .bento-benefit-desc {
    font-size: 13px;
    padding-left: 24px;
  }

  .bento-profile-card {
    max-width: 100%;
  }

  .bento-profile-stats {
    gap: 30px;
    padding: 24px 16px;
  }

  .bento-stat-num {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .bento-benefits-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bento-benefit-title {
    font-size: 0.95rem;
  }

  .bento-benefit-desc {
    font-size: 14px;
    padding-left: 26px;
  }

  .bento-profile-stats {
    gap: 30px;
    padding: 24px 16px;
  }

  .bento-stat-num {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   ACTUALIZACIÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œN FORMULARIO DE CONTACTO (CINEMATIC MINIMALIST)
   ========================================================================== */

.contact-section {
  padding: 100px 0;
  background-image: linear-gradient(to right, rgba(10, 15, 25, 0.95) 0%, rgba(10, 15, 25, 0.7) 45%, rgba(10, 15, 25, 0.5) 100%), url('./imagenes/formulario.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom, 
    #081b29 0%, 
    rgba(8, 27, 41, 0) 15%, 
    rgba(8, 27, 41, 0) 85%, 
    #081b29 100% 
  );
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-visual-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .contact-visual-column {
    min-height: 400px;
    margin-bottom: 30px;
  }
}

.contact-giant-title {
  font-family: "CalSans", sans-serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-minimal-info {
  margin-top: auto;
  font-family: var(--font-body);
  color: #A1A1AA;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-minimal-info p {
  margin-bottom: 5px;
}

/* Tarjeta del formulario */


.contact-form-container::before,
.contact-form-container::after {
  display: none !important;
}

.contact-form-container .form-title {
  font-family: "CalSans", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Campos Minimalistas */
.form-input {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 0 !important;
  color: #FFFFFF !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-body);
}

.form-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--title-color) !important;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.form-label {
  color: #A1A1AA;
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n Pill */
.btn-pill {
  border-radius: 50px !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  font-weight: 600 !important;
  padding: 15px 40px !important;
  border: none !important;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
  font-family: var(--font-body);
}

.btn-pill:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px);
}

.btn-pill i {
  color: #000000 !important;
}


.contact-form-container {
  background-color: #111111 !important;
  border-radius: 24px !important;
  padding: 50px 40px !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Ajustes Responsive para el Fondo Completo (Full Bleed) */
@media (max-width: 767px) {
  .hero-bg-img {
    object-position: center;
  }
  .hero-bg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 15, 25, 0.85) 0%,
      rgba(10, 15, 25, 0.68) 60%,
      rgba(10, 15, 25, 0.85) 100%
    ) !important;
  }
}

/* --- PORTAFOLIO MOBILE UX/CRO OVERRIDES --- */
@media (max-width: 767.98px) {
  .portfolio-section .section-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .portfolio-section .section-subtitle {
    margin-bottom: 32px !important;
  }
  .portfolio-section .section-title {
    font-size: clamp(1.8rem, 8.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }
  .portfolio-section .mt-5 {
    margin-top: 12px !important;
  }

  .spotlight-carousel-container {
    margin-top: 16px !important;
    padding: 10px 0 20px !important;
  }

  .spotlight-track {
    gap: 18px !important;
  }

  .spotlight-slide {
    flex-basis: 320px !important;
    width: 320px !important;
    max-width: 320px !important;
    aspect-ratio: 320 / 520 !important;
  }

  .spotlight-card {
    border-radius: 22px !important;
  }

  .spotlight-card-body {
    padding: 24px !important;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      transparent 100%
    ) !important;
  }

  .spotlight-card-info {
    max-width: 100% !important;
    gap: 10px !important;
  }

  .spotlight-title {
    font-size: clamp(1.25rem, 7vw, 1.55rem) !important;
    line-height: 1.15 !important;
  }

  .spotlight-result {
    font-size: clamp(0.95rem, 4vw, 1.05rem) !important;
    line-height: 1.4 !important;
  }
}

/* ===== FOOTER: CIERRE CTA + WORDMARK GIGANTE ===== */
.footer-cta-band {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px clamp(36px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
}
.footer-cta-title span {
  color: var(--title-color);
}
.footer-cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-base);
  margin: 0 0 28px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: #000;
}
.footer-cta-btn i {
  font-size: 1.2rem;
}

.footer-wordmark {
  margin-top: clamp(30px, 5vw, 60px);
  overflow: hidden;
  line-height: 0.78;
  text-align: center;
}
.footer-wordmark span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19vw;
  letter-spacing: -0.03em;
  white-space: nowrap;
  user-select: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.03)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ==========================================================================
   CARTAGENA · #cartagena-contexto — panel de contraste (data density)
   Scopeado: reutiliza la estética de .bento-profile-card + .bento-stat
   ========================================================================== */
/* Header: vive solo el badge + título gigante full-bleed. Anulo el padding/margin
   gigante que .section-header global le inyecta (4rem/5rem + 50px) y que abría
   una banda muerta de ~170px hacia el cuerpo. */
#cartagena-contexto .ctx-header {
  padding: 0;
  margin-bottom: clamp(26px, 3vw, 40px);
}
#cartagena-contexto .ctx-header .section-title--giant {
  margin-bottom: 0;
}
#cartagena-contexto .ctx-grid {
  margin-top: 0;
  align-items: stretch;
  row-gap: 36px;
}
/* Subtítulo reubicado en la columna izquierda (sigue siendo reveal-words). */
#cartagena-contexto .ctx-sub {
  text-align: left;
  max-width: none;
  margin: 0 0 26px;
}
#cartagena-contexto .ctx-grid .about-ai-callout {
  margin-bottom: 0;
}
/* La columna del panel estira el panel a la altura del texto: el "vacío" pasa a
   estar DENTRO de la tarjeta (intencional), no como banda rota en el layout. */
#cartagena-contexto .col-lg-5 {
  display: flex;
}

/* Texto-soporte: muteado para que el peso visual sea título -> dato -> prosa.
   El color gris lo hereda de .process-description (#A1A1AA, token muteado del
   sistema); aquí solo ajusto ancho, ritmo y el realce blanco de las entidades.
   Sigue siendo texto real en el HTML (crawleable), no oculto. */
#cartagena-contexto .ctx-lead {
  max-width: 600px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
}
#cartagena-contexto .ctx-lead strong {
  color: #fff;
  font-weight: 600;
}

/* La columna derecha ya no es una data-card: es la IMAGEN del terreno real,
   a la altura completa del texto y tratada con el lenguaje del sistema oscuro.
   El degradado de fondo sirve de placeholder hasta que exista el WebP. */
#cartagena-contexto .ctx-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(
      120% 80% at 80% 0%,
      rgba(34, 211, 238, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, #0c2630, #061015);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
#cartagena-contexto .ctx-visual:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 110px -18px rgba(34, 211, 238, 0.42),
    inset 0 0 0 1px rgba(34, 211, 238, 0.12);
  transform: translateY(-4px);
}
/* La imagen llena el marco; tratamiento moderado para encajar en el sistema
   oscuro sin destruir el detalle. */
#cartagena-contexto .ctx-visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.9);
  transition: transform 0.6s ease, filter 0.6s ease;
}
#cartagena-contexto .ctx-visual:hover .ctx-visual__img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(0.95) brightness(0.95);
}
/* Scrim inferior (legibilidad del caption) + grado cyan superior */
#cartagena-contexto .ctx-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(6, 16, 21, 0) 45%,
      rgba(6, 16, 21, 0.9) 100%
    ),
    linear-gradient(160deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0) 50%);
}
#cartagena-contexto .ctx-visual__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(20px, 2.4vw, 28px);
}
#cartagena-contexto .ctx-visual__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--soft-white);
}
#cartagena-contexto .ctx-visual__eyebrow .paren {
  color: var(--title-color);
  margin: 0 3px;
  font-weight: 700;
}
#cartagena-contexto .ctx-visual__place {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.05;
  color: #fff;
}

/* Apilado (<lg): la imagen deja de estirarse a la altura del texto. */
@media (max-width: 991px) {
  #cartagena-contexto .col-lg-5 {
    display: block;
  }
  #cartagena-contexto .ctx-visual {
    height: auto;
    min-height: 300px;
  }
}

/* ==========================================================================
   ABOUT (#about) — layout editorial de 3 zonas (adaptación del ref "Osmo").
   Zona 1: palabra gigante + subtítulo + pill. Zona 2: foto + caption.
   Zona 3: métricas verticales con hairline. Clases ab-* nuevas → index intacto.
   ========================================================================== */
.about--balanced .ab-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr 0.78fr;
  gap: clamp(28px, 3.5vw, 60px);
  align-items: start;
}

/* Zona 1 — identidad */
.about--balanced .ab-word {
  font-family: "Anton", var(--font-display), sans-serif;
  font-weight: 400;
  font-size: clamp(4rem, 9.2vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--soft-white);
  margin: 20px 0 26px;
}
.about--balanced .ab-word__dot {
  color: var(--title-color);
}
.about--balanced .ab-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1vw + 1.15rem, 2.05rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--soft-white);
  max-width: 22ch;
  margin: 0 0 24px;
}
.about--balanced .ab-intro__text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #a1a1aa;
  max-width: 34ch;
  margin: 0 0 30px;
}
.about--balanced .ab-intro__text strong {
  color: #fff;
  font-weight: 600;
}
.about--balanced .ab-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px 11px 22px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0b;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about--balanced .ab-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}
.about--balanced .ab-pill__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--title-color);
}

/* Zona 2 — foto + caption */
.about--balanced .ab-figure {
  margin: 0;
}
.about--balanced .ab-figure__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.about--balanced .ab-figure__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%) brightness(0.92) contrast(1.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about--balanced .ab-figure:hover .ab-figure__img {
  transform: scale(1.04);
}
.about--balanced .ab-figure__cap {
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #a1a1aa;
}
.about--balanced .ab-figure__cap strong {
  color: #fff;
  font-weight: 600;
}

/* Zona 3 — métricas verticales (número, hairline, label) */
.about--balanced .ab-metrics {
  display: flex;
  flex-direction: column;
}
.about--balanced .ab-metric {
  padding-bottom: clamp(30px, 4.4vw, 58px);
}
.about--balanced .ab-metric:last-child {
  padding-bottom: 0;
}
.about--balanced .ab-metric__num {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(3.4rem, 4.2vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.about--balanced .ab-metric__label {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8ea;
}

@media (max-width: 991px) {
  .about--balanced .ab-grid {
    grid-template-columns: 1fr;
    gap: clamp(34px, 6vw, 52px);
  }
  .about--balanced .ab-figure__media {
    max-width: 460px;
  }
  /* Métricas como el ref móvil: apiladas full-width (número grande → hairline →
     label). Heredan el estilo vertical de desktop; solo ajusto el espaciado. */
  .about--balanced .ab-metric {
    padding-bottom: clamp(26px, 7vw, 38px);
  }
}









