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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#0b0f1a;
  color:#fff;
  overflow-x:hidden;
}

/* EVITA BUGS IMÁGENES */
img{
  max-width:100%;
  height:auto;
  display:block;
}

/* ================= CONTENEDOR ================= */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */
.header{
  background:#0f172a;
  border-bottom:2px solid #22c55e;
  position:sticky;
  top:0;
  z-index:999;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo{
  width:60px;
}

/* MENU */
nav{
  display:flex;
  align-items:center;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:20px;
  font-weight:500;
  transition:.3s;
}

nav a:hover{
  color:#22c55e;
}

/* BOTÓN */
.btn{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  color:#fff;
  box-shadow:0 5px 15px rgba(34,197,94,0.4);
  transition:.3s;
}

.btn:hover{
  transform:translateY(-2px);
}

/* ================= HERO ================= */
.hero{
  height:80vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
  background: radial-gradient(circle at top, #1e3a8a, #020617);
}

/* EFECTO PRO */
.hero::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:#22c55e;
  filter:blur(120px);
  top:-100px;
  left:-100px;
  opacity:.3;
}

.hero h1{
  font-size:42px;
  font-weight:700;
}

.hero p{
  margin-top:10px;
  color:#cbd5e1;
}

/* ================= CARDS ================= */
.cards{
  margin-top:25px;
  display:flex;
  gap:15px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  padding:15px 25px;
  background:rgba(255,255,255,0.05);
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  transition:.3s;
}

.card:hover{
  background:#22c55e;
  transform:scale(1.05);
}

.disabled{
  opacity:.5;
}

/* ================= FAQ ================= */
.faq{
  background:#f8fafc;
  padding:80px 20px;
}

.faq-container{
  max-width:900px;
  margin:auto;
}

.faq-title{
  text-align:center;
  font-size:34px;
  margin-bottom:40px;
  color:#16a34a;
  font-weight:700;
}

.faq-card{
  background:#ffffff;
  padding:25px;
  border-radius:14px;
  margin-bottom:25px;
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
  transition:.3s;
}

.faq-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.faq-card h3{
  color:#111827;
  margin-bottom:12px;
  font-size:20px;
}

.faq-card p{
  color:#374151;
  margin-bottom:10px;
  line-height:1.6;
  font-size:16px;
}

.importante{
  color:#dc2626;
  font-weight:600;
}

.resaltado{
  color:#16a34a;
  font-weight:600;
}

.btn-whatsapp{
  display:inline-block;
  margin-top:12px;
  padding:10px 15px;
  background:#22c55e;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

/* ================= ABOUT ================= */
.about{
  background:url('banner.jpg') center center / cover no-repeat;
  height:450px;
  position:relative;
}

.about-overlay{
  background:rgba(0,0,0,0.65);
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

.about-content{
  max-width:700px;
}

.about-content h2{
  font-size:32px;
  color:#22c55e;
  margin-bottom:10px;
}

.about-content p{
  font-size:16px;
}

.highlight{
  font-size:20px;
  font-weight:700;
}

/* ================= CONTACTO ================= */
.contacto{
  background:#f8fafc;
  padding:80px 20px;
  display:flex;
  justify-content:center;
}

.contacto-box{
  background:#fff;
  width:100%;
  max-width:500px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  text-align:center;
  animation:fadeIn 1s ease;
}

.contacto-title{
  background:#22c55e;
  color:#fff;
  padding:15px;
  font-size:22px;
  font-weight:700;
}

.telefono{
  margin:20px 0;
  font-size:18px;
  font-weight:600;
  color:#0f172a;
}

.contacto-icons{
  display:flex;
  justify-content:center;
  gap:25px;
  margin-bottom:20px;
}

.contacto-icons img{
  width:45px;
  transition:.3s;
}

.contacto-icons img:hover{
  transform:scale(1.2);
}

.facebook-box{
  padding:15px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.3);
  z-index:999;
  transition:.3s;
}

.whatsapp-float img{
  width:35px;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

/* ================= ANIMACIÓN ================= */
@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

  .nav{
    flex-direction:column;
    gap:10px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  nav a{
    margin:5px 10px;
    font-size:14px;
  }

  .logo{
    width:50px;
  }

  .hero{
    height:60vh;
    padding:20px;
  }

  .hero h1{
    font-size:26px;
  }

  .hero p{
    font-size:14px;
  }

  .faq-title{
    font-size:26px;
  }

  .faq-card{
    padding:18px;
  }

  .faq-card h3{
    font-size:18px;
  }

  .faq-card p{
    font-size:14px;
  }

  /* 🔥 AQUÍ SE ARREGLÓ TU PROBLEMA DEL BANNER */
  .about{
    height:260px;
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#0b0f1a;
  }

  .about-content h2{
    font-size:22px;
  }

  .about-content p{
    font-size:14px;
  }
  
  /* ================= WHATSAPP BAR ================= */
.whatsapp-bar{
    background:#22c55e;
    text-align:center;
    padding:15px;
    font-weight:700;
}

.whatsapp-bar p{
    margin-bottom:5px;
    color:#fff;
    font-size:18px;
    text-transform:uppercase;
}

.whatsapp-bar a{
    color:#fff;
    font-size:20px;
    text-decoration:underline;
}

}