/* ─── VARIABLES ─── */
:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --cream: #f5f0e8;
  --accent: #e8ff47;
  --accent-dark: #c5d93d;
  --text: #f0f0f0;
  --text-muted: #888;
  --border: #222;
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent); }
.text-accent-dark { color: #8a7e2a; }

/* ─── ANIMATIONS ─── */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-anim="fade-right"] {
  transform: translateX(-40px);
}

[data-anim="fade-left"] {
  transform: translateX(40px);
}

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s;
}

.nav.scrolled .nav-inner {
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1001;
  line-height: 1;
}

.logo-jm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 3px;
  line-height: 1;
}

.logo-perf {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 4px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta):not(.nav-link-ig):hover {
  color: var(--text);
}

.nav-links a:not(.nav-cta):not(.nav-link-ig)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):not(.nav-link-ig):hover::after {
  width: 100%;
}

.nav-link-ig {
  display: flex;
  align-items: center;
  color: var(--text-muted) !important;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(232, 255, 71, 0.25);
}

/* NAV TOGGLE MOBILE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(232,255,71,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,255,71,0.04) 0%, transparent 60%);
  background-color: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232,255,71,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.01) 2px,
      rgba(255,255,255,0.01) 4px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 12vw, 120px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* HERO SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(232, 255, 71, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* CTA QUICK ACTIONS */
.cta-quick-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.btn-whatsapp-big {
  background: #25D366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.btn-whatsapp-big:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.3);
}

.btn-ig-big {
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.btn-ig-big:hover {
  border-color: #E1306C;
  color: #E1306C;
}

/* ─── MARQUEE ─── */
.marquee {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-dot {
  display: inline-block;
  width: 6px !important;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

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

/* ─── SECTIONS ─── */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg2);
}

.section-cream {
  background: var(--cream);
  color: var(--bg);
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-cream .section-tag {
  color: #8a7e2a;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: 2px;
}

.section-title-center {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 28px 0;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ─── INTRO / SOBRE MI ─── */
.intro-block {
  text-align: center;
  margin-bottom: 64px;
}

.intro-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 24px;
  line-height: 1.6;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-text .section-desc {
  color: var(--text-muted);
}

.location-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

.location-text svg {
  flex-shrink: 0;
}

.location-text strong {
  color: var(--text);
}

/* FEATURE ITEMS */
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:first-child {
  padding-top: 0;
}

.feature-item-accent {
  background: rgba(232, 255, 71, 0.05);
  border: 1px solid rgba(232, 255, 71, 0.15);
  border-radius: var(--radius);
  padding: 24px 20px !important;
  margin-top: 8px;
  border-bottom: 1px solid rgba(232, 255, 71, 0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── EDITORIAL ─── */
.section-editorial {
  padding: 140px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.editorial-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 9vw, 100px);
  line-height: 0.95;
  letter-spacing: 3px;
  max-width: 900px;
  margin: 0 auto;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 255, 71, 0.2);
}

.service-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg3) 0%, rgba(232,255,71,0.05) 100%);
}

.service-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── TAGS / TRAINING TYPES ─── */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag-pill {
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg3);
  transition: all var(--transition);
  cursor: default;
}

.tag-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 255, 71, 0.05);
}

/* ─── TRAINING GRID ─── */
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.training-item {
  padding: 28px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  transition: transform var(--transition), border-color var(--transition);
}

.training-item:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 255, 71, 0.2);
}

.training-item-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text);
}

.training-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Dark tag pills for cream section */
.tag-pill-dark {
  background: var(--bg);
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}

.tag-pill-dark:hover {
  background: var(--bg2);
  border-color: var(--accent);
  color: var(--accent);
}

.tags-grid-cream .tag-pill-dark {
  background: var(--bg);
  color: var(--cream);
}

/* ─── SPECIALTIES ─── */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.specialty-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: transform var(--transition), border-color var(--transition);
}

.specialty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 255, 71, 0.2);
}

.specialty-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
}

.specialty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.specialty-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── GROUP SUBTITLE ─── */
.group-subtitle {
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  max-width: 700px;
  margin: -48px auto 48px;
}

.group-subtitle-dark {
  color: var(--text-muted);
}

