:root {
    --black: #0a0908;
    --dark: #141210;
    --card-bg: #1a1714;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: #8a6e30;
    --white: #f5f0e8;
    --muted: #a89880;
    --premium2:#2a4d4d;
    --border: rgba(201,168,76,0.18);
    --border-subtle: rgba(255,255,255,0.07);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
a, button {
  -webkit-tap-highlight-color: transparent;
}
  /* ── HEADER ── */
  header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

header.blurred {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}

header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}
  .logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--white);
    padding-top: 1rem;
  }
  .logo span { color: var(--gold); }
  nav { display: flex; align-items: center; gap: 2rem; }
  nav a {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
  }
  nav a:hover { color: var(--white); }
  .btn-wa {
    display: flex; align-items: center; gap: 8px;
    padding: 0.5rem 1.2rem;
    background: var(--gold);
    color: var(--black);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-wa:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-wa svg { width: 16px; height: 16px; }
  .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 90;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
  /* ── HERO ── */
#inicio {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 68px 3rem 0;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0908 0%, #1a1310 40%, #0a0908 100%);
  z-index: 0;
}

.hero-glow {
  position: absolute; top: 10%; right: 5%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.35;
}

.hero-video-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--dark) 0%, transparent 30%),
    linear-gradient(to top,   var(--dark) 0%, transparent 50%),
    linear-gradient(to right, var(--dark) 0%, var(--dark) 30%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(184,134,11,0.12);
  border: 1px solid rgba(184,134,11,0.3);
  color: var(--gold-light);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.hero-badge svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.9rem 2rem;
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  position: relative; overflow: hidden;
  transition: color 0.3s ease, transform 0.15s;
  z-index: 0;
}
.hero-cta::after {
  content: "";
  position: absolute;
  width: 0; height: 100%; top: 0; left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
  z-index: -1;
}
.hero-cta:hover::after { width: 100%; }
.hero-cta:hover { color: var(--black); transform: translateY(-2px); }
.hero-cta svg { width: 18px; height: 18px; position: relative; z-index: 1; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--muted);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity: 0.4; } 50%{ opacity: 1; } }
@media (max-width: 768px) {
  .hero-video-bg {
    width: 100%;
    right: 0;
    left: 0;
  }

  .hero-video-overlay {
    background:
      linear-gradient(to bottom, var(--dark) 0%, transparent 30%),
      linear-gradient(to top,   var(--dark) 0%, transparent 50%);
      /* sin gradiente lateral */
  }
}
.hero-video-fade {
  position: absolute;
  top: 0;
  left: 35%; /* donde arranca el video */
  width: 15%; /* ancho del degradado */
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}

