.seccion-faq {
  background-color: #fffaf5;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.seccion-faq h2 {
  text-align: center;
  color: #e56c00;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.seccion-faq details {
  display: block;
  width: 100%;
  background: white;
  border: 2px solid #fdd077;
  border-radius: 12px;
  margin: 10px 0;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.seccion-faq details:hover {
  background-color: #fff3da;
}

.seccion-faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: #3b3b3b;
  list-style: none;
  font-family: 'Poppins', sans-serif;
}

.seccion-faq summary::marker {
  display: none;
}

.seccion-faq details[open] summary {
  color: #e56c00;
}

.seccion-faq p {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #444;
  font-family: 'Segoe UI', sans-serif;
}


/* HEADER */
.main-header {
  background-color: #fffaf5;
  border-bottom: 1px solid #ff9966;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #3b3b3b;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.nav-menu a:hover .nav-icon {
  transform: scale(1.1);
}

.nav-menu a:hover {
  color: #ff9966;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ff9966;
}

.menu-toggle {
  display: none;
}
.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}


img {
  -webkit-user-drag: none;
  user-select: none;
}

/* LOGO */
.brand-logo {
  width: 60px;
  height: auto;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    font-size: 30px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    transition: transform 0.3s ease;
  }

  .menu-toggle:checked + .menu-icon::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff9966;
  }

  .menu-toggle:checked + .menu-icon {
    color: transparent; /* Oculta el ícono hamburguesa original */
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background-color: #fffaf5;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 70px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
  }

  .menu-toggle:checked ~ .nav-menu {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nav-menu a {
    font-size: 1.1rem;
    color: #3b3b3b;
  }

  .main-header .container {
    justify-content: space-between;
  }
}


/* FOOTER */
.footer {
  background-color: #fffaf5;
  border-top: 1px solid #ff9966;
  padding: 30px 20px 10px;
  margin-top: 40px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.social-icons a img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
  filter: grayscale(20%);
}

.social-icons a img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.footer-text {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}




.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
