:root{
  --verde:#134e4a;
  --dorado:#bfa46f;
  --blanco:#ffffff;
  --gris:#f5f5f5;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  width:100%;
  background:var(--blanco);
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  z-index:1000;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:15px;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:var(--verde);
}

.logo img{
  height:65px;
}

/* MENU */
.menu{
  display:flex;
  gap:25px;
  align-items:center;
}

.menu a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:.3s;
}

.menu a:hover{
  color:var(--verde);
}

/* BOTON */
.btn-nav{
  background:var(--verde);
  color:white !important;
  padding:10px 18px;
  border-radius:6px;
}

.btn-nav:hover{
  background:var(--dorado);
}

/* HAMBURGUESA */
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:var(--verde);
  color:white;
  padding:50px 20px 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.footer h3, .footer h4{
  margin-bottom:10px;
  color:var(--dorado);
}

.footer a{
  display:block;
  color:white;
  text-decoration:none;
  margin-bottom:5px;
}

.footer-bottom{
  text-align:center;
  margin-top:30px;
  font-size:14px;
  opacity:.7;
}

.footer-bottom2{
  text-align:center;
  margin-top:10px;
  font-size:14px;
  opacity:.7;
}

.footer-bottom3{
  text-align:center;
  margin-top:10px;
  font-size:14px;
  opacity:.7;
}

/* RESPONSIVE */
@media(max-width:768px){

  .menu{
    position:absolute;
    top:70px;
    right:0;
    background:white;
    flex-direction:column;
    width:100%;
    display:none;
    padding:20px;
  }

  .menu.active{
    display:flex;
  }

  .hamburger{
    display:block;
  }

  .logo{
    margin:auto;
    text-align:center;
  }

}

</style>

/* PREGUNTAS FRECUENTES */

.faq-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px;
  font-size: 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #222;
  transition: 0.3s;
}

.faq-question:hover {
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 150px;
}