@media (max-width: 768px) {
  .hero-video-fade { display: none; }
}
  /* ── SECTIONS COMMON ── */
  section { padding: 7rem 3rem; }
  .section-label {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300; line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .divider {
    width: 100%; height: 0.5px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0;
  }

  /* ── SOBRE MÍ ── */
  #sobre-mi { background: var(--dark); }
  .sobre-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .sobre-left .section-title { max-width: 520px; }
  .sobre-intro {
    font-size: 1rem; color: var(--muted); line-height: 1.85;
    margin-bottom: 2.5rem; max-width: 480px;
  }
  .checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .checklist li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 0.92rem; color: var(--muted); line-height: 1.5;
  }
  .check-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: rgba(201,168,76,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
  .check-icon svg { width: 10px; height: 10px; stroke: var(--gold); stroke-width: 2.5; fill: none; }
  .sobre-right { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
  .profile-img {
    width: 100%;
    height: 380px;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .profile-badge span { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px; }
  .profile-info { text-align: center; margin-top: 2rem; }
  .profile-name {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
    margin-bottom: 0.2rem;
  }
  .profile-role { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 0.8rem; }
  .linkedin-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.78rem; color: var(--gold); letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: 1.2rem;
  }
  .linkedin-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
  .linkedin-link svg { width: 14px; height: 14px; }
  .profile-quote {
    font-family: var(--font-display);
    font-size: 1.05rem; font-style: italic;
    color: var(--muted); line-height: 1.6;
    max-width: 280px; text-align: center;

    border-left: 2px solid var(--gold);
      padding-left: 1.25rem;
      margin-top: 0.5rem;
  }
  .typewriter-wrap { display: inline-block; min-width: 280px; }
.cursor {
  display: inline-block;
  color: var(--gold);
  font-style: normal;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.profile-img-wrap {
  position: relative;
  width: 300px;
  height: 380px;
  flex-shrink: 0;
}

.profile-border-svg {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: 2;
  pointer-events: none;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

  /* ── SERVICIOS ── */
  #servicios { background: var(--cream2); border-radius: 0; max-width: 100%; padding: 6rem 2rem; }
    .servicios-header { text-align: center; margin-bottom: 3.5rem; }
    .servicios-header .section-title { font-size: clamp(2rem, 3.5vw, 2.5rem); }
    .servicios-grid {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.25rem;
    }
    .service-card {
  background: var(--premium2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
  color: var(--white);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gold-dim);
  transition: height 0.3s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border-color: var(--border);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold-dim);
  fill: none;
  stroke-width: 1.5;
}

.service-wa {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0;
  position: relative;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: var(--gold-dim);
  border: none;
  overflow: hidden;
  transition: color 0.3s ease;
}

.service-wa span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  width: 100%;
  height: 100%;
}

/* línea inferior → derecha */
.service-wa::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold));
  animation: wa-right 2s linear infinite;
}

/* línea izquierda → arriba */
.service-wa::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 1.5px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: wa-bottom 2s linear infinite;
  animation-delay: 1s;
  transform: translateY(-100%);
}

/* línea superior → izquierda */
.service-wa span::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(to left, transparent, var(--gold));
  animation: wa-left 2s linear infinite;
}

/* línea derecha → arriba */
.service-wa span::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 1.5px; height: 100%;
  background: linear-gradient(to top, transparent, var(--gold));
  animation: wa-top 2s linear infinite;
  animation-delay: 1s;
  transform: translateY(-100%);
}

.service-wa:hover { color: var(--gold-light); }
.service-wa:hover::before { background: linear-gradient(to right, transparent, var(--gold-light)); }
.service-wa:hover::after  { background: linear-gradient(to bottom, transparent, var(--gold-light)); }
.service-wa:hover span::before { background: linear-gradient(to top, transparent, var(--gold-light)); }
.service-wa:hover span::after  { background: linear-gradient(to left, transparent, var(--gold-light)); }

.service-wa svg {
  width: 15px; height: 15px;
  fill: currentColor;
  flex-shrink: 0;
  position: relative;
}

