@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8e9f4;
  color: #444;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* HEADER */
.main-header {
  background: linear-gradient(90deg, #d87aa7, #bba4d9);
  color: #fff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 1.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.logo {
  width: 100px;
  height: auto;
  border-radius: 50%;
  border: 3px solid white;
}

.header-text h1 {
  font-size: 2.2rem;
  margin: 0;
  color: #fff;
}

.header-text p {
  margin: 0.3rem 0 0;
  color: #fff;
}

/* HERO */
.hero {
  background: url('../img/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(216, 122, 167, 0.55); /* filtro rosado */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #fbe0a1;
  color: #444;
  padding: 0.9rem 1.7rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #fff;
  color: #d87aa7;
}

/* SECCIONES */
.info-section {
  padding: 2.5rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.info-section.alt {
  background-color: #a7d1eb20; /* celeste translúcido */
  border-radius: 25px;
}

.info-section h2 {
  color: #d87aa7;
  text-align: center;
  margin-bottom: 1rem;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li::before {
  content: "🌈 ";
}

.info-section p a {
  color: #d87aa7;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #d87aa7, #bba4d9);
  color: white;
  text-align: center;
  padding: 1.5rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  z-index: 10;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ANIMACIÓN FADE-IN */
.info-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.info-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .hero {
    padding: 4rem 1rem;
    background-position: center;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .btn-primary {
    padding: 0.7rem 1.2rem;
  }
}
