/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

/* =========================
   HERO CONTENEDOR
========================= */
.hero {
  width: 100%;
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* =========================
   COLUMNA TEXTO
========================= */
.hero .content {
  flex: 1;
  max-width: 650px;
  text-align: left;
}

/* TEXTO INDECOPI */
.hero .badge {
  all: unset; /* elimina estilos Bootstrap */
  display: block;
  color: #3684d7;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: clamp(18px, 4vw, 32px);
}

/* TÍTULO */
.hero h1 {
  font-size: 54px;
  line-height: 1.15;
  margin: 20px 0;
  color: #0b1b33;
  font-weight: 800;
}

/* PALABRA DESTACADA */
.highlight {
  color: #3684d7;
}

/* SUBTÍTULO */
.subtitle {
  font-size: 22px;
  font-weight: 800;
  color: #0b1b33;
  margin-bottom: 18px;
}

/* DESCRIPCIÓN */
.description {
  color: #555;
  margin-bottom: 25px;
  font-size: 16px;
}

/* LISTA */
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3684d7;
  font-weight: bold;
}

/* =========================
   CTA
========================= */
.cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* BOTÓN */
.btn-whatsapp {
  background: #3684d7;
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.btn-whatsapp:hover {
  background: #124376;
}

/* PRECIO */
.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

.price-value {
  font-size: 40px;
  font-weight: 800;
  color: #0b1b33;
}

.price-value .currency {
  font-size: 20px;
  vertical-align: super;
}

.price-value .period {
  font-size: 16px;
  color: #666;
}

/* RATING */
.rating {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

/* =========================
   COLUMNA IMAGEN
========================= */
.hero .mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero .mockup img {
  width: 100%;
  max-width: 600px;
  border-radius: 18px;
}

/* VERIFICADO */
.hero .verified {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* =========================
   RESPONSIVE REAL (IPHONE OK)
========================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .hero {
    flex-direction: column;
    padding: 32px 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-whatsapp {
    width: 100%;
  }

  .price-value {
    font-size: 32px;
  }

  .hero .mockup img {
    max-width: 100%;
  }

  .hero .verified {
    right: 12px;
    bottom: 12px;
  }
}
.hero-inner {
  width: 100%;
  max-width: 1200px; /* controla el ancho */
  padding: 0 32px;   /* espacio lateral REAL */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    padding: 0 16px;
    gap: 40px;
  }
}

