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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f7f7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #01497c;
  color: #fff;
  padding: 20px 0;
}

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

.logo-header {
  width: 60px;
  height: auto;
  margin-right: 15px;
}

header h1 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  background: #90e0ef;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero .btn {
  background: #01497c;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
}

.content-section {
  background: #fff;
  margin: 20px 0;
  padding: 40px 20px;
  border-radius: 8px;
}

.content-section h2 {
  margin-bottom: 15px;
  color: #01497c;
}

.content-section p {
  font-size: 1.05rem;
}

/* Fundadora - imagem ao lado do texto */
#fundadora .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

#fundadora img {
  width: 110px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Imagem da fachada pequena */
.fachada-img {
  width: 100%;
  max-width: 400px;
  margin: 10px auto 0;
  display: block;
  border-radius: 8px;
}

footer {
  background: #01497c;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .header-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  header h1 {
    text-align: center;
  }

  #fundadora .container {
    flex-direction: column;
    align-items: center;
  }

  #fundadora img {
    margin-bottom: 15px;
  }
}

/* Layout da seção Contato lado a lado */
.contato-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  gap: 30px;
}

.fachada-lateral {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Animações suaves */
.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #023e63;
  transform: scale(1.05);
}

nav a {
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffc300;
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-flex {
    flex-direction: column;
    align-items: center;
  }

  .fachada-lateral {
    margin-bottom: 15px;
  }
}
