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

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

/* 🔥 EVITA BUGS DE 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;
}

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

.logo{
  width:65px;
}

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

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

/* BOTÓN */
.btn{
  background:#22c55e;
  padding:8px 15px;
  border-radius:6px;
  font-weight:600;
}

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

.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:#111827;
  border-radius:10px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

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

.disabled{
  opacity:.5;
}

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

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

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

/* BLOQUES */
.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;
}

/* efecto hover pro */
.faq-card:hover{
  transform:translateY(-5px);
}

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

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

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

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

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

/* ================= CONTACTO ================= */
.contacto{
  text-align:center;
  padding:50px 20px;
  background:#0f172a;
}

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

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

  nav a{
    margin:0 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;
  }

}

/* ================= ABOUT (ACERCA DE NOSOTROS) ================= */

.about{
    background: url('banner.jpg') center center / cover no-repeat;
    height: 500px;
    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;
}

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

    .about{
        height: 300px;
    }

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

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

    .highlight{
        font-size:18px;
    }
    
    /* AJUSTE FINAL BANNER (ARREGLA TU PROBLEMA) */
.about{
    background: url('banner.jpg') center / contain no-repeat;
    background-color:#0b0f1a;
    }

}

@media(max-width:768px){

    .about{
        height: 250px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

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

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

}