/* --- Reset básico y fuente --- */
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: #fdfcfc;
  color: #333;
}

/* --- Showcase con fondo y overlay --- */
#showcase {
  background: url('IMAGES/bg.jpg') no-repeat center center/cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#showcase .overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#showcase h1 {
  font-size: 2.5rem;
  color: #6633cc;
  margin-bottom: 10px;
}

#showcase p {
  font-size: 1.2rem;
  color: #555;
}

/* --- Boxes con íconos y sombra --- */
#boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  background: #f7f4ff;
}

.box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  margin: 15px;
  width: 280px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.box i {
  font-size: 50px;
  color: #9a66e5;
  margin-bottom: 15px;
}

.box h3 {
  color: #6633cc;
  margin-bottom: 10px;
}

/* --- Newsletter / Suscripción --- */
#newsletter {
  background: #6633cc;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#newsletter h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

#newsletter p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#newsletter form input[type="email"] {
  padding: 10px;
  width: 280px;
  max-width: 100%;
  border: none;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 1rem;
}

#newsletter form input[type="submit"] {
  padding: 10px 20px;
  background: #ffb347;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#newsletter form input[type="submit"]:hover {
  background: #ffa726;
}

/* --- Footer --- */
footer {
  background: #4a2b93;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #boxes {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
  }

  #showcase h1 {
    font-size: 2rem;
  }

  #newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #newsletter form input[type="email"] {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
/* Header */
header {
  background-color: #fff;
  color: #333;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff6f61;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #ff6f61;
}

