:root {
  --bg: #fef9ff;
  --surface: #f3e8ff;
  --accent: #9b59b6;
  --accent-dark: #7d3c98;
  --text: #2d1b4e;
  --muted: #8e7aaa;
  --border: #e8d5f5;
  --pink: #fce4ec;
  --blue: #e0f7fa;
  --white: #ffffff;
  --green: #4caf50;
  --red: #e57373;
  --shadow-sm: 0 2px 8px rgba(45,27,78,0.06);
  --shadow-md: 0 4px 20px rgba(45,27,78,0.1);
  --shadow-lg: 0 8px 40px rgba(45,27,78,0.14);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Quicksand', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

a:hover {
  color: var(--accent-dark);
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  z-index: 100001;
  transition: width 0.1s linear;
}

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

.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
}

.site-header:not(.scrolled) .logo {
  color: var(--white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}

.site-header:not(.scrolled) .desktop-nav a {
  color: rgba(255,255,255,0.9);
}

.site-header:not(.scrolled) .desktop-nav a:hover {
  color: var(--white);
}

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

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

.site-header:not(.scrolled) .header-phone {
  color: var(--white);
}

.header-cta {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

.btn-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: all var(--transition);
  display: inline-block;
}

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

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.site-header:not(.scrolled) .burger {
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  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: 8px;
  width: 100%;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  transition: color var(--transition);
}

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

.mobile-phone-link {
  color: var(--accent) !important;
  font-weight: 700 !important;
  margin-top: 16px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 78, 0.65);
}

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

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.trust-strip {
  background: linear-gradient(135deg, var(--surface), var(--pink));
  padding: 48px 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

.section-experiencias {
  padding: 100px 0;
  background: var(--bg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.masonry-grid {
  columns: 3;
  column-gap: 24px;
}

.review-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.review-card-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-color: transparent;
}

.review-card-accent .review-badge {
  color: rgba(255,255,255,0.8) !important;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 14px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

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

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.audience-col h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.audience-col ul {
  list-style: none;
}

.audience-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.audience-col li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.section-ventajas {
  padding: 100px 0;
  background: var(--bg);
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ventaja-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.ventaja-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.ventaja-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ventaja-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.section-promesa {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface), var(--blue));
}

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

.promesa-icon {
  margin-bottom: 24px;
}

.promesa-box h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

.promesa-list {
  text-align: left;
}

.promesa-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.promesa-item svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.promesa-item p {
  font-size: 16px;
  line-height: 1.6;
}

.section-proceso {
  padding: 100px 0;
  background: var(--bg);
}

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

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

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

.timeline-item: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: 1;
}

.timeline-dot span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.section-mentor {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d1b4e, #4a2d6e);
}

.mentor-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.mentor-photo-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
}

.mentor-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.mentor-card h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
}

.mentor-quote {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 0 20px;
  position: relative;
}

.mentor-quote::before {
  content: '\201C';
  font-size: 60px;
  font-family: var(--font-heading);
  color: var(--accent);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.5;
}

.mentor-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mentor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-q {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
}

.faq-q:hover,
.faq-q.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.faq-answers {
  position: relative;
}

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

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

.faq-a h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}

.faq-a p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.section-contacto {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d1b4e, #3d2560);
  position: relative;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.contact-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

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

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

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

.form-group input.error {
  border-color: var(--red);
}

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

.pill-radios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-radios input[type="radio"] {
  display: none;
}

.pill-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  min-height: 44px;
  color: var(--text) !important;
}

.pill-radios input[type="radio"]:checked + .pill-radio {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--accent);
}

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

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

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

.form-check label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}

.form-check label a {
  font-weight: 700;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 16px 0 8px;
  color: var(--text);
}

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

.contact-alt {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
}

.contact-alt a {
  font-weight: 700;
}

.site-footer {
  background: var(--white);
  padding: 48px 0 32px;
  text-align: center;
  position: relative;
}

.footer-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--pink), var(--blue), var(--accent));
}

.footer-logo {
  margin-bottom: 24px;
  color: var(--text);
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: color var(--transition);
}

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

.footer-cookie-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition);
}

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

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-info a {
  color: var(--muted);
}

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

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-4px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 30px rgba(45,27,78,0.15);
  padding: 24px;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-settings,
.btn-cookie-reject {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  min-height: 48px;
  min-width: 100px;
  transition: all var(--transition);
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.btn-cookie-accept:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

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

.btn-cookie-settings:hover {
  background: var(--surface);
}

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

.btn-cookie-reject:hover {
  background: var(--surface);
}

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

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

.cookie-modal h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-right: 40px;
}

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

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  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: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.cookie-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  flex-wrap: wrap;
}

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

.cookie-name {
  font-weight: 700;
  font-size: 15px;
  display: block;
  width: 100%;
  flex: 1;
  min-width: 120px;
}

.cookie-desc {
  display: block;
  font-size: 13px;
  color: var(--muted);
  width: 100%;
  padding-left: 32px;
}

.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 60vh;
}

.legal-container {
  max-width: 780px;
}

.legal-container h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.legal-container h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-container h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

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

.legal-container li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-container a {
  font-weight: 600;
}

.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

@media (max-width: 1024px) {
  .ventajas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .masonry-grid {
    columns: 1;
  }

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

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

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

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

  .contact-form-wrap {
    padding: 32px 20px;
  }

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

  .btn-lg {
    width: 100%;
    padding: 16px 24px;
  }

  .pill-radios {
    flex-direction: column;
  }

  .pill-radio {
    width: 100%;
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-settings,
  .btn-cookie-reject {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .cookie-banner {
    padding: 16px;
  }

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

  .mentor-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .mentor-card h2 {
    font-size: 24px;
  }

  .mentor-quote {
    font-size: 16px;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-dot {
    left: -48px;
    width: 36px;
    height: 36px;
  }

  .timeline-dot span {
    font-size: 15px;
  }

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

  .footer-info {
    flex-direction: column;
    gap: 4px;
  }

  .legal-container h1 {
    font-size: 28px;
  }

  .promesa-box h2 {
    font-size: 26px;
  }
}

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

  .trust-pills {
    flex-direction: column;
    gap: 8px;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

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

  .stat-number {
    font-size: 32px;
  }

  .container {
    padding: 0 16px;
  }
}