/* Fuente y reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fbe3e3;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #ff1493; /* Fucsia */
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.navbar .nav-links {
  list-style: none;
  display: inline-flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navbar .nav-links li {
  display: inline;
}

.navbar .nav-links a {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s;
}

.navbar .nav-links a:hover {
  color: #f0e68c; /* Amarillo suave */
  transform: translateY(-2px);
}

.navbar .nav-links a:active {
  color: #ff6347; /* Rojo tomate */
}

/* Banner */
.banner {
  background-color: #f7f5f8; /* mismo lila de la página */
  border-radius: 12px;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.banner-text {
  flex: 1;
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra todo horizontalmente */
  text-align: center;  /* centra texto */
}


.banner-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.banner-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Botón */
.btn {
  background-color: #7a2cff;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s;
  box-shadow: 0 4px 10px rgba(122,44,255,0.4);
}

.btn:hover {
  background-color: #9b4dff;
  box-shadow: 0 6px 14px rgba(155,77,255,0.6);
}

/* Secciones info */
.section-info {
  background: white;
  max-width: 1200px; /* mismo tamaño que el banner */
  margin: 2.5rem auto; /* centrado horizontal */
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}


.section-info h2 {
  color: #6b22ff;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.8rem;
}

.section-info p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #444;
}

.section-info ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

.section-info li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Redes sociales */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
  min-width: 110px;
  text-align: center;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.instagram:hover {
  background: linear-gradient(45deg, #dd2a7b, #f58529, #515bd4, #8134af);
}

.tiktok {
  background-color: #010101;
}

.tiktok:hover {
  background-color: #333333;
}

.btn-whatsapp {
  background-color: #25d366 !important;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.6) !important;
}

.btn-whatsapp:hover {
  background-color: #1da851 !important;
  box-shadow: 0 6px 14px rgba(29, 168, 81, 0.8) !important;
}

/* Footer */
footer {
  background-color: #ff1493;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .section-info {
    margin: 1.5rem 1rem;
    padding: 1.5rem 1rem;
  }
}
