#recursos h2,
#contacto h2 {
  color: #00b37a;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.center-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 60px;
}

.ebook-img {
  width: 40%;
  max-width: 380px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ebook-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* EBOOK IMAGE RESPONSIVE */
@media (max-width: 768px) {
  .ebook-img {
    width: 80%;
  }
}


/* === FORMULARIO MAILERLITE === */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  text-align: center;
}

#mlb2-32975802 {
  width: 100%;
  max-width: 420px;
}

#mlb2-32975802 input[type="email"] {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#mlb2-32975802 button {
  width: 100%;
  padding: 14px;
  background-color: #00b37a;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#mlb2-32975802 button:hover {
  background-color: #009066;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 8px 0;
}

.contact-info a {
  color: #00b37a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #009066;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icons a {
  color: #fff;
  font-size: 1.8rem;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.15);
  color: #00b37a;
}

.logo {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #00b37a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.logo {
  color: var(--logo-color);
}

.nav-links a {
  color: var(--nav-text-color);
}


/* === MEGA MENÚ · ESTILO === */

.dropdown-panel {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.20);
}

/* Items acompañamientos */
.dropdown-item {
  width: 23%;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dropdown-panel.show .dropdown-item {
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item img,
.dropdown-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.dropdown-item h4 {
  color: #00b37a;
  font-size: 1.25rem;
  margin: 5px 0;
  font-weight: 700;
}

.dropdown-item p {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Hover */
.dropdown-item:hover img,
.dropdown-item:hover video {
  transform: scale(1.03);
  transition: transform 0.25s ease;
}

/* Stagger */
.dropdown-item:nth-child(1) { transition-delay: 0.10s; }
.dropdown-item:nth-child(2) { transition-delay: 0.20s; }
.dropdown-item:nth-child(3) { transition-delay: 0.30s; }
.dropdown-item:nth-child(4) { transition-delay: 0.40s; }

/* === PROGRAM CARD === */

.program-card h3 {
  margin: 18px 0 14px;
  font-size: 1.2rem;
  color: #fff;
}

.program-copy {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Media */
.program-media {
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.program-media img,
.program-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

/* Hover behavior */
.program-media video {
  opacity: 0;
}

.program-media:hover video {
  opacity: 1;
}

.program-media:hover img {
  opacity: 0;
  transform: scale(1.03);
}


/* Recursos */
.dropdown-panel-recursos {
  background: #ffffff;
  padding: 5px 5px 10px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.recurso-item {
  width: 48%;
  text-align: center;
  text-decoration: none;
  color: #111;
}

.recurso-item img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 12px;
  padding: 6px;
  background: #fafafa;
  margin-bottom: 3px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.recurso-item h4 {
  font-size: 1.2rem;
  margin: 5px 0;
  font-weight: 700;
}

.recurso-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Ajuste específico video */
.mega-video-handstand {
  object-position: 50% 80%;
}


.hero-text {
  color: white;
}

.hero-text h1,
.hero-text h2 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow:
    0px 3px 6px rgba(0,0,0,0.7),
    0px 8px 20px rgba(0,0,0,0.8);
}

.hero-text p {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow:
    0px 3px 6px rgba(0,0,0,0.7),
    0px 8px 20px rgba(0,0,0,0.8);
}

/* HERO TEXT RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}


/* === CONTENT TYPOGRAPHY === */
.content-section h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  font-weight: 600;
  color: #00b37a;
}

.content-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 8px;
}

/* === HERO CAROUSEL === */
.hero-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.carousel-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.6s ease;
}

.carousel-item {
  width: 50%;
  height: 100%;
}

.carousel-item img,
.carousel-item video {
  width: 100%;
  height: 100%;
  object-position: center 60%;
}

.carousel-item img {
  object-fit: contain;
}

.carousel-item video {
  object-fit: cover;
}

/* Flechas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .carousel-btn {
    padding: 8px 12px;
    font-size: 1.4rem;
  }
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

/* === BOTONES === */
.hero-text-btn,
.sobre-mi-btn {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 20px;
  color: #00b37a;
  background: white;
  border-radius: 100px;
  border: 2px solid #00b37a;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  transition: transform 0.25s ease, background 0.3s ease, color 0.3s ease;
}

.hero-text-btn:hover,
.sobre-mi-btn:hover {
  transform: scale(1.05);
  background: #00b37a;
  color: white;
}

.sobre-mi-btn {
  margin-top: 40px;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

/* === ANIMACIONES === */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(0, 179, 122, 0); }
  50% { box-shadow: 0 0 12px rgba(0, 179, 122, 0.4); }
  100% { box-shadow: 0 0 0 rgba(0, 179, 122, 0); }
}


/* === FILOSOFIA === */
.filosofia-text {
  max-width: 720px;
  margin: 0 auto;
}

.filosofia-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-top: 1.8em;
  margin-bottom: 1.6em;
}

.filosofia-text blockquote {
  margin-top: 2.5em;
  padding-left: 20px;
  border-left: 3px solid #00b37a;
  font-style: italic;
  opacity: 0.85;
  line-height: 1.7;
}

/* === TESTIMONIO · CARD === */
.testimonio {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 420px;
  text-align: left;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonio:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.testimonio p {
  font-size: 1.05rem;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonio h4 {
  color: #00b37a;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonio {
    padding: 30px 25px;
  }

  .testimonio p {
    font-size: 1rem;
  }
}

/* === PRICING CARD === */
.pricing-card {
  background: #fafafa;
  padding: 25px;
  border-radius: 18px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #111;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #00b37a;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    max-width: 320px;
  }
}

/* === PRODUCT PAGES HERO TEXT === */
.price-hero {
  font-size: 2rem;
  font-weight: 700;
  color: #00b37a;
  margin-bottom: 18px;
}

.parrafo {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

/* === BOTONES === */
.btn-primary {
  background: #00b37a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
/* === SPLIT TEXT === */
.split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.split-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 12px;
}

/* === SPLIT VIDEO === */
.split-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* === BENEFIT ITEM === */
.benefit-item {
  text-align: left;
  color: #fff;
}

.benefit-item i {
  font-size: 36px;
  color: #00b37a;
  margin-bottom: 12px;
}

.benefit-item .divider {
  width: 50px;
  height: 3px;
  background: #00b37a;
  margin: 10px 0 16px 0;
}

.benefit-item h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.benefit-item p {
  color: #ddd;
  line-height: 1.5;
}








