:root {
  --red: #ff0000;
  --black: #000000;
  --card-bg: #0f0f0f;
  --text-white: #ffffff;
  --text-grey: #a0a0a0;
  --red-glow: rgba(255, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text-white);
  font-family: "Lexend", sans-serif;
  overflow-x: hidden;
}

/* --- TITULOS --- */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.glow {
  text-shadow: 0 0 15px var(--red-glow);
}
.text-red {
  color: var(--red);
}
/* --- Contador Versión Slim --- */
.countdown-container {
    background: #000;
    padding: 15px 5%; /* Mucho más estrecho */
    border-bottom: 1px solid #333;
    position: sticky; /* Opcional: para que se quede arriba al bajar */
    top: 0;
    z-index: 1000;
}

.countdown-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.countdown-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}

.timer-slim {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-unit {
    text-align: center;
    min-width: 45px;
}

.time-unit span {
    display: block;
    font-size: 1.5rem; /* Tamaño reducido */
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.time-unit small {
    font-size: 0.6rem;
    color: #666;
    text-transform: uppercase;
}

.time-divider {
    font-size: 1.2rem;
    font-weight: 900;
    color: #333;
    padding-bottom: 15px;
}

/* Ajuste específico para Móvil */
@media (max-width: 768px) {
    .countdown-wrapper {
        flex-direction: column; /* Título arriba, números abajo */
        gap: 5px;
        padding: 5px 0;
    }
    
    .countdown-title {
        font-size: 0.75rem;
    }

    .time-unit span {
        font-size: 1.2rem;
    }
    
    .time-divider {
        display: none; /* Quitamos los puntos en móvil para ganar espacio */
    }
}
/* --- NAVBAR --- */
.navbar {
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: center;
  background: var(--black);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 190px;
  width: 250px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.btn-nav {
  background: #25d366;
  padding: 10px 20px;
  border-radius: 8px;
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.btn-nav:hover {
  background: #128c7e;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}
/* --- HERO --- */
.hero {
  padding: 60px 5%;
}
.hero-flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: #080808;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid #1a1a1a;
}
.hero-left {
  flex: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  color: var(--text-grey);
  margin-bottom: 30px;
}
.btn-primary {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 10px;
  font-weight: 900;
  display: inline-block;
}
.hero-main-img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid #222;
}
@media (max-width: 768px) {
  .hero-main-img {
    height: 400px;
    object-fit: cover;
  }
}
/* --- ESTILOS VIDEO SECCIÓN --- */
.video-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
}

.main-video {
  width: 100%;
  display: block;
  filter: brightness(0.8);
}

.video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 0, 0, 0.8);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
}


/* --- BENEFICIOS --- */
.benefits-section {
  padding: 80px 5%;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.b-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #1a1a1a;
  text-align: center;
}
.b-card span {
  font-size: 45px;
  color: var(--red);
  margin-bottom: 15px;
  display: block;
}

/* --- SECCIÓN COACHES --- */
/* --- SECCIÓN COACHES --- */
.coaches-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.coach-card {
  background: var(--card-bg);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.coach-card:hover {
  transform: translateY(-10px);
  border-color: var(--red);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.coach-img-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000; /* Fondo negro por si la imagen tarda en cargar */
}

.coach-img-container img {
  width: 100%; /* Ajustado al 100% para evitar huecos */
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.5s ease;
}

.coach-card:hover .coach-img-container img {
  filter: grayscale(0%);
  transform: scale(1.05); /* Efecto de zoom suave al pasar el mouse */
}

.coach-info {
  padding: 30px;
  text-align: left; /* Cambiado a izquierda para que la lista luzca mejor */
}

.coach-tag {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.coach-info h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-white);
}

