/* Contenedor principal: mismo look & feel del sitio */
.contenido {
  background: #fff7f2;
  border-radius: 22px;
  box-shadow: 0 2px 28px #f5d6c733;
  max-width: 760px;
  width: 98%;
  margin: 28px auto;
  padding: 40px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Títulos y textos con la paleta de Mi Kailash */
.contenido h1 {
  color: #b88258;
  text-align: center;
  font-size: 2.15rem;
  margin-bottom: 6px;
  letter-spacing: 1.2px;
}

.contenido h2 {
  color: #a76a4b;
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.28rem;
  letter-spacing: .3px;
}

.contenido p,
.contenido ul {
  font-size: 1.08rem;
  color: #543524;
  line-height: 1.65;
}

.contenido ul {
  padding-left: 22px;
  margin: 0 0 6px 0;
}

.contenido li {
  margin-bottom: 6px;
}

/* Frase de impacto */
.frase-destacada {
  color: #b88258;
  font-size: 1.12rem;
  font-style: italic;
  text-align: center;
  margin: 8px 0 18px 0;
}

/* Botones */
.volver {
  margin-top: 20px;
  align-self: flex-start;
  background: #ffd7b5;
  color: #b88258;
  padding: 9px 20px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  transition: background .18s, color .18s, transform .1s;
  font-size: 1rem;
  box-shadow: 0 1px 5px #ffe1cf70;
}

.volver:hover {
  background: #f38c5a;
  color: #fff;
  transform: translateY(-1px);
}

.video-boton {
  text-align: center;
  margin-top: 30px;
}

.btn-video {
  display: inline-block;
  background: #ffd7b5;
  color: #b88258;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 8px #ffe1cf80;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-video:hover {
  background: #f38c5a;
  color: #fff;
  transform: scale(1.05);
}

.cta-whatsapp {
  align-self: flex-end;
  background: #ffd7b5;
  color: #b88258;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  transition: background .18s, color .18s, transform .1s;
  font-size: 1rem;
  box-shadow: 0 2px 10px #ffe1cf88;
}

.cta-whatsapp:hover {
  background: #f38c5a;
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 800px) {
  .contenido {
    padding: 26px 12px 18px 12px;
  }

  .contenido h1 {
    font-size: 1.64rem;
  }

  .contenido h2 {
    font-size: 1.12rem;
  }

  .contenido p,
  .contenido ul {
    font-size: 1rem;
  }

  .cta-whatsapp {
    align-self: center;
    margin-top: 8px;
  }
}