  /* =====================
    Variables globales
    ===================== */
  :root {
    --color-bg: #121212;
    --color-text: #eee;
    --color-text-alt: #bbb;
    --color-primary: #f01c00;
    --color-primary-dark: #c31500;
    --color-primary-light: #ff3b3b;
    --color-shadow-primary: rgba(240, 28, 0, 0.7);
    --color-shadow-primary-light: rgba(255, 59, 59, 0.9);
    --color-bg-alt: #1f1f1f;
    --color-benefit-bg: #262626;
    --color-benefit-bg-hover: rgba(255, 50, 50, 0.15);
    --color-link-hover: #c31500;
  }

  /* =====================
    Estilos principales Milozzfit
    ===================== */

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Montserrat:wght@700;900&display=swap');

  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  .navbar {
    background-color: rgba(43, 36, 36, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    height: 100px;
    z-index: 99999999;
  }

  .navbar-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name-navbar {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    background: linear-gradient(90deg, var(--color-primary), #e60023, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
  }

  .red-line-navbar {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-primary), #b30000);
    box-shadow: 0 0 8px var(--color-primary);
    border-radius: 2px;
    margin-top: 6px;
  }



  .btn-outline-light {
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
  }

  .btn-outline-light:hover {
    background-color: var(--color-primary);
    color: #fff;
  }

  .video-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden;
  }


  @keyframes slideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .red-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--color-primary), #b30000);
    box-shadow: 0 0 10px var(--color-primary);
    margin: 1rem auto 3rem auto;
    border-radius: 2px;
  }

  .top-subtext {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  .text-highlight {
    color: var(--color-primary-light);
    font-weight: 800;
    text-shadow: 0 0 6px rgba(255, 59, 59, 0.3);
  }

  .text-muted-sub {
    color: var(--color-text-alt);
    font-weight: 500;
    font-style: italic;
  }

  .proof-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 1.2rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    line-height: 1.6;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.05);
  }



  .lead.highlight {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ddd;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
  }

  .highlight-red {
    color: var(--color-primary-light);
    font-weight: 900;
    text-shadow: 1px 1px 2px #7a0000;
  }

  .video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .video-wrapper:hover {
    box-shadow: 0 0 30px 10px rgba(255, 40, 40, 0.8), inset 0 0 20px rgba(255, 40, 40, 0.6);
  }

  .urgent-message {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-light);
    text-transform: uppercase;
    text-shadow: 1px 1px 6px #7a0000;
    margin: 2rem 0 1rem;
  }

  .secondary-text {
    font-size: 1.1rem;
    color: var(--color-text-alt);
    max-width: 650px;
    margin: 0 auto 3rem;
  }

  .btn-cta {
    background: linear-gradient(135deg, var(--color-primary), #cc0e00);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 40px;
    box-shadow: 0 6px 20px var(--color-shadow-primary);
    border: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
  }

  .btn-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-light), #e02020);
    box-shadow: 0 8px 25px var(--color-shadow-primary-light);
  }

  .decorative-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
      repeating-linear-gradient(45deg, rgba(255, 28, 0, 0.05) 0, rgba(255, 28, 0, 0.05) 2px, transparent 2px, transparent 10px),
      repeating-linear-gradient(-45deg, rgba(255, 28, 0, 0.05) 0, rgba(255, 28, 0, 0.05) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    z-index: 0;
  }



/* ===================== 
  Media Queries para dispositivos móviles
===================== */

