/* GENERAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fffdf5;
  color: #333;
}

/* WELCOME */
.welcome-page {
  background: linear-gradient(135deg, #ffe082, #ffcc80);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.welcome-container h1,
.welcome-container p {
  animation: fadeIn 2s ease-in-out;
}

.btn-entrar {
  text-decoration: none;
  background: #ff9800;
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-entrar:hover {
  background: #e65100;
}

/* HEADER */
header {
  background: #ffb74d;
  color: white;
  padding: 30px;
  text-align: center;
}

/* SECCIONES */
main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #e65100;
}

.main-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}

/* BENEFICIOS Y LISTAS */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* TESTIMONIOS */
.testimonios blockquote {
  background: #fff3e0;
  padding: 15px;
  border-left: 5px solid #ffa000;
  margin: 10px 0;
  border-radius: 5px;
}

/* FORMULARIO */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background-color: #ffa726;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background-color: #fb8c00;
}

/* FRASE FINAL */
.frase-final {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  background: #ffe0b2;
  padding: 15px;
  border-radius: 10px;
}

/* FOOTER */
footer {
  background: #ffe0b2;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #444;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ANIMACIÓN */
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
