:root {
  --navy: #101B33;
  --navy-2: #1B2B52;
  --accent: #465FD6;
  --accent-hover: #3448AC;
  --accent-light: #9DAEEA;
  --accent-pale: #EDF0FB;
  --accent-text: #33469E;
  --star: #F5B301;
  --bg: #FAFAFB;
  --text-primary: #16203A;
  --text-secondary: #4A5468;
  --text-muted: #8A93A6;
  --border: #E4E6EC;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(16,27,51,0.06);
  --shadow-md: 0 10px 30px rgba(16,27,51,0.10);
  --shadow-accent: 0 8px 24px rgba(70,95,214,0.30);
  --max-width: 1680px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 56px; }

h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; }
h1 { font-size: 52px; line-height: 1.12; }
h2 { font-size: 32px; text-align: center; }
h3 { font-size: 18px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.section-lead {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #5A74F0);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(70,95,214,0.42); }
.btn-accent i { transition: transform 0.2s ease; }
.btn-accent:hover i { transform: translateX(4px); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37,211,102,0.42); }
.btn-whatsapp i { font-size: 18px; }
.btn-ghost {
  background: #fff;
  color: var(--accent-text);
  border: 2px solid var(--accent-light);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-pale); transform: translateY(-3px); }
.btn-lg { font-size: 16px; padding: 15px 30px; }
.btn-header { font-size: 14px; padding: 11px 20px; }
.btn-block { width: 100%; justify-content: center; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(70,95,214,0.30); }
  50% { box-shadow: 0 8px 34px rgba(70,95,214,0.55); }
}
.btn-pulse { animation: pulse-glow 2.4s ease-in-out infinite; }

.hero-point-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent-text);
  padding: 15px 4px;
}
.hero-point-cta i {
  color: var(--accent);
  animation: point-right 1.4s ease-in-out infinite;
}
@keyframes point-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@media (prefers-reduced-motion: reduce) { .hero-point-cta i { animation: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 56px;
}
.logo-img { height: 42px; width: auto; display: block; }
.header-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 8px; }
.header-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.header-nav a:hover { color: var(--accent-text); }
.header-nav a:hover::after { width: 100%; }

.header-socials.socials { gap: 10px; margin-right: 4px; }
.header-socials.socials a { width: 32px; height: 32px; font-size: 13px; }
.btn-header-mobile { display: none; }

/* ---------- Hero ---------- */
.hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F4F6FE 0%, var(--bg) 55%, #EDF0FB 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.hero-blob-1 {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(70,95,214,0.22), rgba(70,95,214,0) 70%);
  animation: blob-float 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 360px;
  height: 360px;
  bottom: -160px;
  left: -100px;
  background: radial-gradient(circle, rgba(70,95,214,0.16), rgba(70,95,214,0) 70%);
  animation: blob-float 11s ease-in-out infinite reverse;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, 18px) scale(1.06); }
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 20px;
}
.hero-content { animation: fade-up 0.8s ease both; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale);
  color: var(--accent-text);
  border: 1px solid var(--accent-light);
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-eyebrow i { color: var(--accent); }

