* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* Header - Se usa */
.section.cc-home-wrap.titulo-anticipo {
  background: none;
  padding: 20px 10px;
  margin-bottom: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Header - Se usa */
.project-overview-header .intro-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #5957b8;
  color: #ffffff;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

/* Header - Se usa */
.project-overview-header .heading-jumbo h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header - Se usa */
.project-overview-header.cc-project-3-header {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contenedor FAQ - Se usa */
.faq-container {
  max-width: 1200px;
  margin: 50px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Sección FAQ - Se usa */
.faq-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  display: none;
}

.faq-section.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

/* Items FAQ - Se usan */
.faq-item {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #667eea;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.question-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a2e;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon::before {
  content: '+';
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 28px 24px;
}

.answer-content {
  padding-top: 10px;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Animación - Se usa en faq-section.active */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Se usa */
@media (max-width: 768px) {
  .faq-section {
    padding: 25px 20px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .question-text {
    font-size: 1.05rem;
  }
}