/* Estilo general */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #00aaff;
  padding: 1rem 2rem;
  text-align: center;
  position: sticky;
  top: 0;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
}

header ul {
  list-style: none;
  display: flex;
}

header ul li {
  margin-left: 2rem;
}

header ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

/* Paquetes */
#paquetes {
  padding: 2rem;
  background-color: #fff;
}

#paquetes h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.paquete-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.paquete {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  margin: 1rem;
  padding: 1rem;
  width: 30%;
  text-align: center;
  border-radius: 8px;
}

.paquete img {
  width: 100%;
  border-radius: 8px;
}

.paquete h3 {
  margin: 1rem 0;
}

.paquete button {
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

/* Botón WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-btn img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

section {
  padding: 3rem 2rem;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  text-align: center;
  font-size: 1rem;
}