.text-gradient {
  background: linear-gradient(100deg, var(--accent), #7A8FF5, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 4s linear infinite;
}
@keyframes gradient-shift {
  to { background-position: 200% center; }
}

.hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 10px 0 20px;
  max-width: 620px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

.hero-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-price-inline {
  color: var(--accent-text);
  font-weight: 700;
  font-size: 15px;
  background: var(--accent-pale);
  padding: 1px 8px;
  border-radius: 6px;
  margin-left: 2px;
}
.hero-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.hero-details li strong { color: var(--text-primary); font-weight: 600; }
.hero-details-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-pale);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.hero-details-icon-1 { background: linear-gradient(135deg, var(--accent), #5A74F0); color: #fff; }
.hero-details-icon-2 { background: linear-gradient(135deg, #2BB673, #4FD8A0); color: #fff; }
.hero-details-icon-3 { background: linear-gradient(135deg, #F0A62B, #FFCB66); color: #fff; }
.hero-details-icon-4 { background: linear-gradient(135deg, #8B5CF6, #B29CFA); color: #fff; }
.hero-details-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.hero-details-compact li { font-size: 12.5px; }
.hero-details-compact .hero-details-icon { width: 24px; height: 24px; font-size: 11px; border-radius: 7px; }

.hero-scope {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.hero-scope-title { margin: 0 0 10px; font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.hero-scope-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.hero-scope-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-pale);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.hero-scope-chips i { color: var(--accent); font-size: 11px; }
.hero-scope-note { margin: 0; font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; }

.hero-visual { position: relative; scroll-margin-top: 88px; animation: fade-up 0.8s 0.15s ease both; }

.hero-calendly-split {
  display: flex;
  align-items: stretch;
}
.hero-calendly-info {
  flex: 0 0 220px;
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  background: var(--bg);
}
.hero-calendly-host { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.hero-calendly-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px; color: var(--text-primary); margin: 0 0 22px; }
.hero-calendly-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.5;
}
.hero-calendly-info-row i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.hero-calendly-picker { flex: 1 1 auto; min-width: 0; height: 520px; padding: 8px; background: var(--bg); overflow: hidden; }
.hero-calendly-picker .calendly-inline-widget { width: 100%; height: 100% !important; }

.hero-calendly-glow {
  position: absolute;
  inset: -30px;
  border-radius: 32px;
  background: radial-gradient(ellipse at 30% 20%, rgba(70,95,214,0.20), transparent 60%),
              radial-gradient(ellipse at 80% 90%, rgba(139,92,246,0.14), transparent 55%);
  filter: blur(6px);
  z-index: -1;
}
.hero-calendly-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 24px 50px rgba(16,27,51,0.16), 0 0 0 1px rgba(70,95,214,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-calendly-card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #7A8FF5, var(--accent-light));
}
.hero-calendly-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(16,27,51,0.2), 0 0 0 1px rgba(70,95,214,0.12); }

.hero-profile { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.hero-profile img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-light);
  box-shadow: var(--shadow-md);
}
.hero-profile-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; margin: 0; }
.hero-profile-role { font-size: 13px; color: var(--text-muted); margin: 2px 0 0; }


@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.steps-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.steps-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-pulse, .hero-blob-1, .hero-blob-2,
  .text-gradient, .live-dot::after { animation: none; }
}


/* ---------- Beneficios + Video (sección unificada) ---------- */
.value-band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 65%, #24387A 100%);
  padding: 64px 0 60px;
  text-align: center;
}
.value-band h2 { color: #fff; position: relative; }
.value-band .section-lead { color: #BCC7E4; position: relative; margin-bottom: 40px; }
.video-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,143,245,0.28), transparent 70%);
  pointer-events: none;
}

.value-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: start;
  text-align: left;
}
.value-col { display: flex; flex-direction: column; }
.value-col-title {
  text-align: left;
  font-size: 22px;
  margin: 0 0 16px;
}
.video-frame {
  padding: 6px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), #7A8FF5, var(--accent-light));
  box-shadow: 0 26px 60px rgba(0,0,0,0.4), 0 0 50px rgba(70,95,214,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-frame:hover { transform: translateY(-5px); box-shadow: 0 34px 70px rgba(0,0,0,0.45), 0 0 66px rgba(70,95,214,0.3); }
.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 17px;
  background: #000;
}

.value-benefits { display: flex; flex-direction: column; }
.value-benefits-noTitle { margin-top: -38px; }
.value-col-lead { color: #BCC7E4; font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; }

/* Tarjetas de alcance de la asesoría, dentro del panel oscuro */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
}
.scope-mini {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(157,174,234,0.25);
  border-radius: 14px;
  padding: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.scope-mini:hover { background: rgba(255,255,255,0.1); border-color: rgba(157,174,234,0.5); transform: translateY(-3px); }
.scope-mini-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scope-mini-1 .scope-mini-icon { background: linear-gradient(135deg, var(--accent), #5A74F0); }
.scope-mini-2 .scope-mini-icon { background: linear-gradient(135deg, #2BB673, #4FD8A0); }
.scope-mini-3 .scope-mini-icon { background: linear-gradient(135deg, #F0A62B, #FFCB66); }
.scope-mini-4 .scope-mini-icon { background: linear-gradient(135deg, #8B5CF6, #B29CFA); }
.scope-mini-5 .scope-mini-icon { background: linear-gradient(135deg, #2FB4C7, #7FE0EE); }
.scope-mini-6 .scope-mini-icon { background: linear-gradient(135deg, #E85D9C, #F5A0C4); }
.scope-mini h3 { color: #fff; font-size: 14.5px; margin: 0 0 5px; }
.scope-mini p { color: #BCC7E4; font-size: 12.5px; margin: 0; line-height: 1.5; }

/* ---------- Cómo funciona (integrado al hero) ---------- */
.steps-inline {
  position: relative;
  z-index: 1;
  scroll-margin-top: 88px;
  padding: 28px 0 44px;
}
.steps-inline h2 { font-size: 24px; margin-bottom: 30px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-light) 15%, var(--accent) 50%, var(--accent-light) 85%, transparent);
  opacity: 0.5;
}
.step-item { text-align: center; position: relative; }
.step-icon {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  animation: step-bob 3.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.step-item:hover .step-icon { transform: scale(1.08); }
.step-icon-1 { background: linear-gradient(135deg, var(--accent), #5A74F0); box-shadow: 0 10px 22px rgba(70,95,214,0.35), 0 0 0 6px var(--accent-pale); }
.step-icon-2 { background: linear-gradient(135deg, #2BB673, #4FD8A0); box-shadow: 0 10px 22px rgba(43,182,115,0.32), 0 0 0 6px rgba(43,182,115,0.12); }
.step-icon-3 { background: linear-gradient(135deg, #F0A62B, #FFCB66); box-shadow: 0 10px 22px rgba(240,166,43,0.32), 0 0 0 6px rgba(240,166,43,0.12); }
.step-icon-4 { background: linear-gradient(135deg, #8B5CF6, #B29CFA); box-shadow: 0 10px 22px rgba(139,92,246,0.32), 0 0 0 6px rgba(139,92,246,0.12); }
.step-item:nth-child(2) .step-icon { animation-delay: 0.45s; }
.step-item:nth-child(3) .step-icon { animation-delay: 0.9s; }
.step-item:nth-child(4) .step-icon { animation-delay: 1.35s; }
@keyframes step-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.step-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15.5px; margin: 0 0 4px; }
.step-text { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.45; max-width: 210px; margin-left: auto; margin-right: auto; }
@media (prefers-reduced-motion: reduce) { .step-icon, .step-item:hover .step-icon { animation: none; transform: none; } }

/* ---------- Testimonios ---------- */
.reviews { padding: 72px 0; }
.reviews h2 { margin-bottom: 34px; }
.carousel-wrap { display: flex; align-items: center; gap: 12px; }
.carousel-track { display: flex; gap: 16px; overflow: hidden; flex: 1; scroll-behavior: smooth; }
.carousel-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover { background: var(--accent); transform: scale(1.1); }

.review-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-name { font-weight: 700; margin: 0 0 2px; font-size: 16px; }
.review-role { font-size: 13.5px; color: var(--text-muted); margin: 0 0 8px; }
.review-stars { color: var(--star); margin-bottom: 10px; font-size: 15px; letter-spacing: 2px; }
.review-quote { font-size: 14.5px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

.dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); cursor: pointer; border: none; transition: all 0.2s ease; padding: 0; }
.dot:hover { background: var(--accent-light); }
.dot.active { background: var(--accent); width: 34px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq-band { background: #fff; border-top: 1px solid var(--border); scroll-margin-top: 88px; }
.faq { padding: 72px 32px; }
.faq h2 { margin-bottom: 34px; }
.accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  align-items: start;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--accent-light); }
.faq-item.open { border-color: var(--accent); box-shadow: 0 4px 18px rgba(70,95,214,0.12); background: #fff; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-primary);
}
.faq-chevron { font-size: 13px; color: var(--accent); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.faq-item.open .faq-answer { max-height: 280px; padding-bottom: 16px; }

/* ---------- Sobre Martín ---------- */
.about-band {
  background: linear-gradient(135deg, #0D1630 0%, var(--navy-2) 60%, #243870 100%);
  padding: 72px 0;
}
.about {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1fr;
  gap: 56px;
  align-items: center;
}
.coverflow { position: relative; min-width: 0; }
.coverflow .carousel-btn {
  display: flex;
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 26px;
  height: 26px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: none;
  font-size: 16px;
  font-weight: 300;
  box-shadow: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.coverflow .carousel-btn:hover { background: transparent; color: #fff; opacity: 1; transform: translateY(-50%) scale(1.15); }
.coverflow .carousel-btn.prev { left: 6px; transform: translateY(-50%); }
.coverflow .carousel-btn.next { right: 6px; transform: translateY(-50%); }
.coverflow .carousel-btn.prev:hover { transform: translateY(-50%) scale(1.08); }
.coverflow .carousel-btn.next:hover { transform: translateY(-50%) scale(1.08); }
.coverflow-stage { position: relative; height: 500px; overflow: hidden; border-radius: 20px; }
.coverflow-card {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 92%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1), opacity 0.5s ease, filter 0.5s ease;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}
.coverflow-card img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.coverflow-card.is-active { transform: translate(-50%, -50%) scale(1); opacity: 1; z-index: 3; filter: none; }
.coverflow-card.is-prev { transform: translate(-108%, -50%) scale(0.8); opacity: 0.5; z-index: 2; filter: brightness(0.7); }
.coverflow-card.is-next { transform: translate(8%, -50%) scale(0.8); opacity: 0.5; z-index: 2; filter: brightness(0.7); }
.coverflow-card.is-hidden { transform: translate(-50%, -50%) scale(0.5); opacity: 0; pointer-events: none; z-index: 1; }
.coverflow-card.is-prev:hover, .coverflow-card.is-next:hover { opacity: 0.85; }
.coverflow-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255,255,255,0.25);
}
.coverflow-card.missing .coverflow-placeholder { display: flex; }

.about-content h2 { text-align: left; color: #fff; font-size: 32px; }
.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  margin: 0 0 10px;
}
.about-lead { font-size: 17px; color: #C5CFE7; line-height: 1.7; margin: 0 0 24px; }
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.about-highlights li i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(122,143,245,0.16);
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ---------- Contacto ---------- */
.contact { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.contact-info h2 { text-align: left; font-size: 30px; }
.contact-info > p { color: var(--text-secondary); font-size: 16.5px; margin: 0 0 24px; }
.contact-points { list-style: none; padding: 0; margin: 0 0 28px; }
.contact-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
}
.contact-points li i { color: var(--accent); font-size: 15px; }

.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 17px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.socials a .fa-tiktok { color: #000; }
.socials a .fa-instagram { color: #E1306C; }
.socials a .fa-youtube { color: #FF0000; }
.socials a .fa-facebook-f { color: #1877F2; }
.socials a .fa-linkedin-in { color: #0A66C2; }
.socials a:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-form {
  background: #fff;
  border: 2px solid var(--accent-light);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 24px 54px rgba(70,95,214,0.16);
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #C7CEE3;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
  background: var(--accent-pale);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(70,95,214,0.18);
}
.contact-form select:invalid { color: var(--text-muted); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-block { box-shadow: 0 12px 30px rgba(70,95,214,0.4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.optional { font-weight: 400; color: var(--text-muted); font-size: 12px; }
.form-status { font-size: 14px; margin: 12px 0 0; text-align: center; color: var(--accent-text); min-height: 20px; }
.form-status.error { color: #B3261E; }
.contact-form button:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 22px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo-img { height: 36px; }
.footer-socials a { width: 36px; height: 36px; font-size: 14px; }
.footer-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-right span { color: var(--text-secondary); font-size: 14.5px; font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  .container { padding: 0 32px; }
  .header-inner { padding: 12px 32px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; padding-bottom: 56px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .value-grid { grid-template-columns: 1fr; gap: 32px; }
  .value-band .container { text-align: center; }
  .value-benefits { text-align: left; }
  .value-benefits-noTitle { margin-top: 0; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-content { text-align: center; }
  .about-highlights { align-items: flex-start; max-width: 320px; margin-left: auto; margin-right: auto; text-align: left; }
  .about-highlights li { align-items: flex-start; }
  .about-highlights li i { margin-top: 1px; }
  .about-content h2 { text-align: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .review-card { flex: 0 0 calc(50% - 8px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-header { position: static; }
  .header-inner { padding: 10px 20px; }
  .header-nav { display: none; }
  .header-socials.socials { display: none; }
  .btn-header-mobile { display: inline-flex; }
  .reviews { display: none; }
  h1 { font-size: 30px; }
  h2 { font-size: 25px; }
  .hero-lead { font-size: 16.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-details-compact { grid-template-columns: 1fr; }
  .hero-calendly-split { flex-direction: column; }
  .hero-calendly-info { flex: none; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-calendly-picker { height: 720px; overflow: visible; }
  .value-band, .reviews, .contact { padding-top: 52px; padding-bottom: 52px; }
  .steps-inline { padding: 20px 0 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .accordion { grid-template-columns: 1fr; }
  .faq { padding: 52px 20px; }
  .review-card { flex: 0 0 calc(100% - 8px); }
  .coverflow-stage { height: 400px; }
  .coverflow-card.is-prev { transform: translate(-130%, -50%) scale(0.78); }
  .coverflow-card.is-next { transform: translate(30%, -50%) scale(0.78); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-left { flex-direction: column; }
  .footer-right { flex-direction: column; }
  .socials { justify-content: center; }
}
