/* ================================================================
   JC-EQUIP – Estilos Principales
   Versión: 1.0
   Paleta: Naranja #E8641A | Negro #0D0D0D | Blanco #FFFFFF | Gris #F5F5F5
   Tipografía: Montserrat (títulos) + Open Sans (cuerpo)
================================================================ */

/* ----------------------------------------------------------------
   1. RESET Y BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #0D0D0D;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ----------------------------------------------------------------
   2. VARIABLES CSS
---------------------------------------------------------------- */
:root {
  --color-primary:     #E8641A;
  --color-primary-dark:#C4511A;
  --color-dark:        #0D0D0D;
  --color-dark-soft:   #1A1A1A;
  --color-white:       #FFFFFF;
  --color-gray-light:  #F5F5F5;
  --color-gray-mid:    #E0E0E0;
  --color-gray-text:   #666666;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);

  --navbar-height: 72px;
  --section-pad:   96px;
}


/* ----------------------------------------------------------------
   3. UTILIDADES GLOBALES
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--color-primary);
}

/* Secciones */
.section {
  padding: var(--section-pad) 0;
}

.section--light {
  background-color: var(--color-white);
}

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

/* Encabezados de sección */
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section__eyebrow--light {
  color: var(--color-primary);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-gray-text);
  line-height: 1.7;
}

.section__subtitle--light {
  color: rgba(255,255,255,0.7);
}


/* ----------------------------------------------------------------
   4. BOTONES
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Botón primario: naranja */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Botón outline: borde blanco */
.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background-color: rgba(255,255,255,0.08);
}

/* Tamaños */
.btn--sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

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

.btn--full {
  width: 100%;
}


/* ----------------------------------------------------------------
   5. NAVBAR
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-height);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-mid);
  transition: box-shadow 0.3s ease;
}

/* Sombra cuando se hace scroll */
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

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

.navbar__links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color 0.2s ease;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.2s ease;
}

.navbar__links a:hover {
  color: var(--color-primary);
}

.navbar__links a:hover::after {
  width: 100%;
}

/* Hamburger (mobile) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Estado activo del hamburger */
.navbar__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ----------------------------------------------------------------
   6. HERO  – full-bleed background, text on left
---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark);
  padding-top: var(--navbar-height);
}

/* Background image: fills the entire hero */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  max-width: none;
  display: block;
}

/* Left-side gradient overlay so text stays readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.96) 0%,
    rgba(13,13,13,0.85) 38%,
    rgba(13,13,13,0.40) 62%,
    rgba(13,13,13,0.00) 80%
  );
}

/* Inner: only one column (text), image is the background */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - var(--navbar-height));
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero__content {
  max-width: 560px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Title */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 24px;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 46ch;
}

.hero__subtitle .text-accent {
  font-weight: 600;
  color: var(--color-primary);
}

/* CTA row */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


/* ----------------------------------------------------------------
   7. BENEFICIOS
---------------------------------------------------------------- */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  padding: 32px 28px;
  border: 1px solid var(--color-gray-mid);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(232, 100, 26, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-text);
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   8. PARA QUIÉN ES
---------------------------------------------------------------- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.audience-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: background-color 0.2s ease;
}

.audience-card:hover {
  background-color: rgba(255,255,255,0.08);
}

.audience-card__icon {
  width: 52px;
  height: 52px;
  background-color: rgba(232, 100, 26, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-primary);
}

.audience-card__icon svg {
  width: 22px;
  height: 22px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}


/* ----------------------------------------------------------------
   9. MÉTODO JC-EQUIP
---------------------------------------------------------------- */
/* Tagline de la metodología */
.method__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.method__word {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method__separator {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background-color: var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
}

/* Línea naranja superior */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
}

.pillar-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(232, 100, 26, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
}

.pillar-card__icon svg {
  width: 22px;
  height: 22px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-text);
  line-height: 1.7;
}


/* ----------------------------------------------------------------
   10. PROGRAMAS
---------------------------------------------------------------- */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.program-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: background-color 0.2s ease;
}

.program-card:hover {
  background-color: rgba(255,255,255,0.08);
}

/* Tarjeta destacada */
.program-card--featured {
  border-color: var(--color-primary);
  background-color: rgba(232, 100, 26, 0.08);
  position: relative;
}

