:root {
  --bg: #0c0c0c;
  --surface: #1a1a1a;
  --accent: #c8a855;
  --text: #f0f0f0;
  --muted: #8a8a8a;
  --border: #2a2a2a;
  --secondary: #1e3a5f;
  --highlight: #e8d5a0;
  --success: #2ecc71;
  --danger: #e74c3c;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--highlight); }

img { max-width: 100%; height: auto; display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0c;
}

.btn-primary:hover {
  background: var(--highlight);
  color: #0c0c0c;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200,168,85,0.3);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-full { width: 100%; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition);
}

.btn-text:hover {
  color: var(--highlight);
  gap: 12px;
}

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.header-logo { color: var(--text); flex-shrink: 0; }

.logo-svg {
  width: 180px;
  height: 44px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-cta {
  background: var(--accent);
  color: #0c0c0c;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--highlight);
  color: #0c0c0c;
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  padding: 12px 0;
  text-align: center;
  width: 100%;
}

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

.mobile-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.mobile-nav-cta {
  background: var(--accent);
  color: #0c0c0c;
  padding: 16px 48px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
}

.hero {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.hero-image-col {
  width: 55%;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

.hero-text-col {
  width: 45%;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
}

.hero-text-inner { max-width: 520px; }

.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
}

.scroll-arrow {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

.trust-strip {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 0 80px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.trust-icon { margin: 0 auto 16px; }

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.trust-label {
  font-size: 14px;
  color: var(--muted);
}

.section-experiencias {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

.section-stats {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

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

.stat-icon { margin: 0 auto 16px; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 15px;
  color: var(--muted);
}

.section-mentor {
  padding: 120px 0;
}

.mentor-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}

.mentor-image-col {
  width: 40%;
  flex-shrink: 0;
}

.mentor-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.mentor-text-col { flex: 1; }

.mentor-role {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.mentor-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.mentor-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentor-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.section-destinatarios {
  padding: 100px 0;
  background: var(--surface);
}

.target-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.target-col {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.target-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 28px;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.target-list li svg { flex-shrink: 0; margin-top: 3px; }

.section-ventajas {
  padding: 120px 0;
}

.ventajas-list {
  max-width: 900px;
}

.ventaja-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.ventaja-row-reverse { flex-direction: row-reverse; }

.ventaja-icon-col { flex-shrink: 0; }

.ventaja-text-col h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.ventaja-text-col p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.ventaja-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.section-proceso {
  padding: 120px 0;
  background: var(--surface);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-step {
  position: relative;
  margin-bottom: 48px;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-number {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: #0c0c0c;
}

.timeline-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.timeline-icon { margin-bottom: 16px; }

.timeline-content h3 { margin-bottom: 12px; }

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
}

.timeline-cta {
  text-align: center;
  margin-top: 48px;
}

.section-faq {
  padding: 120px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  min-height: 400px;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  width: 100%;
  min-height: 48px;
}

.faq-question:hover,
.faq-question.active {
  border-color: var(--accent);
  background: rgba(200,168,85,0.08);
}

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

.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-question.active svg { transform: rotate(90deg); }

.faq-answers {
  display: flex;
  flex-direction: column;
}

.faq-answer {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.faq-answer.active { display: block; }

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

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.section-contacto {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contacto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contacto-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) blur(4px);
}

.contacto-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.8) 0%, rgba(12,12,12,0.95) 100%);
}

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

.contacto-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contacto-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.contacto-card-header h2 {
  margin-bottom: 12px;
}

.contacto-card-header p {
  color: var(--muted);
  font-size: 15px;
}

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

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

.form-group-full { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder { color: var(--muted); }

.form-group select { appearance: none; cursor: pointer; }

.form-group select option { background: var(--surface); color: var(--text); }

.form-error {
  display: block;
  font-size: 13px;
  color: var(--danger);
  margin-top: 4px;
  min-height: 18px;
}

.form-checkbox { margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-label a { color: var(--accent); text-decoration: underline; }

.contacto-success {
  text-align: center;
  padding: 40px 20px;
}

.contacto-success h3 {
  margin: 20px 0 12px;
  color: var(--accent);
}

.contacto-success p { color: var(--muted); }

.contacto-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.contacto-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

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

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0c;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-4px); background: var(--highlight); }

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #0c0c0c;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 8000;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  animation: pulse 3s infinite;
}

.floating-cta.visible { display: inline-flex; }

.floating-cta:hover {
  background: var(--highlight);
  color: #0c0c0c;
  transform: translateY(-2px);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(200,168,85,0.3); }
  50% { box-shadow: 0 4px 32px rgba(200,168,85,0.6); }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  min-height: 44px;
  min-width: 100px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.btn-cookie-accept {
  background: var(--accent);
  color: #0c0c0c;
  border-color: var(--accent);
}

.btn-cookie-accept:hover { background: var(--highlight); }

.btn-cookie-settings {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

.btn-cookie-reject {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-cookie-reject:hover { border-color: var(--danger); color: var(--danger); }

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal h3 {
  margin-bottom: 8px;
}

.cookie-modal > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
}

.cookie-option {
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cookie-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.cookie-option-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cookie-option p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.legal-date {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-page a { color: var(--accent); text-decoration: underline; }

.legal-cta-box {
  text-align: center;
  margin: 32px 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 40px; }
  .hero-text-col { padding: 120px 40px 60px; }
  .mentor-layout { gap: 40px; }
  .stats-row { gap: 48px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-answer.active { margin-top: 16px; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }

  .hero {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-image-col {
    width: 100%;
    height: 300px;
  }

  .hero-image {
    border-radius: 0 0 16px 16px;
  }

  .hero-text-col {
    width: 100%;
    padding: 120px 16px 40px;
  }

  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 16px; }

  .btn-lg { padding: 16px 32px; font-size: 16px; width: 100%; }

  .trust-strip { margin-top: -40px; }
  .trust-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-card { padding: 24px 16px; }
  .trust-number { font-size: 24px; }

  .section-experiencias,
  .section-mentor,
  .section-ventajas,
  .section-proceso,
  .section-faq,
  .section-contacto {
    padding: 60px 0;
  }

  .section-stats { padding: 48px 0; }
  .stats-row { gap: 32px; flex-direction: column; }
  .stat-value { font-size: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 24px; }

  .mentor-layout { flex-direction: column; gap: 32px; }
  .mentor-image-col { width: 100%; }
  .mentor-quote { font-size: 17px; }

  .target-layout { grid-template-columns: 1fr; gap: 24px; }
  .target-col { padding: 28px; }

  .ventaja-row,
  .ventaja-row-reverse {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ventaja-divider { margin: 32px 0; }

  .timeline { padding-left: 48px; }
  .timeline::before { left: 16px; }
  .timeline-dot { left: -48px; width: 40px; height: 40px; }
  .timeline-number { font-size: 16px; }
  .timeline-content { padding: 24px; }

  .faq-layout { grid-template-columns: 1fr; gap: 16px; }

  .contacto-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-buttons { flex-direction: column; width: 100%; }
  .btn-cookie { width: 100%; min-height: 48px; font-size: 16px; }

  .cookie-modal {
    width: calc(100vw - 32px);
    max-width: 100%;
    max-height: 85vh;
    margin: 16px;
    padding: 24px 16px;
    border-radius: 12px;
  }

  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 13px; }
  .back-to-top { bottom: 80px; right: 16px; }

  .legal-page { padding: 110px 0 60px; }
  .legal-page h1 { font-size: 28px; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 26px; }
  .trust-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 20px 12px; }
  .trust-number { font-size: 22px; }
  .contacto-card { padding: 24px 16px; }
}