/* --- NUEVOS ESTILOS PARA LA LISTA --- */
.coach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coach-list li {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

/* El punto rojo decorativo */
.coach-list li::before {
  content: "→"; /* Una flecha minimalista queda muy bien en fitness */
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .coach-img-container {
    height: 450px; /* Un poco más alto que antes para que no se vea chato */
  }

  .coach-info h3 {
    font-size: 1.3rem;
  }
}

/* --- ESTILOS SUPLEMENTOS PREMIUM --- */
.suplementos-section {
  padding: 100px 5%;
  background: radial-gradient(circle at center, #0a0000 0%, #000 100%);
}

/* Contenedor Principal */
.suple-featured-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto 0;
  background: rgba(10, 10, 10, 0.8);
  padding: 60px;
  border-radius: 40px;
  border: 1px solid #1a1a1a;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Titulares y Textos */
.suple-text-content .badge {
  background: var(--red);
  color: white;
  padding: 6px 15px;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.suple-text-content h3 {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Título grande y adaptable */
  font-weight: 900;
  line-height: 1;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -1px;
}

.suple-text-content p {
  color: var(--text-grey);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.suple-text-content p strong {
  color: var(--red);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Lista de Beneficios */
.suple-text-content .coach-list li {
  font-size: 1.05rem;
  color: #eee;
  margin-bottom: 15px;
  font-weight: 400;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 10px;
}

/* Imagen con efecto de profundidad */
.suple-main-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.suple-main-image::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 20%;
  background: var(--red);
  bottom: 10%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: 0;
}

.suple-main-image img {
  width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.suple-main-image:hover img {
  transform: scale(1.05) rotate(-1deg);
}

/* Ajuste Móvil */
@media (max-width: 992px) {
  .suple-featured-container {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    text-align: center;
    gap: 40px;
  }

  .suple-text-content h3 {
    font-size: 2.2rem;
  }

  .suple-text-content .coach-list li {
    text-align: left;
    font-size: 0.95rem;
  }
}

/* --- PRECIOS --- */
.pricing-section {
  padding: 80px 5%;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid #1a1a1a;
  text-align: center;
}
.price-card.highlighted {
  border: 2px solid var(--red);
  transform: scale(1.05);
}
.cost {
  font-size: 3rem;
  font-weight: 900;
  margin: 20px 0;
}
.best-choice {
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  display: inline-block;
}
.btn-buy {
  display: block;
  padding: 15px;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 900;
  margin-top: 15px;
}
.btn-buy.red {
  background: var(--red);
}

/* --- RESULTADOS --- */
.results-section {
  padding: 80px 5%;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}
.res-img {
  height: 450px;
  width: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #222;
  transition: all 0.5s ease;
  margin: 0 auto;
}
.res-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.res-img:hover {
  border-color: var(--red);
  transform: scale(1.02);
}
.res-img:hover img {
  transform: scale(1.08);
}
/* --- AJUSTES PARA MÓVIL --- */
@media (max-width: 768px) {
  /* Evita que se corten las cabezas en las fotos de resultados */
  .res-img {
    height: 380px; /* Reducimos un poco la altura para que encaje mejor */
    width: 100%;
  }

  .res-img img {
    object-fit: contain; /* Cambiamos a 'contain' para ver la foto completa sin cortes */
    background-color: #000; /* Fondo negro por si la foto es más angosta */
    object-position: top; /* Prioriza mostrar la parte superior (cabezas) */
  }

  /* Ajustes generales de la interfaz en móvil */
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  .hero-flex-container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .price-card.highlighted {
    transform: scale(1);
  }
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 5%;
  background: linear-gradient(to bottom, #000, #080808);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
  transition: 0.3s ease;
}
.faq-item:hover {
  border-color: var(--red);
}
.faq-item h3 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.faq-item p {
  color: var(--text-grey);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- OPINIONES --- */
.reviews-section {
  padding: 80px 5%;
  background: #050505;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: #0f0f0f;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  color: var(--red);
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.review-card p {
  font-style: italic;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #222;
  padding-top: 15px;
}
.reviewer span {
  font-size: 40px;
  color: var(--text-grey);
}
.reviewer h4 {
  font-size: 1rem;
  font-weight: 700;
}
.reviewer small {
  color: var(--red);
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* --- FOOTER --- */
.main-footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #111;
}
.footer-logo {
  height: 212px;
  width: 166px;
  margin-bottom: 20px;
}
.epayco {
  max-width: 150px;
  margin: 20px auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* --- MEDIA QUERIES --- */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .nav-links a {
    font-size: 0.75rem;
    padding: 5px 10px;
    background: #111;
    border-radius: 5px;
  }
  .btn-nav {
    width: 100%;
    text-align: center;
  }
  .hero-flex-container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .price-card.highlighted {
    transform: scale(1);
  }
  .res-img {
    height: 400px;
    width: 100%;
  }
}
