:root {
  --white: #ffffff;
  --red: #e60000;
  --black: #0f0f0f;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* TIPOGRAFÍA BASE */
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--black);
}

/* ======== MOBILE FIRST (BASE) ======== */

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  padding: 60px 6%;
  gap: 24px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.hero h2 {
  margin-top: 8px;
  font-size: 1.1rem;
  color: #333;
}

.cta-primary {
  display: inline-block;
  margin-top: 20px;
  background: var(--red);
  color: white;
  text-decoration: none;
  border: none;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
  width: 100%;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}

.cta-primary:hover {
  background: #b30000;
  transform: translateY(-1px);
  box-shadow: 0px 6px 15px rgba(230, 0, 0, 0.3);
}

.microcopy {
  margin-top: 8px;
  font-size: 0.8rem;
}

/* PROBLEMA */
.problem {
  background: #f5f5f5;
  padding: 60px 6%;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* SOLUCIÓN */
.process-section {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 1rem;
}

.process-header p {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.process-duration {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.process-duration h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #000;
}

.process-duration p {
  color: #444;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
}

.step-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #b00020;
  margin-bottom: 0.6rem;
}

.step h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #111;
}

.step p {
  color: #555;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .process-header h2 {
    font-size: 1.8rem;
  }
}
.motion-problem {
  background: #f7f7f7;
  padding: 90px 20px;
  font-family: 'Montserrat', sans-serif;
}

.motion-problem-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.motion-problem h2 {
  font-size: 34px;
  color: var(--motion-black);
  margin-bottom: 25px;
}

