@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

#servicos, #contato, #localizacao, #sobre, #redes-sociais {
    max-width: 100%;
    padding: 2rem 1rem;
}

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
  background-color: #fff;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panfleto {
  background-color: #f5f5f5;
  background-image: 
    url('texture.webp'),
    radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 0, 0, 0.03) 2px, transparent 2px);
  background-size: 
    auto,
    3px 3px,
    25px 25px;
  background-repeat: repeat;
  width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}


.logo {
  width: auto;
  height: 80px;
  display: block;
  margin: 0 auto 1rem;
}

h1 {
  font-family: 'Lora', serif;
  color: #005c6e;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-family: 'Raleway', sans-serif;
  color: #333;
  margin: 0.2rem 0;
  font-size: 1.2rem;
}

.photo {
  max-width: 100%;
  max-height: 600px;
  height: auto;
  display: block;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .panfleto {
    width: 90%;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .panfleto {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    height: 60px;
  }

  .photo {
    max-height: 300px;
    object-fit: cover;
  }
}

.descricao {
  margin: 1rem auto;
  text-align: center;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #28a745;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  margin: 2rem auto;
  width: fit-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-button i {
  font-size: 1.5rem;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.whatsapp-button:hover {
  background-color: #218838;
}

/* Seção Serviços */
#servicos {
  padding: 2rem 1rem;
  text-align: center;
}

#servicos h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #005c6e;
  margin-bottom: 1.5rem;
}

.servicos-container {
  /* max-width: 900px; */
  margin: 0 auto;
}

.servicos-grade {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.servicos-item {
  flex: 1 1 calc(33.333% - 30px);
  margin: 15px;
  text-align: center;
  padding: 0;
}

.servicos-item i {
  font-size: 2.5rem;
  color: #005c6e;
  margin-bottom: 1rem;
}

.servicos-item h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.servicos-item p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .servicos-container {
    max-width: 100%;
  }

  .servicos-grade {
    gap: 1rem;
  }

  .servicos-item {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .servicos-item {
    flex: 1 1 100%;
  }
}

/* Seção Contato */
#contato {
  padding: 2rem 1rem;
  text-align: center;
}

#contato h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #005c6e;
  margin-bottom: 1rem;
}

#contato p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  color: #333;
  margin: 0.5rem 0;
}

#contato i {
  color: #005c6e;
  margin-right: 0.5rem;
}

#contato > div > p > a {
  color: #333;
  text-decoration: underline;
}

#contato > div > p > a:hover {
  color: #005c6e;
  text-decoration: underline;
}

/* Seção Localização */
#localizacao {
  padding: 2rem 1rem;
  text-align: center;
}

#localizacao h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #005c6e;
  margin-bottom: 1rem;
}

#localizacao p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  color: #333;
  margin: 0.5rem 0;
}

.localizacao-container iframe {
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .localizacao-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .localizacao-container iframe {
    height: 200px;
  }
}

/* Seção Sobre */
#sobre {
  padding: 2rem 1rem;
  text-align: center;
}

#sobre h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #005c6e;
  margin-bottom: 1.5rem;
}

#sobre p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
  margin: 1rem auto;
  max-width: 800px;
  text-align: justify;
}

.sobre-credito {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1.5rem;
  text-align: center !important;
}

.sobre-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.sobre-links a {
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.sobre-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
  border-radius: 10px;
  background-color: #fff;
}

.sobre-links a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 92, 110, 0);
  transition: background-color 0.3s;
}

.sobre-links a:hover::after {
  background-color: rgba(0, 92, 110, 0.5);
}

.sobre-links a:hover img {
  opacity: 0.8;
}

@media (max-width: 480px) {
    .sobre-links a {
        width: 80px;
        height: 80px;
    }
}

/* Rodapé */
.rodape {
    height: 50px;
    text-align: center;
    background: #333;
    padding: 10px;
}

.rodape p {
  color: #fff !important;
  font-size: 0.8em !important;
}

.rodape a {
    color: #fff;
    text-decoration: underline;
}

.rodape a:hover {
    color: #005c6e;
    text-decoration: underline;
}

/* Seção Redes Sociais */
#redes-sociais {
    padding: 2rem 1rem;
    text-align: center;
}

#redes-sociais h3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #005c6e;
    margin-bottom: 1.5rem;
}

.redes-sociais-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.redes-sociais-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #005c6e;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.redes-sociais-links a:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.redes-sociais-links .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.redes-sociais-links .facebook {
    background-color: #3b5998;
    color: #fff;
}

/* Menu padrão */
.navegacao {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #005c6e;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.navegacao ul {
  max-width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navegacao li {
  margin: 0 1rem;
}

.navegacao a {
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s;
}

.navegacao a:hover {
  color: #ffcc00;
}

.navegacao.escondido {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

/* Botão hambúrguer (oculto em telas grandes) */
.navegacao-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.navegacao-toggle:focus {
  outline: none;
}

/* Menu Responsivo */
@media (max-width: 768px) {
  .navegacao {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .navegacao ul {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .navegacao ul.active {
    display: flex;
  }

  .navegacao li {
    margin: 0.5rem 1rem;
  }

  .navegacao a {
    font-size: 1rem;
  }

  .navegacao-toggle {
    display: block;
    margin-left: auto;
  }
}

