/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.5;
}

.min-h-screen {
  background-color: #000000;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.dark {
  background-color: #18181b;
}

.partners {
  background-color: #3636369c;
}

/* Tipografia */
h1 {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Navegação */
nav {
  padding: 1.5rem 0;
  position: relative;
  background-color: #000000;
  z-index: 1000;
}

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

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
}

.separator {
  width: 1px;
  height: 2rem;
  background-color: #27272a;
  margin: 0 0.5rem;
}

.separator-vertical {
  width: 1px;
  height: 1.5rem;
  background-color: #27272a;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #8b5cf6;
}

/* Links de contato */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links.large {
  justify-content: center;
  margin-top: 3rem;
}

.social-links a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #8b5cf6;
}

/* Icons */
.icon {
  width: 2rem;
  height: 2rem;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.purple {
  color: #8b5cf6;
}

.white {
  color: #ffffff;
}

.top.icon img {
  width: 30px;
  height: auto;
  margin-top: 10px;
}

/* Logo imagem */
.logo-image {
  width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Botões */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid #8b5cf6;
  border-radius: 0.5rem;
  color: #8b5cf6;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: #8b5cf6;
  color: #ffffff;
}

/* Seção de Herói */
.hero {
  padding: 5rem 0;
}

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

.hero-text {
  width: 50%;
}

.hero-image {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

/* Efeito de Hover (Sobreposição) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 3rem;
  border-radius: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card.dark {
  background-color: #27272a;
}

.value-card.dark:hover {
  background-color: #8b5cf6;
}

/* Seção de Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 1rem;
  background-color: #8b5cf6;
  border-radius: 1.6rem;
  transition: background-color 0.3s;
}

.service-card:hover {
  background-color: #9c96ac;
}

/* Seção de Equipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
}

.team-member {
  text-align: center;
}

.member-image-container {
  width: 16rem;
  height: 16rem;
  margin: 0 auto 1rem;
  position: relative;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}

.member-image-container:hover {
  transform: scale(1.05);
}

.image-border {
  display: none;
}

.member-image-container:hover .image-border {
  transform: rotate(8deg);
}

.member-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  position: relative;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: #9ca3af;
}

/* Seção de Contato */
.text-center {
  text-align: center;
}

#contact-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza o botão */
  max-width: 600px;
  margin: 0 auto;
  padding-top: 1.5rem;
  gap: 1rem;
  transition: background-color 0.3s, transform 0.2s;
  padding-bottom: 2rem;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  width: 500px;
  padding: 10px;
  border: 1px solid #8b5cf6;
  border-radius: 5px;
  background-color: #18181b;
  color: #ffffff;
  padding: 12px; /* Aumentando um pouco o espaçamento interno */
  font-size: 1rem; /* Deixa o texto mais legível */
}

#contact-form button {
  display: inline-flex;
  width: auto; /* Ajuste automático ao conteúdo */
  padding: 12px 20px; /* Melhor espaçamento */
  border: 1px solid #8b5cf6;
  border-radius: 0.5rem;
  color: #ffffff;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  justify-content: center; /* Alinhamento adequado */
}

#contact-form button:hover {
  background-color: #8b5cf6;
  color: #ffffff;
}

/* Rodapé */
footer {
  border-top: 1px solid #27272a;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col p {
  color: #9ca3af;
  margin-top: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-links a,
.contact-links .address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-links a:hover {
  color: #8b5cf6;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: #8b5cf6;
}

.hours {
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #27272a;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Seção de parceiros */
.partners-section {
  width: 100%;
  text-align: center;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Carrossel de parceiros */
.partners-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Container de parceiros com rolagem */
.partners-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  max-width: 900px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

.partners-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

/* Cards de parceiros */
.partner-card {
  flex-shrink: 0;
  background-color: white;
  width: 200px; /* Aumente a largura */
  height: 200px; /* Aumente a altura */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 1rem; /* Aumente o padding para mais espaço interno */
}

.partner-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Botões de navegação */
.nav-button {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 2rem;
  padding: 0.5rem;
  transition: opacity 0.3s;
}

.nav-button:hover {
  opacity: 0.7;
}

.nav-button-left {
  margin-right: 10px;
}

.nav-button-right {
  margin-left: 10px;
}

/* Links de redes sociais Mobile */
.mobile-social-links {
  display: none;
}

/* Design responsivo */
@media (max-width: 1024px) {
  .values-grid,
  .services-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    margin-top: 3rem;
  }

  .logo-image {
    width: 300px;
  }

  .btn-outline {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .values-grid,
  .services-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .member-image-container {
    width: 12rem;
    height: 12rem;
  }

  .footer-grid {
    gap: 3rem;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .nav-left {
    flex: 1;
  }

  .nav-right {
    display: flex;
    align-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #27272a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 0.5rem 0;
    width: 100%;
    text-align: center;
  }

  .social-links {
    display: none;
  }

  .mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #27272a;
  }

  .mobile-social-links a {
    color: #ffffff;
    transition: color 0.3s ease;
  }

  .mobile-social-links a:hover {
    color: #8b5cf6;
  }

  .separator-vertical {
    display: none;
  }

  .logo-image {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .nav-content {
    flex-direction: row;
    padding: 0.5rem 0;
  }

  .nav-left {
    flex: 1;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn-outline {
    width: auto;
    justify-content: center;
  }

  .subtitle {
    display: none;
  }

  .separator {
    display: none;
  }

  .logo-image {
    width: 150px;
  }
}

/* Estilos para o rodapé */
footer .logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

footer .logo-container img {
  width: 30px;
  height: auto;
  margin-top: 10px;
}

footer .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}