@media (max-width: 768px) {
  /* Estilo para la navbar */
  .navbar {
    padding: 0.5rem 1rem;
    height: auto;
  }

  .navbar-brand-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .brand-name-navbar {
    font-size: 1.5rem;
  }

  .btn-outline-light {
    font-size: 0.9rem;
  }

  /* Estilo para la video section */
  .video-section {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .video-wrapper {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 40, 40, 0.8), inset 0 0 20px rgba(255, 40, 40, 0.6);
  }

  .top-subtext {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .lead.highlight {
    font-size: 1.8rem;
    line-height: 1.4;
    
  }

  .proof-text {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .urgent-message {
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }

  .btn-cta {
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 30px;
  }
  
  /* Ajustar la sección de los textos */
  .secondary-text {
    font-size: 1rem;
    margin: 1rem auto 2.5rem;
  }

  /* Ajustar la posición del video */
  .video-section .ratio {
    height: 200px;
    max-width: 100%;
  }
  
  /* Ajustar la fuente y márgenes de los botones */
  .btn-cta {
    font-size: 1rem;
    padding: 12px 30px;
    margin-top: 1rem;
  }

  .btn-outline-light {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Ajustes adicionales para móviles más pequeños */
  .navbar {
    padding: 0.5rem 0.5rem;
  }

  .navbar-brand-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .brand-name-navbar {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .btn-outline-light {
    font-size: 0.8rem;
  }

  .video-section {
    padding: 3rem 1rem;
  }

  .video-wrapper {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .top-subtext {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .lead.highlight {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .proof-text {
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .urgent-message {
    font-size: 1.6rem;
    margin: 1rem 0;
  }

  .btn-cta {
    font-size: 1rem;
    padding: 10px 28px;
    margin-top: 1rem;
  }

  .decorative-lines {
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
      repeating-linear-gradient(45deg, rgba(255, 28, 0, 0.05) 0, rgba(255, 28, 0, 0.05) 2px, transparent 2px, transparent 10px),
      repeating-linear-gradient(-45deg, rgba(255, 28, 0, 0.05) 0, rgba(255, 28, 0, 0.05) 2px, transparent 2px, transparent 10px);
  }

  .video-section .ratio {
    height: 180px;
    max-width: 100%;
  }

  .proof-text {
    font-size: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
}



  
/* Hero */
.hero-section {
  min-height: 65vh;
  background: linear-gradient(180deg, rgba(240, 28, 0, 0.85) 30%, rgba(18, 18, 18, 0.9) 90%), url('Imagenes/Lucas.jpeg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 5rem 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-text h1 {
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-text h2 {
  font-weight: 600;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.btn-primario {
  background-color: var(--color-primary);
  border: none;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(240, 28, 0, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-primario {
  margin-bottom: 0;
}


.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(240, 28, 0, 0.9);
}

/* Beneficios */
.benefits-section {
  background: var(--color-bg-alt);
  padding: 5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(240, 28, 0, 0.2);
  
}



.benefits-title {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.benefits-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  background: var(--color-benefit-bg);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(255, 30, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px var(--color-benefit-bg-hover);
}

.icon-check {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}

/* Servicios */
.services-section {
  padding: 5rem 1rem;
  background: var(--color-bg);
}

.service-card {
  background: var(--color-bg-alt);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgb(240 28 0 / 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-text);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgb(240 28 0 / 0.6);
}

.service-card i {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.service-card p {
  flex-grow: 1;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}













/* Testimonios */
.testimonials-section {
  background: #1a1a1a;
  padding: 5rem 2rem;
  border-radius: 12px;
  margin-top: 4rem;
  box-shadow: 0 0 20px rgba(240, 28, 0, 0.25);
  color: var(--color-text);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.15rem;
  position: relative;
  padding-left: 3rem;
}

.testimonial::before {
  content: "\201C";
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: -10px;
  color: var(--color-primary);
  font-weight: 700;
}

.testimonial-footer {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ¿Por qué elegir Milozzfit? */
.why-section {
  padding: 5rem 1rem;
  background: linear-gradient(45deg, var(--color-primary), #a80000);
  color: white;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(240, 28, 0, 0.5);
  margin-top: 5rem;
}

.why-section h2 {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.why-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
  background: var(--color-bg);
  color: #aaa;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

footer a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

.whatsapp-flotante {
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  z-index: 999;
  display: inline-block;
}

.whatsapp-flotante img {
  width: 50px;
  height: 50px;
  display: block;
  border: none;
  outline: none;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.whatsapp-flotante img:hover {
  transform: scale(1.1);
}

/* =====================
   Responsive
   ===================== */

@media (max-width: 700px) {
 .hero-section {
  margin-bottom: -20px;
 }

}


@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .btn-primario {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .benefits-section,
  .services-section,
  .why-section {
    padding: 3rem 1rem;
  }

  .benefits-title {
    font-size: 1.6rem;
  }

  .benefits-subtitle,
  .benefit-item span {
    font-size: 1rem;
  }

  .service-card h4 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .why-section h2 {
    font-size: 2rem;
  }

  .why-section p {
    font-size: 1rem;
  }
}



.agendar-section {
  background-color: var(--color-bg-alt);
  padding: 5rem 1rem;
  border-top: 2px solid var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary-dark);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-subtitle {
  color: var(--color-text-alt);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.agendar-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  width: 100%;
}

.input-group-custom {
  position: relative;
}

.input-group-custom input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  background-color: #1d1d1d;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.input-group-custom input::placeholder {
  color: #999;
  opacity: 0.8;
}

.input-group-custom input:focus {
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 10px rgba(240, 28, 0, 0.5);
  outline: none;
}

.form-success {
  display: none;
  font-weight: 600;
  color: var(--color-primary-light);
}