body {
  margin: 0px;
}
.faq-section {
      background: #0f172a;
      color: #e5e7eb;
      padding: 100px 20px;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 400;
      text-align: center;
      margin-bottom: 60px;
      color: #f8fafc;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding: 20px 0;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: #f1f5f9;
      text-align: left;
      font-family: Georgia, serif;
      font-size: 1.1rem;
      cursor: pointer;
      padding: 10px 0;
      transition: opacity 0.3s ease;
    }

    .faq-question:hover {
      opacity: 0.8;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: justify; 
    }

    .faq-answer p {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cbd5f5;
      padding: 10px 0 0 0;
    }

    /* Estado activo */
    .faq-item.active .faq-answer {
      max-height: 1000px;
      opacity: 1;
    }
    
    
.faq-cta {
  margin-top: 80px;
  text-align: center;
}

.faq-cta p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #cbd5f5;
  margin-bottom: 25px;
  line-height: 1.6;
}

.faq-cta a {
  display: inline-block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fafc;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

.faq-cta a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}



































/* LOGO */

.site-logo {
  position: fixed;
  top: 28px;
  left: 32px;
  z-index: 1000;

  padding: 8px 12px;
  border-radius: 12px;

  background: rgba(16,21,16,0.25);
  backdrop-filter: blur(6px);

  opacity: 0;
  transform: translateY(-6px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.6s ease;
}

/* visible mientras hay scroll */

.site-logo.visible {
  opacity: 0.8;
  transform: translateY(0);
}

.site-logo:hover {
  opacity: 1;
}

.site-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

/* MOBILE */

@media (max-width: 640px) {

  .site-logo {
    top: 18px;
    left: 18px;
    padding: 6px 10px;
  }

  .site-logo img {
    height: 42px;
  }

}