/* GenXus Consulting - Component Styles */

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  background: var(--color-black);
  color: var(--color-beige);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.nav__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav__logo-text {
  color: var(--color-beige);
}

.nav__logo-accent {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  color: var(--color-beige);
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--color-beige);
  cursor: pointer;
  padding: 0.5rem;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-beige-dark) 100%);
  padding: 8rem 0 6rem;
  text-align: center;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-black);
}

.hero__subtitle {
  font-size: 1.5rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-beige);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  font-weight: 300;
}

.section--dark .section__subtitle {
  color: var(--color-beige-dark);
}

/* ══════════════════════════════════════════
   CARDS & SERVICES
══════════════════════════════════════════ */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service__description {
  color: var(--color-gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════ */
.process {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step__content h3 {
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq__question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq__answer {
  color: var(--color-gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--color-black);
  color: var(--color-beige);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer__content {
  margin-bottom: 2rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer__link {
  color: var(--color-beige);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__copy {
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  
  .nav__burger {
    display: block;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__subtitle {
    font-size: 1.25rem;
  }
  
  .services {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
  }
}
