:root {
  --color-primario: #23a6d5;
  --color-secundario: #23d5ab;
  --color-texto: #222;
  --color-acento: #ff9800;
  --max-ancho: 800px;
  font-family: 'Segoe UI', sans-serif;
}

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

body {
  background: linear-gradient(to bottom, var(--color-primario), var(--color-secundario));
  background-size: cover;
  min-height: 100vh;
  color: var(--color-texto);
  line-height: 1.6;
  padding: 2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.container {
  max-width: var(--max-ancho);
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
}

h1, h2 {
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.2rem;
  margin: 1rem 0;
}

section {
  margin-bottom: 3rem;
}

ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-acento);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ffc26a;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .container {
    padding: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .intro {
    font-size: 1rem;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

input, select, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-wa-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #25D366;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.cta-wa-button:hover {
  background-color: #1ebe5d;
}

.cta-wp-inline {
  background: rgba(37, 211, 102, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

#cta-destacado {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

form label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.video-short-section {
  text-align: center;
  margin: 2rem auto;
}

.video-short-cover {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  background-image: url('https://escaperoom.com.co/images/portada-short-bienestar.webp');
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto 1.5rem auto;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
