/* ===== ESTILOS DO HEADER E NAVEGAÇÃO ===== */

.header {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
}

.nav-menu {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  background-color: var(--secondary);
}

/* Menu Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: var(--text-2xl);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* ===== ESTILOS DO FOOTER ===== */

.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-12) 0 var(--space-6);
  margin-top: var(--space-20);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact-item::before {
  content: '📧'; /* Placeholder para ícone */
  font-size: var(--text-lg);
}

.contact-item.phone::before {
  content: '📞';
}

.contact-item.instagram::before {
  content: '📷';
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-6);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ===== SEÇÕES PRINCIPAIS ===== */

.section {
  padding: var(--space-16) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    padding: var(--space-4);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav {
    position: relative;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .section {
    padding: var(--space-12) 0;
  }
}