.motion-problem-intro {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.motion-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.motion-problem-item {
  background: var(--motion-white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.motion-problem-item span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--motion-red);
  margin-bottom: 10px;
}

.motion-problem-item p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.motion-problem-close {
  margin-top: 60px;
  font-size: 17px;
  color: var(--motion-black);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BENEFICIOS */
.benefits {
  padding: 60px 6%;
  text-align: center;
}

.benefits-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ======== PROPUESTA DE VALOR ======== */

:root {
  --motion-white: #ffffff;
  --motion-red: #ec1212;
  --motion-black: #111111;
}

.motion-hero {
  background: var(--motion-white);
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.motion-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.motion-text {
  flex: 1;
}

.motion-text h1 {
  font-size: 42px;
  color: var(--motion-black);
  line-height: 1.2;
}

.motion-text h1 span {
  color: var(--motion-red);
}

.motion-sub {
  font-size: 18px;
  margin-top: 20px;
  color: var(--motion-black);
  font-weight: 600;
}

.motion-desc {
  font-size: 16px;
  margin-top: 15px;
  color: #333;
  line-height: 1.6;
}

.motion-quote {
  margin-top: 25px;
  font-style: italic;
  color: var(--motion-black);
  border-left: 4px solid var(--motion-red);
  padding-left: 15px;
}

.motion-btn {
  margin-top: 30px;
  display: inline-block;
  background: var(--motion-red);
  color: var(--motion-white);
  padding: 15px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.motion-btn:hover {
  background: #ec1212;
  transform: translateY(-2px);
}

.motion-image {
  flex: 1;
  text-align: center;
}

.motion-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.motion-how {
  background: var(--motion-white);
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.motion-how-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.motion-how h2 {
  font-size: 34px;
  color: var(--motion-black);
  margin-bottom: 20px;
}

.motion-how-intro {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.motion-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.motion-step {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
}

.motion-step h3 {
  color: var(--motion-red);
  margin-bottom: 10px;
  font-size: 18px;
}

.motion-step p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.motion-how-close {
  margin-top: 50px;
  font-size: 16px;
  color: var(--motion-black);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.motion-zones {
  background: var(--motion-white);
  padding: 90px 20px;
  font-family: 'Montserrat', sans-serif;
}

.motion-zones-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.motion-zones h2 {
  font-size: 34px;
  color: var(--motion-black);
  margin-bottom: 15px;
}

.motion-zones-intro {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.motion-zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.motion-zone {
  background: #f9f9f9;
  padding: 25px 15px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.motion-zone:hover {
  transform: translateY(-5px);
}

.motion-zone img {
  width: 70px;
  margin-bottom: 15px;
}

.motion-zone span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--motion-red);
}

.motion-zones-close {
  font-size: 16px;
  color: var(--motion-black);
  max-width: 700px;
  margin: 0 auto;
}

.motion-testimonials {
  background: #f7f7f7;
  padding: 90px 20px;
  font-family: 'Montserrat', sans-serif;
}

.motion-testimonials-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.motion-testimonials h2 {
  font-size: 34px;
  color: var(--motion-black);
  margin-bottom: 15px;
}

.motion-testimonials-intro {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.motion-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.motion-testimonial {
  background: var(--motion-white);
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}

.motion-testimonial p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.motion-testimonial span {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--motion-red);
}

.motion-testimonials-close {
  margin-top: 60px;
  font-size: 16px;
  color: var(--motion-black);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {

  /* Contenedores generales */
  .motion-container,
  .motion-problem-container,
  .motion-how-container,
  .motion-zones-container,
  .motion-testimonials-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* HERO */
  .motion-container {
    flex-direction: column;
    text-align: center;
  }

  .motion-text h1 {
    font-size: 30px;
  }

  .motion-image {
    margin-top: 40px;
  }

  /* Sección 2 – Problema */
  .motion-problem-grid {
    grid-template-columns: 1fr;
  }

  /* Sección 3 – Cómo actúa */
  .motion-steps {
    grid-template-columns: 1fr;
  }

  /* Sección 4 – Zonas */
  .motion-zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sección 5 – Testimonios */
  .motion-testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Texto */
  h2 {
    font-size: 26px;
  }

  p {
    font-size: 16px;
  }

  .motion-btn {
    width: 100%;
    text-align: center;
  }

}

/* CTA FINAL */
.cta-final {
  padding: 60px 6%;
  text-align: center;
}

.red-band {
  margin-top: 32px;
  height: 12px;
  width: 100%;
  background: var(--red);
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  text-decoration: none;
  z-index: 9999;
}

/* ======== DESKTOP (≥ 768px) ======== */
@media (min-width: 768px) {

  .hero {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    padding: 80px 10%;
  }

  .hero-image {
    justify-content: flex-end;
  }

  .cta-primary {
    width: auto;
  }

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-cards {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}

.motion-hero,
.motion-hero * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.motion-btn {
  background: var(--motion-red) !important;
  color: #fff !important;
}



.urgency-bar{
  background:#2b333e;
  color:#ffffff;
  text-align:center;
  padding:8px 12px;
  font-weight:600;
  letter-spacing:.3px;
}

.benefits-quick{
  margin-top:14px;
  padding-left:18px;
}
.benefits-quick li{
  margin:6px 0;
  font-weight:600;
}


.testimonials{ padding:40px 0; }
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}
.testimonial{
  background:#ffffff;
  border-radius:14px;
  padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}
.testimonial-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.testimonial-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}
.testimonial-name{
  font-weight:700;
}
.testimonial-location{
  font-size:12px;
  opacity:.7;
}
.testimonial-text{
  margin-top:6px;
}


.oferta{ padding:48px 0; background:#ffffff; }
.oferta h2{ text-align:center; margin-bottom:6px; }
.oferta-sub{ text-align:center; margin-bottom:24px; color:#333; }
.oferta-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.oferta-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,0.05);
  position:relative;
}
.oferta-card.destacada{
  border:2px solid #ec1212;
  transform:scale(1.03);
}
.badge{
  position:absolute;
  top:-10px;
  left:16px;
  background:#ec1212;
  color:#fff;
  padding:4px 10px;
  border-radius:6px;
  font-size:12px;
  font-weight:700;
}
.badge-secundario{
  display:inline-block;
  margin:6px 0 10px 0;
  background:#ffe9e9;
  color:#ec1212;
  padding:4px 8px;
  border-radius:6px;
  font-weight:600;
  font-size:12px;
}
.oferta-img{ width:100%; height:auto; margin-bottom:8px; }
.precio-anterior{
  text-decoration:line-through;
  color:#000;
  opacity:.7;
}
.precio-actual{
  color:#ec1212;
  font-size:28px;
  font-weight:800;
  margin:4px 0 8px 0;
}
.btn-oferta{
  display:block;
  text-align:center;
  background:#ec1212;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  margin-top:10px;
}
.btn-oferta:hover{ filter:brightness(0.9); }

.countdown-section {
  background: #ffffff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.countdown-container {
  border: 2px solid #ec1212;
  border-radius: 14px;
  padding: 30px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.countdown-label {
  color: #000;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 18px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.time-box {
  background: #ec1212;
  color: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  min-width: 80px;
}

.time-box span {
  font-size: 36px;
  font-weight: 700;
  display: block;
}

.time-box small {
  font-size: 12px;
  letter-spacing: 1px;
}

.separator {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.countdown-subtext {
  margin-top: 18px;
  font-size: 14px;
  color: #000;
}
