/* ===================================== */
/* SIMPLENGLISH — Estilos compartidos    */
/* ===================================== */

:root {
  --red: #C41E1E;
  --red-dark: #A01818;
  --black: #1A1A1A;
  --black-soft: #242424;
  --white: #FFFFFF;
  --yellow: #FFD93D;
  --yellow-dark: #FFB800;
  --gray: #F5F5F5;
  --gray-2: #E8E8E8;
  --text-muted: #6B6B6B;
  --font: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* === TOP BAR === */
.topbar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* === NAV === */
nav.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  z-index: 100;
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--black);
}
.logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); font-weight: 700; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; }

/* === BOTONES === */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 22px 48px; font-size: 18px; }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--black); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); color: var(--black); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--black-soft); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-ghost-dark:hover { background: var(--black); color: var(--white); }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* === HERO === */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero.short { padding: 70px 0 80px; }
.hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse, rgba(196,30,30,0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(255,217,61,0.4);
  border-radius: 100px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero h1 .strike {
  position: relative;
  color: rgba(255,255,255,0.35);
  font-weight: 800;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 55%;
  height: 6px;
  background: var(--red);
  transform: rotate(-2deg);
}
.hero h1 .accent {
  color: var(--red);
  display: inline-block;
}
.hero h1 .yellow { color: var(--yellow); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto 16px;
  font-weight: 400;
  line-height: 1.5;
}
.hero p.subhead {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.hero-price-tag {
  display: inline-block;
  margin-top: 24px;
  background: rgba(255,217,61,0.1);
  border: 1px solid rgba(255,217,61,0.3);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
}
.hero-price-tag strong { color: var(--white); font-size: 18px; font-weight: 900; }

/* === SECTION GENERAL === */
section.block { padding: 100px 0; }
section.block.short { padding: 70px 0; }
.section-tag {
  display: inline-block;
  background: rgba(196,30,30,0.1);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag.yellow {
  background: rgba(255,217,61,0.15);
  color: var(--yellow);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 900px;
}
.section-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 60px;
  line-height: 1.6;
}
.text-center { text-align: center; }
.text-center .section-title,
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* Sections con fondo oscuro */
.dark-section { background: var(--black); color: var(--white); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,0.7); }
.gray-section { background: var(--gray); }

/* === MANIFESTO COMPARATIVA === */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.manifesto-card {
  border: 2px solid var(--gray-2);
  border-radius: 12px;
  padding: 36px;
  transition: all 0.2s;
}
.manifesto-card.bad { border-color: var(--gray-2); background: var(--gray); }
.manifesto-card.good { border-color: var(--red); background: var(--white); }
.manifesto-card .icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-block;
  width: 48px; height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 8px;
  font-weight: 900;
}
.manifesto-card.bad .icon { background: #FEE; color: var(--red); }
.manifesto-card.good .icon { background: var(--red); color: var(--white); }
.manifesto-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.manifesto-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.manifesto-card.good h3 { color: var(--red); }

/* === INCLUDED LIST (qué incluye) === */
.included-list {
  background: var(--gray);
  border-radius: 16px;
  padding: 40px;
  margin-top: 30px;
}
.included-list ul {
  list-style: none;
}
.included-list ul li {
  padding: 14px 0;
  padding-left: 36px;
  position: relative;
  font-size: 16px;
  color: var(--black);
  border-bottom: 1px solid var(--gray-2);
  font-weight: 500;
}
.included-list ul li:last-child { border-bottom: none; }
.included-list ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 14px;
  background: var(--red);
  color: var(--white);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

/* === STEPS (cómo funciona) === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.step-item { text-align: left; }
.step-num {
  font-size: 60px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -2px;
}
.step-item h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.step-item p { color: var(--text-muted); font-size: 15px; line-height: 1.5; }
.dark-section .step-item p { color: rgba(255,255,255,0.7); }
.dark-section .step-item h4 { color: var(--white); }

/* === SERVICE CARDS (en home / overview) === */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--gray-2);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--red);
}
.service-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.service-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured ul li { color: rgba(255,255,255,0.85); }
.service-card.featured .desc { color: rgba(255,255,255,0.7); }
.service-card.featured .service-price-num { color: var(--white); }
.service-card.featured .service-price-cur { color: rgba(255,255,255,0.6); }
.service-card.featured .service-price { border-top-color: rgba(255,255,255,0.15); }
.service-tag-pill {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.service-tag-pill.red { background: var(--red); color: var(--white); }
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
  line-height: 1.2;
}
.service-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 42px;
}
.service-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card ul li {
  font-size: 14px;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: #444;
  line-height: 1.4;
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}
.service-card.featured ul li::before { color: var(--yellow); }
.service-price {
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-2);
}
.service-price-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.service-price-cur {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.service-card .btn { width: 100%; padding: 14px 20px; font-size: 13px; }

/* === FOR WHOM (perfil) === */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.for-whom-card {
  background: var(--white);
  border: 2px solid var(--gray-2);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.2s;
}
.for-whom-card:hover { border-color: var(--red); }
.for-whom-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.for-whom-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.for-whom-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  background: linear-gradient(135deg, var(--red), var(--black));
  aspect-ratio: 4/5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 90px;
  font-weight: 900;
  letter-spacing: -4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.about-content h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.about-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -1px;
}
.about-stat span { font-size: 13px; color: var(--text-muted); margin-top: 4px; display: block; }

/* === TESTIMONIALS === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.testi-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.testi {
  background: var(--gray);
  border-radius: 16px;
  padding: 36px 32px;
  border-left: 4px solid var(--red);
}
.testi p.quote {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--black);
  font-weight: 500;
}
.testi .stars { color: var(--yellow); margin-bottom: 14px; font-size: 16px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-meta { font-size: 12px; color: var(--text-muted); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-2);
}
.faq-q {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--red);
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 28px 22px;
}

/* === FINAL CTA === */
.final-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15), transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.final-cta .btn-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === PRICE CARD (en páginas individuales) === */
.price-card {
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 30px auto;
  box-shadow: 0 30px 60px rgba(196,30,30,0.15);
}
.price-card .price-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-card .price-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}
.price-card .price-num small {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
  vertical-align: super;
}
.price-card .price-info {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.price-card .btn { width: 100%; }
.price-card .btn-secondary {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
}

/* === COMUNIDAD === */
.community {
  background: var(--white);
  border-top: 1px solid var(--gray-2);
  padding: 80px 0;
  text-align: center;
}
.community-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* === FOOTER === */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; max-width: 320px; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 12px;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--gray);
  border-bottom: 1px solid var(--gray-2);
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-2); }
.breadcrumb .current { color: var(--black); font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { transform: none; }
  .service-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--gray-2); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .manifesto-grid,
  .testi-grid,
  .testi-grid.cols-2,
  .services-grid-2,
  .for-whom-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section.block { padding: 70px 0; }
  .final-cta, .community { padding: 70px 0; }
  .hero { padding: 70px 0 80px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .price-card { padding: 30px 20px; }
  .price-card .price-num { font-size: 48px; }
}