/* ─── AUDIENCE GRID ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg3);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.audience-item:hover {
  border-color: rgba(232, 255, 71, 0.2);
  transform: translateY(-2px);
}

.audience-item svg {
  flex-shrink: 0;
}

/* ─── PRICING ─── */
.pricing-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: linear-gradient(160deg, var(--bg3) 0%, rgba(232,255,71,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 255, 71, 0.3);
}

.pricing-card-popular {
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(232, 255, 71, 0.08);
}

.pricing-card-popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 0 0 10px 10px;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232,255,71,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
}

.pricing-currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.pricing-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-per strong {
  color: var(--accent);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  padding: 0;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── CTA ─── */
.section-cta {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,255,71,0.06) 0%, transparent 60%),
    var(--bg2);
  padding: 120px 0;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* FORM */
.cta-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 0;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: #555;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-select {
  cursor: pointer;
  color: #555;
}

.form-select:has(option:checked:not([disabled])) {
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 24px;
}

.cta-form .btn {
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  opacity: 0.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── FEATURE LINK (clickable valoración) ─── */
.feature-item-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}

.feature-item-link:hover {
  transform: translateX(6px);
  border-color: var(--accent);
}

.feature-arrow {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}

.feature-item-link:hover .feature-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ─── PRICING PAYMENT NOTE ─── */
.pricing-payment {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* ─── LINK ACCENT ─── */
.link-accent {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 255, 71, 0.3);
  transition: border-color var(--transition);
}

.link-accent:hover {
  border-color: var(--accent);
}

/* ─── LOCATION / FORUS SECTION ─── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.location-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.location-detail strong {
  color: var(--text);
}

.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 8px;
}

.location-map {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid,
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .pricing-card-popular {
    transform: scale(1);
  }

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

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 280px;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 24px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    color: var(--text);
  }

  .nav-link-ig {
    color: var(--text) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid,
  .services-grid-4 {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 20px 80px;
  }

  .section {
    padding: 80px 0;
  }

  .section-editorial {
    padding: 80px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .cta-quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tag-pill {
    padding: 12px 22px;
    font-size: 14px;
  }

  .pricing-card {
    padding: 40px 28px;
  }

  .pricing-amount {
    font-size: 72px;
  }

  .pricing-currency {
    font-size: 32px;
  }

  .group-subtitle {
    margin-top: -40px;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }

  .section-title,
  .section-title-center {
    font-size: 40px;
  }

  .editorial-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .pricing-amount {
    font-size: 60px;
  }

  .pricing-currency {
    font-size: 28px;
  }

  .pricing-name {
    font-size: 28px;
  }
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 60px;
  padding: 16px;
  box-shadow:
    0 4px 24px rgba(37, 211, 102, 0.4),
    0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  overflow: hidden;
}

.whatsapp-float:hover {
  padding: 16px 24px 16px 16px;
  gap: 10px;
  transform: scale(1.08);
  box-shadow:
    0 6px 32px rgba(37, 211, 102, 0.5),
    0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-float-icon {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.whatsapp-float-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-float-label {
  max-width: 120px;
  opacity: 1;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 60px;
  border: 2px solid #25D366;
  opacity: 0;
  animation: whatsappPulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   STATS / CIFRAS SECTION
   ═══════════════════════════════════════════════ */
.section-stats {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-number,
.stat-number-fixed {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}

.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  opacity: 0.7;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 255, 71, 0.2);
}

.testimonial-card-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg3) 0%, rgba(232,255,71,0.06) 100%);
  transform: scale(1.03);
}

.testimonial-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.testimonial-quote-icon {
  opacity: 0.4;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c5d93d);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  flex-shrink: 0;
}

.testimonial-author-info {
  flex-grow: 1;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-card-featured {
    transform: scale(1);
  }

  .testimonial-card-featured:hover {
    transform: translateY(-4px);
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number,
  .stat-number-fixed {
    font-size: 44px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 14px;
  }

  .whatsapp-float:hover {
    padding: 14px;
    gap: 0;
  }

  .whatsapp-float-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-number,
  .stat-number-fixed {
    font-size: 36px;
  }

  .stat-suffix {
    font-size: 18px;
  }

  .stat-label {
    font-size: 12px;
  }

  .faq-question span {
    font-size: 15px;
  }
}
