body {
  font-family: 'Signika', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
  letter-spacing: 0.3px;
  line-height: 1.6;  
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #0c613d;
}

h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #0c613d;
}

header.bartop {
  background: #fff;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.logo img {
  width: 150px;
  margin: 5px auto;
  display: block;
}

b{
  color: #ee4000; 
}

section.hero {
  background-image: url('images/bg.jpg');
  color: #fff;
  padding: 10px 20px 40px;
  text-align: center;
}

.video-container {
  width: 50%;
  margin: 20px auto;
  position: relative;
  padding-bottom: 28.125%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  background: #ee4000;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1em;
  transition: background 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn:hover {
  background: #f8642e; 
}

.sobre {
  padding: 10px 20px 40px;
  background: #f9f9f9;
  text-align: center;
}

.sobre-blocos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.bloco {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 300px;
}

.cta-center {
  margin-top: 20px;
}

.galeria {
  padding: 20px 20px;
  text-align: center;
  background-color: #ffffff;
}

.galeria h2 {
  margin-bottom: 30px;
}

.galeria-principal img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius:5px;
  margin-bottom: 0px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.galeria-imagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  max-width: 100%;
  box-sizing: border-box;
}

.galeria-imagens img {
  width: 90px;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
  .galeria-imagens img {
    width: 70px;
    float: left;
  }
}

.fly-info {
  background: #f9f9f9;
  padding: 10px 20px 40px;
  text-align: center;
}

.fly-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.fly-texto, .fly-mapa {
  flex: 1 1 45%;
}

.fly-info .btn {
  margin-top: 30px;
}

footer {
  background: #0c613d;
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {

  h1 {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .video-container {
    width: 90%;
    padding-bottom: 50.625%;
  }

  .sobre-blocos, .fly-container {
    flex-direction: column;
  }

  .bloco, .fly-texto, .fly-mapa {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .bloco h3{
    font-size: 1.5em;
  } 

  .bloco p{
    font-size: 1.1em;
  } 
}