@keyframes wa-right  { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes wa-left   { 0% { transform: translateX(100%);  } 100% { transform: translateX(-100%); } }
@keyframes wa-top    { 0% { transform: translateY(100%);  } 100% { transform: translateY(-100%); } }
@keyframes wa-bottom { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* Descripción: truncada a 3 líneas por defecto */
.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card expandida: mostrar la descripción completa */
.service-card.expanded .service-desc {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Botón de la flecha (Ver más / Ver menos) */
.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
  transition: color 0.2s;
}
.service-toggle:hover { color: var(--gold-light); }

/* La flecha que rota al expandir */
.service-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.service-card.expanded .service-toggle svg {
  transform: rotate(180deg);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}
.service-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold-dim);
  background: var(--gold-light);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.service-more {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-more:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.service-card-header .service-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.service-card-header .service-title {
  margin-bottom: 0;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.service-actions .service-more {
  margin-top: 0;
}
.service-actions .service-wa {
  margin-top: 0;
}
    /* ── HONORARIOS ── */
    .honorarios-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
    .honorarios-box {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      background: var(--white);
    }
    .honorarios-box.highlight {
      border-color: var(--gold);
      background: var(--gold-pale2);
    }
    .hbox-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }
    .hbox-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .hbox-desc {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.7;
    }
    .hbox-items {
      list-style: none;
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .hbox-items li {
      font-size: 0.85rem;
      color: var(--text-mid);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .hbox-items li::before {
      content: '›';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }
    .honorarios-nota {
      margin-top: 2rem;
      padding: 1.25rem 1.5rem;
      background: var(--gold-pale);
      border-left: 3px solid var(--gold);
      border-radius: 0 var(--radius) var(--radius) 0;
      font-size: 0.88rem;
      color: var(--navy-mid);
      line-height: 1.7;
    }
    .honorarios-nota strong { font-weight: 600; color: var(--navy); }
  /* ── FAQ ── */
  #faq { background: var(--dark); }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 6rem; max-width: 1200px; margin: 0 auto; align-items: start;
  }
  .faq-left { position: sticky; top: 100px; }
  .faq-left .section-title { font-size: 2.8rem; }
  .faq-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-top: 1rem; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 0.5px solid var(--border-subtle);
    overflow: hidden;
  }
  .faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 1.6rem 0;
    background: none; border: none; cursor: pointer;
    text-align: left;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 400;
    color: var(--white);
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-question.open { color: var(--gold); }
  .faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, border-color 0.2s;
  }
  .faq-question.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
  .faq-icon svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2; fill: none; }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-answer.open { max-height: 400px; padding-bottom: 1.5rem; }
  .faq-answer p { font-size: 0.9rem; color: var(--muted); line-height: 1.85; }

  /* ── TESTIMONIOS ── */
  #testimonios { background: var(--black); padding-bottom: 8rem; }
  .testimonios-container {
    max-width: 1100px; margin: 0 auto;
    background: var(--premium2);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
  }
  .testimonios-container::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .test-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap; gap: 1rem;
  }
  .test-title {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 300; color: var(--white);
  }
  .carousel-track-wrap { overflow: hidden; }
  .carousel-track {
    display: flex; gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .test-card {
    flex-shrink: 0;
    width: calc((100% - 3rem)/3);
    background: #17140f;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
  }
  @media (max-width: 1024px) {
  .test-card { width: calc((100% - 1.5rem) / 2); }
}

@media (max-width: 768px) {
  .test-card { width: 100%; }
}
  .card-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
  .card-star { color: #FBBC05; font-size: 0.85rem; }
  .card-text {
    font-size: 0.9rem; color: rgba(245,240,232,0.75); line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1rem;
  }
  .card-footer { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 500; color: var(--white);
    flex-shrink: 0;
  }
  .card-name { font-size: 0.88rem; font-weight: 500; color: var(--white); }
  .card-case { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }
  .verified {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.7rem; color: #4ade80; margin-top: 2px;
  }
  .verified svg { width: 10px; height: 10px; stroke: #4ade80; stroke-width: 2.5; fill: none; }
  .carousel-controls {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 2rem;
  }
  .carousel-dots { display: flex; gap: 8px; }
  .dot {
    width: 6px; height: 6px; border-radius: 3px;
    background: var(--muted); cursor: pointer;
    transition: background 0.2s, width 0.3s;
  }
  .dot.active { background: var(--gold); width: 20px; }
  .carousel-arrows { display: flex; gap: 10px; }
  .c-arrow {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
  }
  .c-arrow:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
  .c-arrow svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 2; fill: none; }

  /* ── CONTACTO ── */
  #contacto { background: var(--dark); }
  .contacto-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: start;
  }
  .contacto-title { font-size: 2.8rem; margin-bottom: 1rem; }
  .contacto-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 2.5rem; line-height: 1.8; max-width: 360px; }
  .info-cards { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
  .info-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--card-bg);
    padding: 1rem 1.4rem;
    transition: background 0.2s;
  }
  .info-card:hover { background: #201c18; }
  .info-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 8px;
    background: rgba(201,168,76,0.08);
    border: 0.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
  }
  .info-icon svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
  .info-label { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
  .info-value { font-size: 0.9rem; color: var(--white); }
  .horario {
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: rgba(201,168,76,0.06);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    display: flex; align-items: center; gap: 14px;
  }
  .horario svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.5; fill: none; flex-shrink: 0; }
  .horario-text { font-size: 0.85rem; color: var(--muted); }
  .horario-text strong { color: var(--white); font-weight: 400; }
  .form-panel {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .form-panel-header {
    padding: 1.5rem 2rem;
    background: var(--premium2);
    border-bottom: 0.5px solid var(--border-subtle);
  }
  .form-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
  }
  .form-panel-header p { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
  .form-body { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  label { display: block; }
  .field-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
  input[type=text], input[type=email], input[type=tel], select, textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: var(--font-body); font-size: 0.9rem;
    transition: border-color 0.2s;
    outline: none;
    appearance: none; -webkit-appearance: none;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--gold); }
  select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a89880' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
  select option { background: #1a1714; color: var(--white); }
  textarea { height: 100px; resize: none; }
  .btn-submit {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none; cursor: pointer;
    border-radius: 8px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-submit svg { width: 18px; height: 18px; }
  .form-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .form-note svg { width: 12px; height: 12px; stroke: var(--muted); stroke-width: 2; fill: none; }

  /* ── FOOTER ── */
  footer {
    background: #060504;
    border-top: 0.5px solid var(--border-subtle);
    padding: 4rem 3rem 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
    max-width: 1200px; margin-left: auto; margin-right: auto;
  }
  .footer-brand .logo { font-size: 1.2rem; margin-bottom: 0.75rem; }
  .footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; max-width: 220px; }
  .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
  .footer-col a { display: block; font-size: 0.85rem; color: rgba(245,240,232,0.6); margin-bottom: 0.5rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem;
    border-top: 0.5px solid var(--border-subtle);
    flex-wrap: wrap; gap: 1rem;
    max-width: 1200px; margin: 0 auto;
  }
  .footer-legal { font-size: 0.78rem; color: var(--muted); display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
  .footer-legal a { color: var(--muted); transition: color 0.2s; }
  .footer-legal a:hover { color: var(--white); }
  .footer-socials { display: flex; gap: 16px; align-items: center; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.75;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.social-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: lighten;
}

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.wa-float.visible { opacity: 1; transform: scale(1); pointer-events: all; }

/* Después */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  pointer-events: none;
}
.wa-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  animation: wa-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes wa-pop {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.1); }
  80%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
  .wa-btn {
    display: flex; align-items: center; gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem; font-weight: 500;
    box-shadow: 0 8px 32px rgba(37,211,102,0.25);
    transition: background 0.2s, transform 0.15s;
  }
  .wa-btn:hover { background: #1fb356; transform: translateY(-2px); }
  .wa-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

  /* ── RESPONSIVE ── */
  @media(max-width:1024px){
    .sobre-grid, .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sobre-right { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-left { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .test-card { min-width: calc(50% - 0.75rem); }
    .hero-video-frame { display: none; }
    .hero-content { max-width: 100%; }
  }
  @media(max-width:768px){
    header { padding: 0 1.5rem; }
    nav { display: none; }
    .hamburger { display: flex; }
    section, #inicio { padding: 5rem 1.5rem; }
    footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .field-group { grid-template-columns: 1fr; }
    .testimonios-container { padding: 2rem 1.5rem; }
    .test-card { min-width: 100%; }
    .footer-top { grid-template-columns: 1fr; }
    .wa-btn span { display: none; }
    .wa-btn { padding: 0.9rem; border-radius: 50%; }
  }
  /* Mobile nav overlay */
  .nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  overflow-y: auto;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.close-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.close-overlay svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}

.nav-link-m {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  transition: color 0.2s;
}
.nav-link-m:hover { color: var(--gold); }

@media (max-width: 768px) {
  nav { display: none; }
  .btn-wa { display: none; }
  .hamburger { display: flex; }
}
  /* Fade-in on scroll */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }