body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f0ff;
  color: #333;
}

/* Carrusel */
#carousel-slides {
  display: flex;
  width: 300%; /* o 100% * cantidad de slides */
  transition: transform 1.5s ease-in-out;
}
#carousel-slides > div {
  min-width: 100%;
}

/* Contenedor general */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
  flex-wrap: wrap;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #6b21a8;
  font-weight: bold;
}

.logo-img {
  height: auto;
  width: 360px;
  display: block;
}

/* Navegación */
.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  color: #6b21a8;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #9333ea;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #6b21a8;
  cursor: pointer;
}

/* Secciones */
.section {
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

/* Beneficios */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.benefits-list li {
  background: #f3e8ff;
  border-left: 5px solid #9333ea;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  color: #4b0082;
  transition: transform 0.2s ease;
}

.benefits-list li:hover {
  transform: scale(1.03);
  background: #ede9fe;
}

.benefits-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.benefit-box {
  flex: 1;
  min-width: 300px;
  background-color: #f3e8ff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box h3 {
  color: #6b21a8;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.benefit-box small {
  display: block;
  color: #9333ea;
  font-weight: 500;
}

.benefit-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.benefit-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.benefit-box li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}

/* Tipos de caja */
.benefit-box.educacion {
  background-color: #e0f2fe;
}
.benefit-box.educacion h3 {
  color: #1e40af;
}
.benefit-box.educacion small {
  color: #3b82f6;
}
.benefit-box.turismo {
  background-color: #fef3c7;
}
.benefit-box.turismo h3 {
  color: #92400e;
}
.benefit-box.turismo small {
  color: #ca8a04;
}

/* Formulario de contacto */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  padding: 0.75rem;
  background: #6b21a8;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #9333ea;
}

.success {
  color: green;
  font-weight: bold;
  margin-top: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #6b21a8;
  color: white;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .benefits-boxes {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #ddd;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 0.5rem 0;
    text-align: left;
  }
}
