* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.cabecalho {
    background-color: #144565;
  padding: 15px 20px;
  text-align: center;
}

.logo {
  max-width: 180px;
}

.main-header {
  color: black;
  text-align: center;
  padding: 50px 20px;
}

.main-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.main-header p {
  font-size: 1rem;
  font-weight: 300;
}

.areas-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.area img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 300px;
}

.area-texto {
  width: 50%;
}

.area-texto h2 {
  font-size: 1.5rem;
  color: #0c1c2e;
  margin-bottom: 15px;
}

.area-texto p {
  font-size: 1rem;
  line-height: 1.6;
}

.area.invertida {
  flex-direction: row-reverse;
}

/* Footer */
.rodape {
  background-color: #144565;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-container h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-item img {
  width: 24px;
  height: 24px;
}

.footer-icon {
  filter: invert(1); /* deixa os ícones brancos */
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
  .area {
    flex-direction: column;
  }

  .area.invertida {
    flex-direction: column;
  }

  .area img,
  .area-texto {
    width: 100%;
  }
}
