﻿    /* ===================================================================
    PORTAL REMODELACIONES — SISTEMA VISUAL ESTRATÉGICO v2.0
    =================================================================== */

    /* ── RESET & BASE ── */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ── DESIGN SYSTEM TOKENS ── */
    :root {
      /* Colores base estructurales */
      --black: #0d0d0d;
      /* Negro profundo — fondo dominante */
      --black-mid: #161616;
      /* Negro medio — secciones oscuras */
      --black-soft: #1f1f1f;
      /* Negro suave — cards oscuras */
      --gray-deep: #252d35;
      /* Gris oscuro azulado — profundidad */
      --gray-mid: #4a4a4a;
      /* Gris medio — texto secundario */
      --gray-border: #2e2e2e;
      /* Gris borde — separadores */
      --gray-light: #e8e9ea;
      /* Gris claro suave — secciones alt */
      --gray-text: #b0b8c1;
      /* Gris claro — texto sobre oscuro */
      --white: #ffffff;
      /* Blanco técnico */
      --off-white: #f5f6f7;
      /* Blanco roto — fondos claros */

      /* Color de acción corporativo */
      --magenta: #e0006e;
      /* Fucsia corporativo */
      --magenta-dark: #b8005a;
      /* Fucsia oscuro — hover */
      --magenta-soft: rgba(224, 0, 110, 0.12);
      /* Fucsia translúcido */
      --magenta-glow: rgba(224, 0, 110, 0.25);
      /* Fucsia brillo */

      /* Tipografías */
      --font-primary: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-display: 'Poppins', sans-serif;

      /* Colores para Fichas Técnicas Mapeados al Sistema Oficial */
      --navy: var(--black);
      --cream: var(--white);
      --slate: var(--gray-mid);
      --slate-light: var(--gray-text);
      --gold: var(--magenta);
      --gold-light: var(--magenta-glow);
      --text-dark: var(--black-soft);

      /* Escala tipográfica */
      --text-xs: 0.75rem;
      /* 12px */
      --text-sm: 0.875rem;
      /* 14px */
      --text-base: 1rem;
      /* 16px */
      --text-md: 1.125rem;
      /* 18px */
      --text-lg: 1.25rem;
      /* 20px */
      --text-xl: 1.5rem;
      /* 24px */
      --text-2xl: 2rem;
      /* 32px */
      --text-3xl: 2.5rem;
      /* 40px */
      --text-4xl: clamp(2rem, 4vw, 3.5rem);
      --text-hero: clamp(2.5rem, 5.5vw, 5rem);

      /* Escala de espaciado modular */
      --sp-xs: 8px;
      --sp-sm: 16px;
      --sp-md: 32px;
      --sp-lg: 64px;
      --sp-xl: 96px;
      --sp-2xl: 128px;

      /* Grid */
      --container: 1280px;
      --gutter: clamp(20px, 5vw, 64px);

      /* Bordes y sombras */
      --radius-sm: 4px;
      --radius-md: 8px;
      --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.25);
      --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);

      /* Transiciones */
      --trans-fast: 0.18s ease;
      --trans-med: 0.3s ease;
      --trans-slow: 0.5s ease;
    }

    /* ── ANIMACIONES REVEAL ON SCROLL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    /* ── GLOBAL ── */
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.7;
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── TIPOGRAFÍA JERÁRQUICA ── */
    h1 {
      font-family: var(--font-primary);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    h2 {
      font-family: var(--font-primary);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--black);
    }

    h3 {
      font-family: var(--font-primary);
      font-weight: 500;
      line-height: 1.3;
      color: var(--black);
    }

    h4 {
      font-family: var(--font-primary);
      font-weight: 500;
      line-height: 1.4;
      color: var(--black);
    }

    p {
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.6;
      color: var(--gray-mid);
    }

    /* ── CONTAINER SYSTEM ── */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* ── SECTION SYSTEM ── */
    .section {
      padding: var(--sp-lg) 0;
    }

    .section--dark {
      background: var(--black);
      color: var(--white);
    }

    .section--mid {
      background: var(--black-mid);
      color: var(--white);
    }

    .section--light {
      background: var(--off-white);
    }

    .section--white {
      background: var(--white);
    }

    .section--gray {
      background: var(--gray-light);
    }

    .section--depth {
      background: var(--gray-deep);
      color: var(--white);
    }

    /* ── BADGES / LABELS ── */
    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-xs);
      font-family: var(--font-primary);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--magenta);
      margin-bottom: var(--sp-sm);
    }

    .section-badge::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--magenta);
      border-radius: 2px;
    }

    .section-title {
      font-size: var(--text-4xl);
      margin-bottom: var(--sp-sm);
    }

    .section-title em {
      font-style: normal;
      color: var(--magenta);
    }

    .section-title--light {
      color: var(--white);
    }

    .section-title--light em {
      color: var(--magenta);
    }

    .section-sub {
      font-size: var(--text-base);
      color: var(--gray-mid);
      line-height: 1.8;
      max-width: 540px;
    }

    .section-sub--light {
      color: var(--gray-text);
    }

    /* ── BOTONES ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-xs);
      font-family: var(--font-primary);
      font-weight: 600;
      font-size: var(--text-sm);
      letter-spacing: 0.06em;
      text-decoration: none;
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all var(--trans-med);
      white-space: nowrap;
      padding: 14px 28px;
    }

    .btn-primary {
      background: var(--magenta);
      color: #fff;
      border-color: var(--magenta);
    }

    .btn-primary:hover {
      background: var(--magenta-dark);
      border-color: var(--magenta-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--magenta-glow);
    }

    .btn-secondary {
      background: transparent;
      color: var(--magenta);
      border: 2px solid var(--magenta);
    }

    .btn-secondary:hover {
      background: var(--magenta);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-outline-light {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: var(--text-base);
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--gutter);
      height: 90px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.scrolled {
      height: 76px;
      background: rgba(8, 8, 8, 0.65);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(224, 0, 110, 0.3);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-logo img {
      height: 64px;
      /* Aumentado de 48px a 64px */
      width: auto;
      display: block;
      transition: height var(--trans-med);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--sp-md);
      list-style: none;
    }

    .nav-links a {
      font-family: var(--font-primary);
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-text);
      text-decoration: none;
      transition: color var(--trans-fast);
      padding: 4px 0;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--magenta);
      transition: width var(--trans-med);
    }

    .nav-links a:not(.nav-cta):hover::after {
      width: 100%;
    }

    /* CTA Nav Button */
    .nav-cta {
      background: var(--magenta);
      background: linear-gradient(135deg, var(--magenta), #ff007f);
      color: var(--white) !important;
      padding: 10px 24px !important;
      border-radius: 50px !important;
      font-size: 0.8rem !important;
      font-weight: 700 !important;
      box-shadow: 0 4px 15px rgba(224, 0, 110, 0.3);
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
      border: none !important;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent);
      transition: 0.6s;
    }

    .nav-cta:hover {
      transform: scale(1.05) translateY(-2px);
      box-shadow: 0 8px 25px rgba(224, 0, 110, 0.5);
      letter-spacing: 0.15em !important;
    }

    .nav-cta:hover::before {
      left: 100%;
    }

    .nav-cta:active {
      transform: scale(0.98);
    }

    /* Pulse animation for the nav button */
    @keyframes navPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(224, 0, 110, 0.7);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(224, 0, 110, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(224, 0, 110, 0);
      }
    }

    .nav-cta {
      animation: navPulse 2s infinite;
    }

    .nav-cta:hover {
      animation: none;
    }

    /* hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all var(--trans-med);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--black);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../Imagenes/hero-bg.webp') center/cover no-repeat;
      background-color: var(--black);
      filter: brightness(0.75) saturate(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.7) 100%);
    }

    .hero-accent {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, transparent, var(--magenta), transparent);
    }

    @keyframes heroZoom {
      from {
        transform: scale(1.05);
      }

      to {
        transform: scale(1.0);
      }
    }

    .hero-container {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
      width: 100%;
      padding-top: 76px;
    }

    .hero-inner {
      max-width: 720px;
      padding: var(--sp-2xl) 0;
      animation: fadeUpHero 1s ease 0.2s both;
    }

    @keyframes fadeUpHero {
      from {
        opacity: 0;
        transform: translateY(32px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-primary);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #ffffff;
      background: rgba(224, 0, 110, 0.15);
      border: 1px solid rgba(224, 0, 110, 0.4);
      padding: 10px 24px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      margin-bottom: var(--sp-md);
      box-shadow: 0 4px 20px rgba(224, 0, 110, 0.2);
    }

    .hero h1 {
      font-size: var(--text-4xl);
      color: var(--white);
      margin-bottom: var(--sp-md);
    }

    .hero h1 em {
      font-style: normal;
      color: var(--magenta);
      display: block;
      width: fit-content;
      white-space: nowrap;
      overflow: hidden;
      border-right: 3px solid var(--magenta);
      animation: blinkHeroCursor 0.8s step-end infinite;
    }

    @keyframes blinkHeroCursor {
      50% {
        border-color: transparent;
      }
    }

    .hero-desc {
      font-size: var(--text-md);
      color: rgba(255, 255, 255, 0.8);
      /* Aclarado de gris a un blanco suave con alta legibilidad */
      line-height: 1.8;
      max-width: 520px;
      margin-bottom: var(--sp-lg);
    }

    .hero-actions {
      display: flex;
      gap: var(--sp-sm);
      flex-wrap: wrap;
    }

    /* .hero-logo-center removido por redundancia */

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      right: var(--gutter);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--sp-xs);
      z-index: 2;
    }

    .hero-scroll span {
      font-size: 9px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
    }

    .hero-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, var(--magenta), transparent);
      animation: scrollPulse 2.4s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 1;
      }
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--black-mid);
      border-top: 1px solid rgba(224, 0, 110, 0.2);
      border-bottom: 1px solid rgba(224, 0, 110, 0.15);
    }

    .stats-bar .container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding-top: var(--sp-lg);
      padding-bottom: var(--sp-lg);
    }

    .stat-item {
      text-align: center;
      padding: 0 var(--sp-md);
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: var(--font-primary);
      font-size: 3rem;
      font-weight: 300;
      color: var(--magenta);
      line-height: 1;
      display: block;
      margin-bottom: 6px;
    }

    .stat-label {
      font-family: var(--font-primary);
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gray-text);
    }

    /* ── SERVICIOS ── */
    .services-section {
      background: var(--off-white);
    }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-lg);
      align-items: end;
      margin-bottom: var(--sp-lg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    .svc-card {
      position: relative;
      overflow: hidden;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      background: var(--black-soft);
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.03);
      transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .svc-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(224, 0, 110, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      z-index: 10;
    }

    .svc-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.25) saturate(0.6) contrast(1.1);
      transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .svc-card:hover .svc-card-img {
      filter: brightness(0.4) saturate(1) contrast(1.2);
      transform: scale(1.1);
    }

    .svc-card-body {
      position: relative;
      z-index: 1;
      padding: 48px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
      transition: background 0.4s ease;
    }

    .svc-card:hover .svc-card-body {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(224, 0, 110, 0.05));
    }

    .svc-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--magenta), #ff007f);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
      z-index: 5;
    }

    .svc-card:hover::after {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 54px;
      height: 54px;
      border: 1px solid rgba(224, 0, 110, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(224, 0, 110, 0.1);
      margin-bottom: var(--sp-md);
      flex-shrink: 0;
      transition: all 0.4s ease;
      backdrop-filter: blur(4px);
    }

    .svc-card:hover .svc-icon {
      background: var(--magenta);
      transform: rotateY(180deg);
      border-color: var(--magenta);
      box-shadow: 0 0 20px var(--magenta-glow);
    }

    .svc-icon svg {
      width: 26px;
      height: 26px;
      transition: all 0.4s ease;
    }

    .svc-card:hover .svc-icon svg {
      stroke: var(--white);
    }

    .svc-num {
      position: absolute;
      top: 24px;
      right: 24px;
      font-family: var(--font-display);
      font-size: 4.5rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.7);
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      line-height: 1;
      transition: all 0.5s ease;
      pointer-events: none;
      z-index: 2;
    }

    .svc-card:hover .svc-num {
      transform: translateY(-10px) translateX(10px);
      color: rgba(224, 0, 110, 0.8);
      text-shadow: 0 4px 20px rgba(224, 0, 110, 0.4);
    }

    .svc-card h3 {
      font-size: var(--text-lg);
      color: var(--white);
      margin-bottom: var(--sp-xs);
    }

    .svc-card p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      flex: 1;
      transition: color 0.4s ease;
    }

    .svc-card:hover p {
      color: rgba(255, 255, 255, 0.9);
    }

    .svc-arrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
      font-family: var(--font-primary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      padding: 10px 18px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      width: fit-content;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .svc-card:hover .svc-arrow {
      background: var(--magenta);
      border-color: var(--magenta);
      gap: 14px;
      box-shadow: 0 4px 15px rgba(224, 0, 110, 0.4);
    }

    .svc-arrow svg {
      transition: transform 0.4s ease;
    }

    .svc-card:hover .svc-arrow svg {
      transform: translateX(4px);
    }

    /* ── PROCESS ── */
    .process-section {
      background: var(--white);
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: var(--sp-xl);
      align-items: center;
      margin-top: var(--sp-lg);
    }

    .process-img-wrap {
      position: relative;
      height: 480px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .process-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(224, 0, 110, 0.2), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .process-img-wrap:hover::after {
      opacity: 1;
    }

    .process-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .process-img-wrap:hover img {
      transform: scale(1.1);
    }

    .process-img-border {
      position: absolute;
      top: 20px;
      right: 20px;
      bottom: 20px;
      left: 20px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: var(--radius-sm);
      pointer-events: none;
      z-index: 2;
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .process-img-wrap:hover .process-img-border {
      top: 10px;
      right: 10px;
      bottom: 10px;
      left: 10px;
      border-color: var(--magenta);
      box-shadow: inset 0 0 20px rgba(224, 0, 110, 0.2);
    }

    /* Pequeño detalle de esquina extra */
    .process-img-wrap::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 60px;
      border-left: 4px solid var(--magenta);
      border-bottom: 4px solid var(--magenta);
      z-index: 3;
      transition: all 0.4s ease;
    }

    .process-img-wrap:hover::before {
      width: 80px;
      height: 80px;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .step-row {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 16px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      cursor: default;
    }

    .step-row:hover {
      background: var(--cream);
      border-color: rgba(224, 0, 110, 0.1);
      transform: translateX(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .step-n {
      flex: 0 0 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--magenta);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(224, 0, 110, 0.25);
      transition: all 0.4s ease;
      margin-top: 2px;
    }

    .step-row:hover .step-n {
      transform: scale(1.1) rotate(10deg);
      background: var(--navy);
      box-shadow: 0 6px 16px rgba(11, 25, 43, 0.25);
    }

    .step-row-body {
      flex: 1;
    }

    .step-row h4 {
      font-size: var(--text-md);
      color: var(--navy);
      margin-bottom: 6px;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .step-row:hover h4 {
      color: var(--magenta);
    }

    .step-row p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.6;
      font-weight: 300;
    }

    /* ── CONTACT ── */
    .contact-section {
      background: var(--black-mid);
      position: relative;
      overflow: hidden;
    }

    .contact-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(13, 13, 13, 0.92) 25%, rgba(13, 13, 13, 0.3) 100%),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat;
      filter: brightness(0.8) contrast(1.1) saturate(1.2);
      opacity: 0.6;
      /* Añadida opacidad para suavizar la integración con el fondo negro */
    }

    .contact-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: var(--sp-xl);
      align-items: start;
    }

    .contact-info .section-title {
      color: var(--white);
    }

    .contact-info .section-sub {
      color: var(--gray-text);
      margin-bottom: var(--sp-lg);
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: var(--sp-sm);
    }

    .contact-row {
      display: flex;
      align-items: center;
      gap: var(--sp-sm);
      color: var(--gray-text);
      font-size: var(--text-sm);
    }

    .contact-icon {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(224, 0, 110, 0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--magenta);
    }

    .contact-form-card {
      background: rgba(255, 255, 255, 0.08);
      /* Aumentado de 0.04 a 0.08 para un fondo más notorio y claro */
      border: 1px solid rgba(224, 0, 110, 0.2);
      /* Borde un poco más definido */
      border-radius: var(--radius-md);
      padding: var(--sp-lg);
      backdrop-filter: blur(10px);
      /* Agregado efecto glassmorphism para mayor claridad premium */
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-sm);
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: var(--sp-sm);
    }

    .form-group.full {
      grid-column: span 2;
    }

    label {
      font-family: var(--font-primary);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-text);
    }

    input,
    select,
    textarea {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      font-family: var(--font-body);
      font-size: var(--text-sm);
      color: var(--white);
      outline: none;
      width: 100%;
      transition: border-color var(--trans-fast);
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(176, 184, 193, 0.4);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(224, 0, 110, 0.5);
    }

    select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-position: right 16px top 50%;
      background-size: 12px auto;
      padding-right: 40px;
    }

    select option,
    select optgroup {
      background-color: var(--black-mid);
      color: var(--white);
      font-family: var(--font-body);
      font-size: var(--text-sm);
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--magenta);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      font-family: var(--font-primary);
      font-size: var(--text-sm);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all var(--trans-med);
      margin-top: var(--sp-xs);
    }

    .btn-submit:hover {
      background: var(--magenta-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--magenta-glow);
    }

    /* ── FICHAS ── */
    /* Preserved & enhanced ficha styles */
    .fichas-section {
      background: var(--black);
    }

    .fichas-intro {
      max-width: var(--container);
      margin: 0 auto;
      padding: var(--sp-xl) var(--gutter) 0;
      border-bottom: 1px solid var(--gray-border);
      padding-bottom: var(--sp-lg);
    }

    /* Override existing ficha styles with design system */
    #fichas {
      background: var(--black);
    }

    #fichas .container-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* ── BANNER INTERMEDIO ── */
    .midpage-banner {
      background: var(--gray-deep);
      padding: var(--sp-lg) 0;
      border-top: 1px solid rgba(224, 0, 110, 0.15);
      border-bottom: 1px solid rgba(224, 0, 110, 0.15);
    }

    .midpage-banner .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-md);
    }

    .banner-text h3 {
      font-size: var(--text-xl);
      color: var(--white);
      margin-bottom: 4px;
    }

    .banner-text p {
      font-size: var(--text-sm);
      color: var(--gray-text);
    }

    /* ── FOOTER ── */
    .footer {
      background: rgba(2, 2, 2, 0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-top: 1px solid rgba(224, 0, 110, 0.3);
      padding: 100px 0 0;
      /* Espaciado superior más generoso */
      position: relative;
      overflow: hidden;
    }

    /* Efecto de luz de fondo del footer */
    .footer::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 40%;
      height: 60%;
      background: radial-gradient(circle at bottom right, rgba(224, 0, 110, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      /* Proporción ajustada */
      gap: 60px;
      padding-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* Centrado horizontal */
      text-align: center;
      /* Centrado de texto */
      gap: 20px;
    }

    .footer-brand img {
      height: 68px;
      /* Aumentado para mayor protagonismo */
      width: auto;
      max-width: 100%;
      filter: drop-shadow(0 0 12px rgba(224, 0, 110, 0.1));
      transition: all 0.5s ease;
      object-fit: contain;
    }

    .footer-brand:hover img {
      filter: drop-shadow(0 0 25px rgba(224, 0, 110, 0.3));
      transform: scale(1.02);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      /* Color más claro para mejor contraste */
      line-height: 1.7;
      max-width: 320px;
      font-weight: 400;
      /* Peso normal para mayor claridad */
    }

    .footer-col {
      padding: 24px 20px;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .footer-col:hover {
      background: rgba(255, 255, 255, 0.02);
      border-color: rgba(224, 0, 110, 0.15);
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .footer-col h4 {
      font-family: var(--font-primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 32px;
      height: 2px;
      background: var(--magenta);
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-col ul a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      /* Espacio aumentado para iconos */
    }

    /* Estilo para los nuevos iconos SVG del footer */
    .f-icon {
      color: var(--magenta);
      flex-shrink: 0;
      opacity: 0.8;
      transition: transform 0.3s ease;
    }

    .footer-col ul a:hover .f-icon {
      opacity: 1;
      transform: scale(1.1);
    }

    .footer-col ul a:hover {
      color: var(--white);
      transform: translateX(8px);
      text-shadow: 0 0 10px rgba(224, 0, 110, 0.4);
    }

    .footer-col ul a i {
      color: var(--magenta);
      font-size: 1.1em;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .footer-col ul a:hover i {
      opacity: 1;
    }

    .footer-bottom {
      background: #080808;
      /* Negro ultra profundo para contraste */
      padding: 30px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 20px;
    }

    .footer-bottom .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--magenta);
    }

    /* ── SCROLL TO TOP BTN ── */
    .scroll-top-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: rgba(8, 8, 8, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(224, 0, 110, 0.3);
      border-radius: 50%;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .scroll-top-btn.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top-btn:hover {
      background: var(--magenta);
      border-color: var(--magenta);
      box-shadow: 0 0 20px rgba(224, 0, 110, 0.4);
      transform: translateY(-5px);
    }

    .scroll-top-btn svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .scroll-top-btn:hover svg {
      transform: translateY(-2px);
    }

    /* ── WHATSAPP FLOAT BTN ── */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 60px;
      height: 60px;
      background: #25d366;
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      z-index: 1000;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: waPulse 2s infinite;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
      background: #20ba5a;
    }

    .whatsapp-btn svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    @keyframes waPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    @media (max-width: 600px) {
      .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
      }

      .whatsapp-btn svg {
        width: 28px;
        height: 28px;
      }
    }

    @media (max-width: 600px) {
      .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
      }
    }

    /* Ajustes responsive footer */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-brand {
        grid-column: span 1;
      }

      .footer-bottom .container {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }
    }

    .footer-bottom p {
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-links {
      display: flex;
      gap: var(--sp-sm);
    }

    .footer-links a {
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color var(--trans-fast);
    }

    .footer-links a:hover {
      color: var(--magenta);
    }

    /* ── FICHAS INTRO INTERACTIVE ── */
    .fichas-intro-header {
      margin-bottom: var(--sp-lg);
      transition: all 0.4s ease;
    }

    .fichas-intro-header:hover .section-badge {
      background: var(--magenta);
      color: var(--white);
      transform: scale(1.05);
      box-shadow: 0 0 15px var(--magenta-glow);
    }

    .fichas-intro-header:hover .section-title--light em {
      color: var(--white);
      text-shadow: 0 0 20px var(--magenta);
      transition: all 0.5s ease;
    }

    .fichas-intro-banner {
      position: relative;
      height: 360px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      margin-top: var(--sp-md);
      transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .fichas-intro-banner:hover {
      transform: translateY(-5px);
    }

    .fichas-intro-banner .bg-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.35);
      transform: scale(1.05);
      transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s ease;
    }

    .fichas-intro-banner:hover .bg-photo {
      transform: scale(1.15);
      filter: brightness(0.25) saturate(1.2);
    }

    .fichas-intro-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
      z-index: 2;
      background: radial-gradient(circle, rgba(224, 0, 110, 0.05) 0%, transparent 70%);
      transition: all 0.8s ease;
    }

    .fichas-intro-banner:hover .fichas-intro-overlay {
      background: radial-gradient(circle, rgba(224, 0, 110, 0.15) 0%, transparent 80%);
    }

    .fichas-logo-mini {
      height: 60px;
      width: auto;
      border-radius: 3px;
      margin-bottom: 8px;
      opacity: 0.9;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    }

    .fichas-intro-banner:hover .fichas-logo-mini {
      transform: scale(1.1) rotate(-1deg);
      opacity: 1;
      filter: drop-shadow(0 0 20px var(--magenta-glow));
    }

    .fichas-motto {
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(224, 0, 110, 0.9);
      font-weight: 500;
      transition: all 0.5s ease;
    }

    .fichas-intro-banner:hover .fichas-motto {
      letter-spacing: 0.35em;
      color: var(--white);
      text-shadow: 0 0 10px var(--magenta);
    }

    .fichas-headline {
      font-family: var(--font-display);
      font-size: clamp(26px, 3.5vw, 46px);
      font-weight: 200;
      color: #fff;
      text-align: center;
      max-width: 700px;
      line-height: 1.2;
      transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .fichas-intro-banner:hover .fichas-headline {
      transform: scale(1.05);
      letter-spacing: 0.02em;
    }

    /* ── FICHA CARDS — OVERRIDE COMPLETO ── */
    #fichas {
      padding: var(--sp-xl) 0;
    }

    #fichas section,
    .fichas-section section {
      padding: 0;
    }

    .fichas-wrapper {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    .fichas-header-block {
      margin-bottom: var(--sp-lg);
    }

    .ficha-categoria-titulo {
      font-family: var(--font-primary) !important;
      font-weight: 600 !important;
      font-size: var(--text-xl) !important;
      color: var(--white) !important;
      margin: var(--sp-lg) 0 var(--sp-sm) !important;
      padding-bottom: var(--sp-xs) !important;
      border-bottom: 2px solid var(--magenta) !important;
      display: flex !important;
      align-items: center !important;
      gap: var(--sp-xs) !important;
    }

    .fichas-grid-2col {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: var(--sp-sm) !important;
      margin-bottom: var(--sp-md) !important;
    }

    .ficha-card {
      background: var(--off-white) !important;
      border: 1px solid #ddd !important;
      border-radius: var(--radius-sm) !important;
      padding: 20px !important;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
      position: relative;
      z-index: 1;
    }

    .ficha-card:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 15px 35px rgba(224, 0, 110, 0.15) !important;
      border-color: rgba(224, 0, 110, 0.3) !important;
      z-index: 2;
    }

    .ficha-card-dark {
      background: var(--black-soft) !important;
      border: 1px solid var(--gray-border) !important;
      border-radius: var(--radius-sm) !important;
      padding: 20px !important;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
      position: relative;
      z-index: 1;
    }

    .ficha-card-dark:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 15px 35px rgba(224, 0, 110, 0.25) !important;
      border-color: var(--magenta) !important;
      background: #111 !important;
      z-index: 2;
    }

    .ficha-card h3,
    .ficha-card h4 {
      font-family: var(--font-primary) !important;
      font-weight: 600 !important;
      color: var(--black) !important;
      margin-bottom: var(--sp-xs) !important;
    }

    .ficha-card-dark h3,
    .ficha-card-dark h4 {
      font-family: var(--font-primary) !important;
      font-weight: 600 !important;
      color: var(--white) !important;
      margin-bottom: var(--sp-xs) !important;
    }

    .ficha-price {
      font-family: var(--font-primary) !important;
      font-size: var(--text-xl) !important;
      font-weight: 700 !important;
      color: var(--magenta) !important;
      margin-bottom: var(--sp-xs) !important;
    }

    .ficha-desc {
      font-size: var(--text-sm) !important;
      color: var(--gray-mid) !important;
      line-height: 1.5 !important;
      margin-bottom: var(--sp-xs) !important;
    }

    .ficha-card-dark .ficha-desc {
      color: var(--gray-text) !important;
    }

    .ficha-block-title {
      font-family: var(--font-primary) !important;
      font-size: var(--text-xs) !important;
      font-weight: 700 !important;
      letter-spacing: 0.12em !important;
      text-transform: uppercase !important;
      color: var(--gray-mid) !important;
      margin: 12px 0 6px !important;
    }

    .ficha-card-dark .ficha-block-title {
      color: var(--gray-text) !important;
    }

    .ficha-list {
      list-style: none !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 6px !important;
      padding: 0 !important;
      margin-bottom: 12px !important;
    }

    .ficha-list li {
      font-size: var(--text-sm) !important;
      color: var(--gray-mid) !important;
      display: flex !important;
      align-items: flex-start !important;
      gap: 8px !important;
      line-height: 1.4 !important;
    }

    .ficha-card-dark .ficha-list li {
      color: rgba(255, 255, 255, 0.78) !important;
    }

    .ficha-list li::before {
      content: '✓' !important;
      color: var(--magenta) !important;
      font-weight: 700 !important;
      flex-shrink: 0 !important;
      margin-top: 1px !important;
    }

    .ficha-table {
      width: 100% !important;
      border-collapse: collapse !important;
      font-size: var(--text-sm) !important;
      margin-bottom: 12px !important;
    }

    .ficha-table th {
      font-family: var(--font-primary) !important;
      font-weight: 600 !important;
      font-size: var(--text-xs) !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      padding: 8px 10px !important;
      background: var(--magenta-soft) !important;
      color: var(--magenta) !important;
      text-align: left !important;
    }

    .ficha-card-dark .ficha-table th {
      background: rgba(224, 0, 110, 0.15) !important;
    }

    .ficha-table td {
      padding: 8px 10px !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
      color: var(--gray-mid) !important;
    }

    .ficha-card-dark .ficha-table td {
      border-bottom-color: rgba(255, 255, 255, 0.06) !important;
      color: rgba(255, 255, 255, 0.78) !important;
    }

    .ficha-time {
      font-size: var(--text-xs) !important;
      color: var(--gray-text) !important;
      margin-top: var(--sp-xs) !important;
    }

    .ficha-cta-btn {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 8px !important;
      width: 100% !important;
      padding: 12px 18px !important;
      background: var(--magenta) !important;
      color: #fff !important;
      border: none !important;
      border-radius: var(--radius-sm) !important;
      font-family: var(--font-primary) !important;
      font-size: var(--text-sm) !important;
      font-weight: 600 !important;
      letter-spacing: 0.06em !important;
      text-decoration: none !important;
      cursor: pointer !important;
      transition: all var(--trans-med) !important;
      margin-top: 15px !important;
    }

    .ficha-cta-btn:hover {
      background: var(--magenta-dark) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px var(--magenta-glow) !important;
    }

    /* Condiciones block */
    .condiciones-block {
      background: var(--gray-deep) !important;
      border: 1px solid rgba(224, 0, 110, 0.15) !important;
      border-radius: var(--radius-md) !important;
      padding: var(--sp-lg) !important;
      margin-top: var(--sp-lg) !important;
      color: var(--white) !important;
    }

    .condiciones-block h3 {
      font-family: var(--font-primary) !important;
      font-weight: 600 !important;
      font-size: var(--text-lg) !important;
      color: var(--white) !important;
      margin-bottom: var(--sp-sm) !important;
    }

    .condiciones-block p,
    .condiciones-block li {
      font-size: var(--text-sm) !important;
      color: var(--gray-text) !important;
      line-height: 1.7 !important;
    }

    .condiciones-grid {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: var(--sp-sm) !important;
      margin-top: var(--sp-sm) !important;
    }

    /* ── GALLERY ── */
    .gallery-section {
      background: var(--black);
      padding: var(--sp-lg) 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: var(--sp-md);
    }

    @media (max-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
      }

      .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 4px;
      }
    }

    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        margin-top: 15px;
      }

      .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 2px;
      }
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-sm);
      aspect-ratio: 4 / 3;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--trans-slow);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid var(--magenta);
      border-radius: var(--radius-sm);
      opacity: 0;
      transform: scale(1.05);
      transition: all var(--trans-med);
      pointer-events: none;
      z-index: 2;
    }

    .gallery-item:hover::after {
      opacity: 1;
      transform: scale(1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 80%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 30px;
      opacity: 0;
      transition: all var(--trans-med);
      z-index: 1;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay .zoom-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      background: var(--magenta);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      opacity: 0;
      transition: all var(--trans-med);
      box-shadow: 0 0 20px var(--magenta-glow);
    }

    .gallery-item:hover .zoom-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .gallery-overlay h4 {
      color: var(--white);
      font-size: var(--text-base);
      margin-bottom: 5px;
      text-align: center;
      transform: translateY(20px);
      transition: transform var(--trans-med);
    }

    .gallery-item:hover .gallery-overlay h4 {
      transform: translateY(0);
    }

    .gallery-overlay p {
      color: var(--magenta);
      font-size: var(--text-xs);
      margin-bottom: 0;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      transform: translateY(20px);
      transition: transform var(--trans-med) 0.1s;
    }

    .gallery-item:hover .gallery-overlay p {
      transform: translateY(0);
    }

    /* Ajuste para móviles: En cuadrícula tipo Instagram es mejor no saturar de iconos y texto */
    @media (max-width: 768px) {
      .gallery-overlay {
        opacity: 0 !important;
        pointer-events: none;
      }

      .gallery-item::after {
        display: none !important;
      }
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(10px);
      padding: 20px;
    }

    .lightbox.active {
      display: flex;
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox-content {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: auto;
      max-width: 95vw;
      max-height: 95vh;
      transform: scale(0.9);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .lightbox.active .lightbox-content {
      transform: scale(1);
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 75vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius-sm);
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: block;
    }

    .lightbox-close {
      position: absolute;
      top: -45px;
      right: 0;
      background: none;
      border: none;
      color: white;
      font-size: 40px;
      cursor: pointer;
      transition: color 0.2s;
      line-height: 1;
      padding: 10px;
    }

    .lightbox-close:hover {
      color: var(--magenta);
    }

    .lightbox-info {
      margin-top: 20px;
      text-align: center;
      color: white;
      width: 100%;
    }

    .lightbox-info h3 {
      font-size: var(--text-md);
      margin-bottom: 4px;
      font-weight: 600;
    }

    .lightbox-info p {
      color: var(--magenta);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: var(--text-xs);
      font-weight: 700;
    }

    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: var(--sp-md);
      flex-wrap: wrap;
    }

    .filter-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--gray-text);
      padding: 8px 20px;
      border-radius: 30px;
      font-family: var(--font-primary);
      font-size: var(--text-xs);
      font-weight: 600;
      cursor: pointer;
      transition: all var(--trans-med);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--magenta);
      border-color: var(--magenta);
      color: var(--white);
      box-shadow: 0 4px 15px var(--magenta-glow);
    }

    /* ── FADE-IN ANIMATION ── */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

    @media (max-width: 1024px) {
      .services-header {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .process-img-wrap {
        height: 320px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat-item {
        padding: var(--sp-sm) var(--sp-md);
      }

      .fichas-grid-2col {
        grid-template-columns: 1fr !important;
      }

      .condiciones-grid {
        grid-template-columns: 1fr 1fr !important;
      }
    }

    @media (max-width: 768px) {
      :root {
        --sp-xl: 64px;
        --sp-2xl: 80px;
      }

      .nav-logo img {
        height: 54px;
        /* Tamaño optimizado para móvil */
      }

      .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--black);
        padding: var(--sp-md) var(--gutter);
        gap: var(--sp-sm);
        border-bottom: 1px solid var(--gray-border);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-toggle {
        display: flex;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .form-group.full {
        grid-column: span 1;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
      }

      .midpage-banner .container {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .hero-logo-center {
        padding-top: 24px;
      }

      .hero-logo-center img {
        height: 64px;
      }

      .condiciones-grid {
        grid-template-columns: 1fr !important;
      }

      .ficha-card,
      .ficha-card-dark {
        padding: 15px !important;
      }

      .ficha-price {
        font-size: var(--text-lg) !important;
      }
    }

    @media (max-width: 480px) {
      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: var(--text-sm);
      }

      .ficha-card,
      .ficha-card-dark {
        padding: 12px 10px !important;
      }

      .ficha-list {
        gap: 4px !important;
      }

      .ficha-table td,
      .ficha-table th {
        padding: 6px 8px !important;
        font-size: 11px !important;
      }

      .section {
        padding: var(--sp-md) 0 !important;
      }
    }

    .svc-card {
      min-height: 280px;
    }
      .quienes-main-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--sp-xl);
        align-items: center;
      }

      .quienes-inner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 10px;
      }

      @media (max-width: 1024px) {
        .quienes-main-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 600px) {
        .quienes-inner-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }
      }
        .ficha-categoria-titulo {
          font-family: var(--font-display);
          font-size: 22px;
          font-weight: 500;
          color: var(--navy);
          letter-spacing: -0.01em;
          margin: 28px 0 12px;
          padding-bottom: 8px;
          border-bottom: 2px solid rgba(224, 0, 110, 0.2);
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .ficha-categoria-titulo:first-of-type {
          margin-top: 0;
        }

        .ficha-cat-icon {
          font-size: 22px;
          color: var(--magenta);
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .ficha-card {
          background: var(--white);
          border: 1px solid rgba(13, 27, 42, 0.08);
          border-radius: 4px;
          overflow: hidden;
          box-shadow: 0 4px 32px rgba(13, 27, 42, 0.06);
          position: relative;
          transition: transform var(--trans-med), box-shadow var(--trans-med);
        }

        .ficha-card:hover {
          transform: translateY(-8px);
          box-shadow: 0 16px 48px rgba(13, 27, 42, 0.12);
        }

        /* Efecto Spotlight con mouseover */
        .ficha-card::before {
          content: "";
          position: absolute;
          top: var(--mouse-y, -100px);
          left: var(--mouse-x, -100px);
          width: 400px;
          height: 400px;
          background: radial-gradient(circle closest-side, rgba(224, 0, 110, 0.06), transparent);
          transform: translate(-50%, -50%);
          border-radius: 50%;
          pointer-events: none;
          opacity: 0;
          transition: opacity 0.3s ease;
          z-index: 10;
        }

        .ficha-card:hover::before {
          opacity: 1;
        }

        .ficha-card-dark {
          background: var(--navy);
          border-color: rgba(224, 0, 110, 0.2);
        }

        .ficha-card-dark::before {
          background: radial-gradient(circle closest-side, rgba(224, 0, 110, 0.15), transparent);
        }

        .ficha-header {
          padding: 24px 28px 20px;
          border-bottom: 1px solid rgba(13, 27, 42, 0.07);
        }

        .ficha-card-dark .ficha-header {
          border-bottom-color: rgba(224, 0, 110, 0.15);
        }

        .ficha-badge {
          display: inline-block;
          font-size: 10px;
          letter-spacing: 0.2em;
          text-transform: uppercase;
          font-weight: 500;
          padding: 4px 12px;
          border-radius: 2px;
          background: rgba(224, 0, 110, 0.12);
          color: var(--gold);
          margin-bottom: 14px;
        }

        .ficha-badge-dark {
          background: rgba(224, 0, 110, 0.15);
          color: var(--gold-light);
        }

        .ficha-title {
          font-family: var(--font-display);
          font-size: 24px;
          font-weight: 400;
          color: var(--navy);
          margin-bottom: 6px;
          letter-spacing: -0.01em;
        }

        .ficha-desc {
          font-size: 13px;
          font-weight: 300;
          color: var(--slate);
          line-height: 1.5;
          margin-bottom: 14px;
        }

        .ficha-price-main {
          font-family: var(--font-display);
          font-size: 32px;
          font-weight: 700;
          /* Negrita para resaltar el precio principal */
          color: var(--navy);
          line-height: 1;
          margin-bottom: 6px;
          text-align: center;
        }

        .ficha-price-main .unit {
          font-size: 18px;
          color: var(--slate);
          font-weight: 300;
        }

        .unit {
          font-size: 0.72em;
          color: var(--slate);
          font-weight: 300;
          margin-left: 3px;
        }

        .ficha-min {
          font-size: 12px;
          letter-spacing: 0.08em;
          color: var(--slate);
          text-transform: uppercase;
          text-align: center;
        }

        .ficha-body {
          padding: 24px 28px 28px;
          display: flex;
          flex-direction: column;
          gap: 12px;
        }

        .ficha-block-title {
          font-size: 11px;
          letter-spacing: 0.15em;
          text-transform: uppercase;
          color: var(--slate);
          font-weight: 500;
          margin-bottom: 12px;
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .ficha-extra-tag {
          font-size: 9px;
          padding: 2px 8px;
          background: rgba(224, 0, 110, 0.12);
          color: var(--gold);
          border-radius: 2px;
          text-transform: uppercase;
          letter-spacing: 0.1em;
        }

        .ficha-list {
          list-style: none;
          display: flex;
          flex-direction: column;
          gap: 7px;
        }

        .ficha-list li {
          font-size: 14px;
          font-weight: 300;
          color: var(--text-dark);
          padding-left: 16px;
          position: relative;
        }

        .ficha-list li::before {
          content: '✓';
          position: absolute;
          left: 0;
          color: var(--gold);
          font-size: 12px;
        }

        .ficha-list-dark li {
          color: var(--slate-light);
        }

        .ficha-card-dark .ficha-list li {
          color: rgba(255, 255, 255, 0.82);
        }

        .ficha-card-dark .ficha-block-title {
          color: var(--cream);
        }

        .ficha-table {
          width: 100%;
          border-collapse: collapse;
        }

        .ficha-table tr {
          border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .ficha-table td {
          padding: 5px 0;
          font-size: 13px;
          font-weight: 300;
          color: var(--text-dark);
        }

        .ficha-table td:last-child {
          text-align: right;
          font-weight: 700;
          /* Negrita para los precios en las tablas */
          color: var(--navy);
          font-family: var(--font-display);
          font-size: 15px;
          letter-spacing: 0.02em;
        }

        .ficha-table-dark tr {
          border-bottom-color: rgba(255, 255, 255, 0.05);
        }

        .ficha-table-dark td {
          color: var(--slate-light);
        }

        .ficha-table-dark td:last-child {
          color: var(--gold-light);
        }

        .ficha-cta {
          background: rgba(224, 0, 110, 0.03);
          border: 1px solid rgba(224, 0, 110, 0.08);
          border-radius: 12px;
          padding: 24px;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 4px;
          margin-top: 8px;
          transition: all 0.4s ease;
        }

        .ficha-card:hover .ficha-cta {
          background: rgba(224, 0, 110, 0.06);
          border-color: rgba(224, 0, 110, 0.15);
          transform: translateY(-2px);
        }

        .ficha-cta-dark {
          background: rgba(224, 0, 110, 0.06);
          border-color: rgba(224, 0, 110, 0.18);
        }

        .ficha-cta-text {
          font-size: 11px;
          color: var(--slate);
          letter-spacing: 0.1em;
          text-transform: uppercase;
          font-weight: 500;
          margin-bottom: 2px;
        }

        .ficha-cta-price {
          font-family: var(--font-display);
          font-size: 26px;
          font-weight: 800;
          color: var(--navy);
          line-height: 1;
          margin-bottom: 8px;
        }

        .ficha-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          background: var(--magenta);
          background: linear-gradient(135deg, var(--magenta), #ff007f);
          color: #fff;
          padding: 12px 24px;
          border-radius: 50px;
          font-size: 13px;
          font-weight: 700;
          letter-spacing: 0.1em;
          text-transform: uppercase;
          text-decoration: none;
          box-shadow: 0 4px 15px rgba(224, 0, 110, 0.2);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          width: 100%;
          max-width: 280px;
          border: none;
        }

        .ficha-btn:hover {
          transform: translateY(-3px) scale(1.02);
          box-shadow: 0 8px 25px rgba(224, 0, 110, 0.4);
          background: linear-gradient(135deg, #ff007f, var(--magenta));
        }

        .ficha-btn:active {
          transform: scale(0.98);
        }

        .ficha-btn svg {
          transition: transform 0.4s ease;
        }

        .ficha-btn:hover svg {
          transform: rotate(15deg) scale(1.1);
        }

        .ficha-btn-outline {
          background: transparent;
          border: 1px solid rgba(224, 0, 110, 0.4);
          color: var(--gold-light);
        }

        .ficha-btn-outline:hover {
          background: rgba(224, 0, 110, 0.1);
        }

        .ficha-btn-whatsapp {
          margin-top: 10px;
        }

        /* --- CONTENEDORES RESPONSIVOS --- */
        .fichas-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 20px;
          margin-bottom: 32px;
        }

        .fichas-grid--mb48 {
          margin-bottom: 48px;
        }

        .fichas-condiciones-wrapper {
          background: var(--navy);
          background: linear-gradient(145deg, var(--navy), #0a1626);
          border-radius: 16px;
          padding: 50px;
          margin-bottom: 40px;
          border: 1px solid rgba(224, 0, 110, 0.15);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
          position: relative;
          overflow: hidden;
        }

        .fichas-condiciones-wrapper::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -20%;
          width: 60%;
          height: 200%;
          background: radial-gradient(circle, rgba(224, 0, 110, 0.05) 0%, transparent 60%);
          pointer-events: none;
        }

        .fichas-condiciones-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
          position: relative;
          z-index: 1;
        }

        .condicion-item {
          background: rgba(255, 255, 255, 0.03);
          padding: 24px;
          border-radius: 12px;
          border: 1px solid rgba(255, 255, 255, 0.05);
          transition: all 0.4s ease;
        }

        .condicion-item:hover {
          background: rgba(255, 255, 255, 0.06);
          border-color: rgba(224, 0, 110, 0.3);
          transform: translateY(-5px);
        }

        .condicion-label {
          font-size: 10px;
          letter-spacing: 0.2em;
          text-transform: uppercase;
          color: var(--gold);
          margin-bottom: 14px;
          font-weight: 700;
          display: flex;
          align-items: center;
          gap: 8px;
        }

        .condicion-label::after {
          content: '';
          flex: 1;
          height: 1px;
          background: rgba(212, 175, 55, 0.2);
        }

        .condicion-text {
          font-size: 13px;
          color: var(--white);
          line-height: 1.6;
          font-weight: 300;
          opacity: 0.9;
        }

        .condicion-text strong {
          color: var(--white);
          font-weight: 600;
          opacity: 1;
        }

        .condicion-link {
          color: #ff4d94;
          /* Un fucsia más claro para resaltar en fondo oscuro */
          text-decoration: none;
          transition: all 0.3s ease;
          font-weight: 500;
        }

        .condicion-link:hover {
          color: var(--white);
          text-underline-offset: 4px;
          text-decoration: underline;
          text-shadow: 0 0 10px rgba(224, 0, 110, 0.5);
        }

        /* MEDIA QUERIES PARA FICHAS TÉCNICAS */
        @media (max-width: 1024px) {
          #fichas {
            padding: 80px 40px !important;
          }
        }

        @media (max-width: 900px) {
          .fichas-grid {
            grid-template-columns: 1fr;
            margin-bottom: 40px;
          }

          .fichas-condiciones-grid {
            grid-template-columns: 1fr;
            gap: 32px;
          }
        }

        @media (max-width: 768px) {
          #fichas {
            padding: 60px 20px !important;
          }

          .fichas-grid {
            gap: 24px;
          }

          .fichas-condiciones-wrapper {
            padding: 32px 24px;
          }
        }

        @media (max-width: 480px) {
          #fichas {
            padding: 48px 16px !important;
          }

          .ficha-header,
          .ficha-body {
            padding: 24px 20px;
          }

          .ficha-title {
            font-size: 20px;
          }

          .ficha-price-main {
            font-size: 28px;
          }

          .ficha-cta {
            padding: 16px;
            gap: 2px;
          }

          .ficha-cta-price {
            font-size: 22px;
          }

          .ficha-btn {
            padding: 12px 16px;
            font-size: 11px;
            gap: 6px;
            max-width: 100%;
          }

          .ficha-cta-text {
            font-size: 10px;
          }
        }

        /* ── FAQ ACCORDION ── */
        .faq-section {
          background: var(--white);
          padding: 60px 0;
        }

        .faq-container {
          max-width: 800px;
          margin: 0 auto;
        }

        .faq-group {
          margin-bottom: 30px;
        }

        .faq-group-title {
          font-family: var(--font-primary);
          font-size: var(--text-xs);
          font-weight: 700;
          letter-spacing: 0.15em;
          text-transform: uppercase;
          color: var(--magenta);
          margin-bottom: var(--sp-sm);
          padding-left: 4px;
          border-left: 3px solid var(--magenta);
        }

        .faq-item {
          background: var(--off-white);
          border: 1px solid rgba(0, 0, 0, 0.05);
          border-radius: var(--radius-sm);
          margin-bottom: 12px;
          overflow: hidden;
          transition: all var(--trans-med);
        }

        .faq-item:hover {
          border-color: rgba(224, 0, 110, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
          width: 100%;
          padding: 20px 24px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          background: none;
          border: none;
          cursor: pointer;
          text-align: left;
          outline: none;
        }

        .faq-question h4 {
          font-size: var(--text-sm);
          font-weight: 600;
          color: var(--navy);
          margin: 0;
          line-height: 1.4;
          padding-right: 20px;
        }

        .faq-icon {
          width: 20px;
          height: 20px;
          background: var(--magenta-soft);
          color: var(--magenta);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          transition: transform var(--trans-med);
        }

        .faq-item.active {
          border-color: var(--magenta);
          background: var(--white);
          box-shadow: var(--shadow-sm);
        }

        .faq-item.active .faq-icon {
          transform: rotate(45deg);
          background: var(--magenta);
          color: var(--white);
        }

        .faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
          padding: 0 24px;
        }

        .faq-item.active .faq-answer {
          max-height: 400px;
          padding: 0 24px 24px;
        }

        .faq-answer p {
          font-size: var(--text-sm);
          line-height: 1.6;
          color: var(--gray-mid);
          margin: 0;
        }

        .faq-answer ul {
          margin: 12px 0 0 18px;
          padding: 0;
          list-style: none;
        }

        .faq-answer li {
          font-size: var(--text-sm);
          color: var(--gray-mid);
          margin-bottom: 6px;
          position: relative;
        }

        .faq-answer li::before {
          content: '•';
          color: var(--magenta);
          position: absolute;
          left: -14px;
          font-weight: bold;
        }

        @media (max-width: 768px) {
          .faq-section {
            padding: 40px 0;
          }

          .faq-group {
            margin-bottom: 20px;
          }

          .faq-question {
            padding: 16px 20px;
          }

          .faq-question h4 {
            font-size: 13px;
          }
        }