.program-card--featured::before {
  content: 'Más elegido';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.program-card__header {
  margin-bottom: 16px;
}

.program-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: rgba(232, 100, 26, 0.12);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.program-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card__features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-card__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.programs__cta {
  text-align: center;
}


/* ----------------------------------------------------------------
   11. SOBRE JUAN CARLOS
---------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Acento naranja en la imagen */
.about__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__lead {
  font-size: 1.0625rem;
  color: var(--color-gray-text);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential-item__icon {
  width: 44px;
  height: 44px;
  background-color: rgba(232, 100, 26, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.credential-item__icon svg {
  width: 20px;
  height: 20px;
}

.credential-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.credential-item p {
  font-size: 0.9rem;
  color: var(--color-gray-text);
  line-height: 1.6;
}

.about__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--color-primary-dark);
}

.social-link svg {
  width: 18px;
  height: 18px;
}


/* ----------------------------------------------------------------
   12. EBOOK GRATUITO
---------------------------------------------------------------- */
.ebook__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.ebook__cover-wrapper img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.ebook__description {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
}

.ebook__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.ebook__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}

.ebook__benefits li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Formulario */
.ebook__form {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.45);
  -webkit-text-fill-color: rgba(255,255,255,0.45);
  opacity: 1;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0px 1000px rgba(30,30,30,0.95) inset;
  box-shadow: 0 0 0px 1000px rgba(30,30,30,0.95) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group input:focus {
  border-color: var(--color-primary);
  background-color: rgba(255,255,255,0.08);
}

.form-disclaimer {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}


/* ----------------------------------------------------------------
   13. CTA FINAL
---------------------------------------------------------------- */
.cta-final {
  background-color: var(--color-dark-soft);
  padding: 120px 0;
}

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

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-final__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}


/* ----------------------------------------------------------------
   14. FOOTER
---------------------------------------------------------------- */
.footer {
  background-color: #0A0A0A;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__brand p {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--color-primary);
}

.footer__whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.footer__whatsapp:hover {
  opacity: 0.8;
}

.footer__whatsapp svg {
  width: 20px;
  height: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}


/* ----------------------------------------------------------------
   15. BOTÓN FLOTANTE WHATSAPP
---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  color: var(--color-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}


/* ----------------------------------------------------------------
   16. RESPONSIVE – TABLET (max 1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {

  :root {
    --section-pad: 72px;
  }

  /* Navbar */
  .navbar__links {
    gap: 16px;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }

  /* Grids de 3 columnas → 2 */
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  /* Para quién: 3 columnas */
  .audience__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Sobre Juan Carlos */
  .about__grid {
    gap: 48px;
  }

  /* Ebook */
  .ebook__grid {
    gap: 48px;
  }
}


/* ----------------------------------------------------------------
   17. RESPONSIVE – MOBILE (max 768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {

  :root {
    --section-pad: 56px;
    --navbar-height: 64px;
  }

  /* ---- NAVBAR ---- */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 32px 24px;
  }

  .navbar__nav.is-open {
    transform: translateX(0);
  }

  .navbar__links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .navbar__links a {
    font-size: 1.1rem;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .hero__bg img {
    object-position: 70% center;
  }

  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(13,13,13,0.97) 0%,
      rgba(13,13,13,0.90) 45%,
      rgba(13,13,13,0.55) 70%,
      rgba(13,13,13,0.20) 100%
    );
  }

  .hero__inner {
    align-items: flex-end;
    padding-bottom: 12px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ---- GRIDS ---- */
  .benefits__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  /* ---- TAGLINE MÉTODO ---- */
  .method__tagline {
    flex-direction: column;
    gap: 8px;
  }

  .method__separator {
    display: none;
  }

  /* ---- SOBRE JUAN CARLOS ---- */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrapper img {
    height: 380px;
  }

  .about__image-wrapper::after {
    display: none;
  }

  /* ---- EBOOK ---- */
  .ebook__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ebook__cover-wrapper img {
    max-width: 260px;
  }

  /* ---- FOOTER ---- */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* ---- BOTÓN FLOTANTE ---- */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


/* ----------------------------------------------------------------
   18. RESPONSIVE – MOBILE PEQUEÑO (max 400px)
---------------------------------------------------------------- */
@media (max-width: 400px) {
  .audience__grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }
