/* Reset */
* {
  /* margin: 0; */
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero con gradiente animado */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* background: linear-gradient(270deg, #ff6b6b, #f9ca24, #6ab04c, #22a6b3, #be2edd); */
   background-image:url("../assets/img/vendeporwhatsap.jpg");
  /* background-size: 100% 100%; */
  animation: gradientMove 20s ease infinite;
  color: white;
  background-repeat: repeat;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-floating {position:fixed; bottom:20px; right:20px; z-index:999; box-shadow:0 5px 20px rgba(0,0,0,0.3); animation: pulse 2s infinite;}
@keyframes pulse {0% {transform:scale(1);}50%{transform:scale(1.1);}100%{transform:scale(1);}}
.container {width:100%; max-width:1200px; margin:0 auto; padding:60px 0;}
.text-center {text-align:center;}

.hero .overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
 
}

.hero .overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #ff6b00;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: #ff4500;
  transform: scale(1.05);
}

.btn-large {
  font-size: 1.2rem;
  padding: 20px 35px;
}

/* Beneficios */
.benefits {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
  background-image:url("../assets/img/venderWhatsapp.jpg");
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit {
  background: white;
  padding: 20px;
  border-radius: 12px;
  /* width: 250px; */
  width: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.benefit:hover {
  transform: translateY(-10px);
}

/* CTA */
.cta {
  background: #1e90ff;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #ff6b00;
  text-decoration: none;
}

a {
  margin: 0 5px 0 5px;
}