/* style.css */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

.logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 300px;
}

.hero {
  background: linear-gradient(to right, #012c41, #02405c);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .btn {
  background: #f1c40f;
  color: #012c41;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero .btn:hover {
  background: #e1b200;
}

.galeria {
  background: #f9f9f9;
  padding: 3rem 0;
  text-align: center;
}

.galeria h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.img-box img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.img-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 0.5rem;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-box:hover span {
  opacity: 1;
}

.img-box:hover img {
  transform: scale(1.05);
}

.descricao h2,
.cta h2,
.quem-somos h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.descricao p,
.cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: justify;
}

.descricao-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.descricao-flex .texto {
  flex: 1 1 55%;
}

.descricao-flex .imagem {
  flex: 1 1 40%;
}

.descricao-flex img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta {
  background: #012c41;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.cta .btn {
  background: #f1c40f;
  color: #012c41;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  margin: 0.5rem;
  display: inline-block;
}

.quem-somos p {
  font-size: 0.95rem;
  text-align: justify;
  margin-bottom: 1rem;
}

.quem-somos p:last-child {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.quem-somos .contato {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.quem-somos a {
  color: #012c41;
  text-decoration: none;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

.quem-somos a:hover {
  text-decoration: underline;
}

.social {
  text-align: center;
  margin-top: 1rem;
}

.social p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.instagram-icon {
  width: 32px;
  height: 32px;
}

.mapa {
  background: #f4f4f4;
  padding: 3rem 0;
  text-align: center;
}

.mapa h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mapa-iframe iframe {
  width: 100%;
  max-width: 800px;
  height: 300px;
  border: none;
}

footer {
  background: #02405c;
  color: white;
  text-align: center;
  padding: 1.5rem;
}