@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* RESET GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F4F2E9;
}

/* HEADER */
.site-header {
  background-color: #F4F2E9;
  padding: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10rem;
}

.logo img {
  width: auto;
  height: 200px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #002D92;
  font-weight: 500;
  font-size: 20px;
  white-space: nowrap;
}

.btn-contato {
  background-color: #002D92;
  color: #F4F2E9;
  font-weight: 500;
  font-size: 20px;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-contato:hover {
  background-color: #001f66;
}

/* HERO SECTION */
.hero {
  background-color: #F4F2E9;
  width: 100%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.hero-text {
  flex: 1;
  padding-left: 10rem;
  padding-right: 2rem;
  max-width: 45%;
}

.hero-text h1 {
  font-size: 55px;
  color: #002D92;
  font-weight: 400;
  line-height: 1.2;
}

.hero-text .bold {
  font-weight: 500;
}

.hero-btn {
  display: inline-block;
  background-color: #002D92;
  color: #F4F2E9;
  font-size: 20px;
  font-weight: 400;
  padding: 1rem 2rem;
  border-radius: 90px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s;
  margin-top: 2rem;
}

.hero-btn:hover {
  background-color: #001f66;
}

.hero-image {
  flex: 1;
  max-width: 50%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CLIENTES */
.clientes {
    background-color: #3956A4;
    padding: 4rem 2rem;
  }
  
  .clientes-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .clientes h2 {
    font-size: 36px;
    color: #F4F2E9;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }
  
  .clientes-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .clientes-logos img {
    height: 60px;
    object-fit: contain;
    max-width: 100%;
    filter: brightness(0) invert(1); /* deixa os logos brancos (remova se tiver versão clara) */
    transition: transform 0.3s ease;
  }
  
  .clientes-logos img:hover {
    transform: scale(1.05);
  }


  /* SERVIÇOS */
.servicos {
    background-color: #F4F2E9;
    padding: 4rem 2rem;
  }
  
  .servicos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .servicos h2 {
    font-size: 36px;
    color: #002D92;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 4rem;
  }
  
  .servicos-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    position: relative;
  }
  
  .card {
    flex: 1;
    text-align: left;
    padding: 0 1rem;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .emoji-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: inline-block;
  }
  
  
  .card h3 {
    font-size: 28px;
    color: #002D92;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
  }
  
  .card p {
    font-size: 16px;
    color: #002D92;
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Divisores entre cards */
  .divider {
    width: 3px;
    background-color: #D4E759;
    height: auto;
  }
  
  /* Botão reutilizável */
  .btn-primario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #002D92;
    color: #F4F2E9;
    font-size: 20px;
    font-weight: 400;
    padding: 1rem 2rem;
    border-radius: 90px;
    text-decoration: none;
    margin: 4rem auto 0;
    transition: background 0.3s ease;
  }
  
  .btn-primario:hover {
    background-color: #001f66;
  }
  
  .btn-primario img {
    height: 16px;
    width: auto;
  }
  
/* PROJETOS */
.projetos {
    background-color: #F4F2E9;
    padding: 4rem 2rem;
  }
  
  .projetos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .projetos h2 {
    font-size: 36px;
    color: #002D92;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }
  
  .projetos-galeria {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  
  .projetos-galeria img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
  }
  

/* QUEM FAZ ACONTECER */
.quem-faz-acontecer {
    background-color: #F4F2E9;
    padding: 0;
  }
  
  .quem-faz-container {
    display: flex;
    width: 100%;
    height: 100%;
  }
  
  .quem-faz-imagem {
    flex: 1;
  }
  
  .quem-faz-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .quem-faz-texto {
    flex: 1;
    background-color: #3956A4;
    color: #F4F2E9;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .quem-faz-texto h2 {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: left;
    color: #F4F2E9;
  }
  
  .quem-faz-texto p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: left;
    color: #F4F2E9;
  }
  
  .quem-faz-texto .btn-primario {
    align-self: flex-start;
    margin: 0;
  }
  
/* FOOTER */
.site-footer {
    background-color: #F4F2E9;
    font-size: 14px;
    color: #002D92;
  }
  
  .footer-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0; 
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .footer-logo {
    width: auto;
    height: 200px;
  }
  
  .footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: #002D92;
    font-size: 16px;
    font-weight: 500;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a img {
    width: 24px;
    height: 24px;
  }
  
  /* Contatos */
  .footer-contatos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    border: 3px solid #002D92;
    border-radius: 50px;
    padding: 1rem 2rem;
    width: fit-content;
    margin-bottom: 3rem;
  }
  
  .contato-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 16px;
  }
  
  .contato-item img {
    width: 20px;
    height: 20px;
  }
  
  .contato-divider {
    width: 2px;
    height: 20px;
    background-color: #002D92;
  }
  
  /* Rodapé final */
  .footer-bottom {
    background-color: #D4E759;
    color: #002D92;
    padding: 1rem 5rem;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-bottom strong {
    font-weight: 700;
  }
  

/* RESPONSIVO */
@media (max-width: 1024px) {
  .header-container {
    margin: 0 2rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    padding: 2rem;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .servicos-cards {
    gap: 1.5rem;
  }

  .divider {
    width: 2px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 15px;
  }

  .btn-primario {
    font-size: 18px;
    padding: 0.8rem 1.5rem;
  }

}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }

  .btn-contato {
    font-size: 18px;
    padding: 0.5rem 1.2rem;
  }
  .clientes-logos {
    justify-content: center;
    gap: 2rem;
  }

  .clientes-logos img {
    height: 50px;
  }
  .servicos-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    text-align: center;
    padding: 0;
  }

  .card-header {
    justify-content: center;
  }

  .divider {
    display: none;
  }

  .btn-primario {
    margin-top: 3rem;
  }
  .projetos-galeria {
    flex-direction: column;
  }

  .projetos-galeria img {
    max-width: 100%;
  }
  .quem-faz-container {
    flex-direction: column;
  }
  
  .quem-faz-imagem,
  .quem-faz-texto {
    width: 100%;
  }
  
  .quem-faz-texto {
    padding: 2rem;
    text-align: center;
  }
  
  .quem-faz-texto h2,
  .quem-faz-texto p {
    text-align: center;
  }
  
  .quem-faz-texto .btn-primario {
    align-self: center;
    margin-top: 2rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-contatos {
    flex-direction: column;
    gap: 1rem;
    border-radius: 30px;
    padding: 1rem;
  }
  
  .contato-divider {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  
}
