body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0b0f1a;
  color: white;
}


.hero-slider {
  position: relative;
  height: 420px;
  overflow: hidden;
  width: 100%;
}
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide:nth-child(1) { animation: fade 21s infinite 0s; }
.slide:nth-child(2) { animation: fade 21s infinite 7s; }
.slide:nth-child(3) { animation: fade 21s infinite 14s; }

@keyframes fade {
  0%, 33.33% { opacity: 1; }
  33.34%, 100% { opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.logo {
  max-width: 300px;
  
  margin: 0 auto 10px;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #00ff88;
}

.subtexto {
  color: #ffffff;
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: bold;
}

.btn, button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #00ff88;
  color: #111827;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.form-section {
  background: #111827;
  padding: 40px 20px;
  text-align: center;
}
.form-section h2 {
  color: #00ff88;
}
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input, textarea {
  padding: 12px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background: #1f2937;
  color: white;
}

.info-section {
  background-color: #0f172a;
  padding: 60px 20px;
  text-align: center;
}
.info-section h2 {
  font-size: 2em;
  color: #00ff88;
  margin-bottom: 20px;
}
.info-section p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

.footer {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  padding: 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #25D366;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.whatsapp-float img {
  border-radius: 50%;
}
.whatsapp-text {
  font-size: 14px;
}

.social-links {
  text-align: center;
  margin-top: 15px;
}
.instagram-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.instagram-link:hover {
  color: #f09433;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.feature-box {
  text-align: center;
  max-width: 250px;
}
.feature-box img {
  margin-bottom: 15px;
}
.feature-box h3 {
  color: #00ff88;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.feature-box p {
  color: #ccc;
  font-size: 1em;
}

@media screen and (max-width: 600px) {
  .btn, button {
    width: 100%;
  }
  .logo {
    max-width: 200px;
    height: auto;
  }
  .hero-content h1 {
    font-size: 1.6em;
  }
}
