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

body {
  margin: 0;
  padding: 0;
  padding-top: 0; /* altura da navbar */
  font-family: 'Baloo 2', cursive;
  background: #fdfdfd;
  color: #333;
  overflow-x: hidden;
}

.sidebar-invisible {
  display: none !important;
}

/* Header e Navegação */
/*header {} Verificar depois isso*/

/* Barra de navegação fixa */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  /*background-color: #56cffc;*/
  background-color: #002B7F;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Logo à esquerda com 70px */
.logo img {
  height: 70px;
}

/* Links do menu */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links li a {
  /*color: #002B7F;*/
   color: #fff;
  text-decoration: none;
  font-size: 21px;
  font-weight: 600;

  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00BFFF;
}

/* Ícone hambúrguer (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
}

/* Estilos responsivos para mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px; /* mesma altura da navbar */
    left: 0;
    right: 0;
    background-color: #002B7F;
    flex-direction: column;
    display: none;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }
}
/*Final da NAVBAR*/


/* Seção Hero (banner/slideshow) */
.hero {
 /* margin-top: 64px;*/
  text-align: center;
  padding: 0;
  padding-top: 80px; /* um pouco mais que a altura da navbar */
    padding-bottom: 20px; /* um pouco mais que a altura da navbar */

  background: none;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  /*border-radius: 10px;*/
  
  max-height: 700px;
  object-fit: cover;
}

.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
/*Final Seção Hero (banner/slideshow) */


/* Container de seções */

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  /*margin-top: 60px; *//* aumenta o espaço acima do título */
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*.section-title .titulo {
                font-size: 48px;
      color: #002B7F; 
    }*/
    .titulo, .titulo1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 48px;
  color: #002B7F;
}

.titulo1 {
  margin-bottom: 10px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
   margin: 30px 20px 0 20px; /* topo 30px, laterais 20px, sem margem embaixo */
}

.card {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  gap: 20px;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}



.card img {
  width: 80px;
  height: 80px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}
.card:hover img {
  transform: scale(1.1);
}

.card-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-texto h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: #333;
}
.card:nth-child(1) {
  background-color: #f8f0c5; /* roxo claro */
}
.card:nth-child(2) {
  background-color: #b3e5fc; /* roxo claro */
}
.card:nth-child(3) {
  background-color: 	#f8bbd0; /* roxo claro */
}
.card-texto p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 480px) {
  .card {
    flex-direction: column;
    text-align: center;
  }

  .card-texto {
    align-items: center;
  }

  .card img {
    margin-bottom: 15px;
  }
}

/* CTA Section */
  /* Resetando margens e padding globais */
  /** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }*/

  body {
    width: 100%;
    overflow-x: hidden; /* Impede estouro horizontal */
  }
/*
  .cta-section {
  background-image: url('/solzinho_florescer/CTAfig1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  padding: 60px 5vw;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 5vh; 
}

.cta-buttons a {
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-whatsapp {
  background-color: #0e8405;
  color: #fff;
}

.btn-agendar {
  background-color: #ee9211;
  color: #fff;
}

@media screen and (min-width: 1600px) {
  .cta-section {
    padding: 80px 10vw;
    min-height: 600px;
  }

  .cta-section h2 {
    font-size: 3em;
  }

  .cta-section p {
    font-size: 1.4em;
  }

  .cta-buttons a {
    font-size: 1.5em;
    padding: 20px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .cta-section {
    padding: 50px 6vw;
  }

  .cta-section h2 {
    font-size: 2.2em;
  }

  .cta-section p {
    font-size: 1.3em;
  }

  .cta-buttons a {
    font-size: 1.2em;
    padding: 18px 35px;
  }
}


@media screen and (max-width: 768px) {
  .cta-section {*/
    /*padding: 40px 5vw;*/
 /*   background-size: contain;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .cta-section p {
    font-size: 1.1em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .cta-buttons a {
    font-size: 1.1em;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
  }
}*/

  .cta-section {
    background-image: url('/solzinho_florescer/CTAfig1.png');
  background-size: contain; 
min-height: 500px; 
 background-position: center center; 
  background-repeat: no-repeat;
    padding: 60px 5vw;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
      margin-top: 30px;
  }

  .cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
     
  }

  .cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 280px; 
  }

  .cta-buttons a {
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    cursor: pointer;
  }

  .btn-whatsapp {
    background-color: #0e8405;
    
    color: #fff;
  }

  .btn-agendar {
    background-color: #ee9211;
    color: #fff;
  }


  @media screen and (min-width: 1600px) {
    .cta-section {
      padding: 60px 10vw;
    }

    .cta-section h2 {
      font-size: 3em;
    }

    .cta-section p {
      font-size: 1.4em;
    }

    .cta-buttons a {
      font-size: 1.5em;
      padding: 20px 40px;
    }
  }

/*
  @media screen and (max-width: 1024px) {
    .cta-section {
      padding: 50px 8vw;
    }

    .cta-section h2 {
      font-size: 2.2em;
    }

    .cta-section p {
      font-size: 1.3em;
    }

    .cta-buttons a {
      font-size: 1.3em;
      padding: 18px 35px;
    }
  }
@media (max-width: 768px) {
   .section-title {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .titulo, .titulo1 {
    font-size: 32px;
  }

  .localizacao-texto {
    padding: 0 15px;
    font-size: 0.95rem;
  }

  .localizacao-titulo {
    font-size: 24px;
  }
}

 
  @media screen and (max-width: 768px) {
    .cta-section {*/
      /*padding: 40px 5vw;*/
      /*margin-top: auto;
       background-size: contain; 
    min-height: 300px;       
    }

    .cta-section h2 {
      font-size: 2em;
    }

    .cta-section p {
      font-size: 1.2em;
    }

    .cta-buttons a {
      font-size: 1em;
      padding: 12px 24px;
    }
    .cta-buttons {
    margin-top: 160px;
    gap: 16px;
  }
  }*/
  @media (max-width: 1024px) {
  .cta-section {
    padding: 40px 4vw;
    background-size: cover;
    min-height: 400px;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .cta-section p {
    font-size: 1em;
  }

  .cta-buttons {
    margin-top: 200px;
  }

  .cta-buttons a {
    font-size: 1.1em;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    background-size: contain;
    background-position: center;
    /*padding: 40px 20px;*/
    height: auto;
    max-width: 100%;
    /*margin-top: 20px;*/

    /*padding: 30px 5vw;
    background-size: cover;
    min-height: 350px;*/
  }

  .cta-section h2 {
    font-size: 1.5em;
  }

  .cta-section p {
    font-size: 0.95em;
  }

  .cta-buttons {
    margin-top: 160px;
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 300px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 20px 5vw;
    min-height: 300px;
  }

  .cta-section h2 {
    font-size: 1.3em;
  }

  .cta-section p {
    font-size: 0.9em;
  }

  .cta-buttons {
    margin-top: 120px;
    gap: 12px;
  }

  .cta-buttons a {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}


  /* Formulário */
  #formulario-agendamento {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 20px;
  }
  #formulario-agendamento.show {
    display: block;
    opacity: 1;
  }

  form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  form input,
  form textarea {
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #000;
  }

  form button {
    padding: 15px;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }


/* Galeria e cartões */
.seccao-cartoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}

.lista-cartoes {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
  flex: 1;
  flex-wrap: wrap;
}

.cartao-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  /*flex-direction: column; *//* texto acima da imagem */
  flex-direction: column-reverse; /* texto acima da imagem */
  align-items: center;
  gap: 50px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center; /* centraliza texto */
  
}

/*.cartao-item img {
  width: 700px;
  height: 400px;
  flex-shrink: 0;
  
}*/
.cartao-item:nth-child(1) img {
 width: 250px;
  height: 400px;
     flex-shrink: 0;
     
 
}
.cartao-item:nth-child(2) img {
   width: 370px;
     /*margin-top: 50px; *//* espaço abaixo da imagem */
  height: 370px;
   flex-shrink: 0;
    margin-bottom: 30px; /* espaço abaixo da imagem */
 
}
.cartao-item:nth-child(3) img {
  width: 250px;
  height: 400px;
   flex-shrink: 0;
   margin-left: 30px; /* ajuste esse valor conforme necessário */
 
}
.cartao-item:nth-child(4) img {
 /* margin-top: 50px; *//* espaço abaixo da imagem */
  width: 420px;
  height: 370px;
   flex-shrink: 0;
    margin-bottom: 30px; /* espaço abaixo da imagem */
 
}


/*.icone-lateral img {
  width: 200px;
  height: auto;
}*/
.icone-lateral {
  background: transparent; /* deixa o fundo transparente */
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px; /* ajuste o tamanho do card */
  height: 220px; /* para manter proporção */
   border: none; /* sem borda */
  margin-left: 0; /* margem esquerda zero */
}

.icone-lateral img {
  width: 300px;
  height: 550px;
  display: block;
  }
.cartao-item:nth-child(1) {
  background-color: #ffb29a; /* laranja suave */
}

.cartao-item:nth-child(2) {
  background-color: #aaf9f1; /* verde água */
}

.cartao-item:nth-child(3) {
  background-color: #c1a1f8; /* roxo claro */
}
.cartao-item:nth-child(4) {
  background-color: #fba6c3; /* rosa médio */
}
/* Responsividade */
@media (max-width: 768px) {
  .seccao-cartoes {
    flex-direction: column;
    align-items: center;
  }

  .icone-lateral {
    margin-top: 30px;
  }
}


/* Vídeo explicativo */
.video-explicativo {
  text-align: center;
  padding: 5vw 3vw;
  background-color:   #002B7F;/*  #003366; Remova ou altere se o fundo do site for diferente */

  color: #f0f0f0;
}

.video-explicativo h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 2.5vw;
  color: #FFD700;
}

.video-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.video-container iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 8px;
}
/*Final do video*/

/* FAQ */
/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 40px 20px;
  /*padding-bottom: 20px;*/
  /*padding-top: 80px;*/
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-box {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  padding: 24px;
  border-left: 6px solid #FFC107;
  transition: all 0.4s ease;
  text-align: left;
}

.faq-box:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-box[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.pagina-faq .faq-section {
  margin-top: 60px;
}

.faq-box summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  list-style: none;
  padding-right: 30px;
  color: #002B7F;
}

.faq-box summary:focus {
  outline: none;
}

.faq-box summary::-webkit-details-marker {
  display: none;
}

.faq-box summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.faq-box[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-box p {
  margin-top: 18px;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
  animation: fadeIn 0.4s ease-in-out;
}

/* Animação ao abrir */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão "Saber Mais" (opcional) */
.faq-button-wrapper {
  text-align: right;
  margin-top: 15px;
  padding-right: 10px;
}

.faq-button {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #002B7F;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.faq-button:hover {
  background-color: #e6b800;
  transform: scale(1.03);
}
/*Final do FAQ*/

/* Seção Localização */
/* Seção Localização */
.secao-localizacao {
  padding: 30px 5vw;
  background-color: #fff;
}

.localizacao-texto {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.localizacao-titulo {
  font-size: 32px;
  font-weight: 700;
  color: #002B7F;
  margin-bottom: 10px;
}

.localizacao-descricao {
  font-size: 16px;
  color: #555;
}

.localizacao-mapa {
  width: 100vw;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.localizacao-botao-wrapper {
  text-align: center;
  margin-top: 20px;
}

.localizacao-botao {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #002B7F;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.localizacao-botao:hover {
  background-color: #f5c600;
  transform: translateY(-2px);
}

.localizacao-aviso {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}


#contato {
 /* padding: 60px 5vw;*/
  background-color: #fff;
    padding-top: 90px; /* um pouco mais que a altura da navbar */

}

.contato-intro {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.contato-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: #002B7F;
  margin-bottom: 10px;
}

.contato-intro p {
  font-size: 16px;
  color: #555;
}

.contato-mapa {
  width: 100vw;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contato-botao-wrapper {
  text-align: center;
  margin-top: 20px;
}

.contato-botao {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #002B7F;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contato-botao:hover {
  background-color: #ffc600;
  transform: scale(1.02);
}

.contato-aviso {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}

/* Footer */
footer {
  background-color: #002B7F; /* azul escuro */
  color: white;
  padding: 40px 20px;
  width: 100vw;
  margin: 0;
  text-align: center;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

footer h3 {
  margin-bottom: 20px;
  color: white;
}

.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links li,
.footer-social li {
  margin: 0;
}

footer a {
  color: #FFD700; /* amarelo ouro */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
  color: #FFC107; /* amarelo mais claro no hover */
  outline: none;
}

.footer-copy {
  font-size: 14px;
  margin-top: 8px;
  color: white;
}


/* Modal */
/* Modal */
.modal {
  display: none; /* Inicialmente escondido */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: 5% auto; /* centralizado vertical e horizontalmente */
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Animação fade para o modal */
.fade {
  animation: fade 1.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Botão WhatsApp fixo no canto inferior direito */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.whatsapp-button img {
  display: block;      /* remove espaços em linha */
  width: 100%;         /* a imagem ocupa 100% do container */
  height: 100%;        /* mantém a proporção da altura */
  object-fit: contain; /* mantém proporção, não corta */
  border-radius: 50%;  /* garante que fique redonda */
}


.whatsapp-button:hover {
  transform: scale(1.1);
}


/* Media Queries */
/*@media (max-width: 768px) {
  .nav-links {}
  .nav-links.show {}
  .hamburger {}
}

@media (max-width: 1024px) {
  .cta-section {}
}

@media (min-width: 1600px) {
  .cta-section {}
}*/

/*pagina sobre*/
/* Tamanhos de fonte usados no conteúdo */
.font18 {
  font-size: 20px;
}

.font14 {
  font-size: 14px;
}

 /*CSS DA PAGINA SOBRE 1*/
  .sobre-section {
  display: flex;
  flex-wrap: wrap;
    padding: 120px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #8de1ff;
  gap: 40px;
}

.sobre-section img {
  width: 600px;
    
  border-radius: 20px;
}

.sobre-section .text-container {
  max-width: 600px;
  color: #444;
}
.sobre-section h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}

.sobre-section h4.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section h4.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
/*FINAL DO CSS DA PAGINA SOBRE 1*/

/*CSS DA PAGINA SOBRE 2*/
  .sobre-section2 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 40px;
}

.sobre-section2 img {
  width: 600px;
  border-radius: 20px;
}

.sobre-section2 .text-container2 {
  max-width: 600px;
  color: #444;
}


/*FINAL DO CSS DA PAGINA SOBRE 2*/

/*CSS DA PAGINA SOBRE 3*/
  .sobre-section3 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fba8fc;
  gap: 40px;
}

.sobre-section3 img {
  width: 600px;
  border-radius: 20px;
}

.sobre-section3 .text-container3 {
  max-width: 600px;
  color: #444;
}
/*FINAL DO CSS DA PAGINA SOBRE 3*/

/*CSS DA PAGINA SOBRE 4*/

.sobre-section4 {
  display: flex;
  flex-wrap: wrap;
    padding: 120px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #8de1ff;
  gap: 40px;
}

.sobre-section4 img {
  width: 800px;
    
  border-radius: 20px;
}

.sobre-section4 .text-container {
  max-width: 600px;
  color: #444;
}
.sobre-section4 h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section4 h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
/*FINAL DO CSS DA PAGINA SOBRE 4*/

/*CSS DA PAGINA SOBRE 5*/

  .sobre-section5 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 40px;
}

.sobre-section5 img {
  width: 600px;
  border-radius: 20px;
}

.sobre-section5 .text-container5 {
  max-width: 700px;
  color: #444;
}
.sobre-section5 h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section5 h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}

/*FINAL DO CSS DA PAGINA SOBRE 5*/



/*Galeria pagina sobre*/
.sobre-container-cartoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}

.sobre-lista-itens {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
  flex: 1;
  flex-wrap: wrap;
}

.sobre-item-cartao {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column-reverse; /* texto acima da imagem */
  align-items: center;
  gap: 50px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center; /* centraliza texto */
}

.sobre-item-cartao:nth-child(1) img {
  width: 700px;
  height: 400px;
  flex-shrink: 0;
}

.sobre-item-cartao:nth-child(2) img {
  width: 240px;
  margin-top: 50px;
  height: 320px;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.sobre-item-cartao:nth-child(3) img {
  width: 500px;
  height: 400px;
  flex-shrink: 0;
  margin-left: 30px;
}

.sobre-item-cartao:nth-child(4) img {
  margin-top: 50px;
  width: 150px;
  height: 225px;
  flex-shrink: 0;
  margin-bottom: 125px;
}

.sobre-icone-flutuante {
  background: transparent;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border: none;
  margin-left: 0;
}

.sobre-icone-flutuante img {
  width: auto;
  height: 550px;
  display: block;
}

.sobre-item-cartao:nth-child(1) {
  background-color: #ffb29a;
}

.sobre-item-cartao:nth-child(2) {
  background-color: #aaf9f1;
}

.sobre-item-cartao:nth-child(3) {
  background-color: #c1a1f8;
}

.sobre-item-cartao:nth-child(4) {
  background-color: #fba6c3;
}

/* Responsividade */
@media (max-width: 768px) {
  .sobre-container-cartoes {
    flex-direction: column;
    align-items: center;
  }

  .sobre-icone-flutuante {
    margin-top: 30px;
  }
}
.sobre-titulo-G {
      font-family: 'Luckiest Guy', cursive;
     /* font-family: 'Lobster', cursive;*/
     /* font-family: 'Fredoka One', cursive;*/
      /*font-family: 'Baloo Bhaijaan 2', cursive;*/
      /*font-family: 'Cherry Swash', cursive;*/
      font-size: 48px;
      color: #002B7F; /*#d61c59 rosa forte */
    }
/*FINAL DA GALERIA PAGINA SOBRE*/


/* Botão */
  .btn-politica {
  display: block;
  margin: 20px auto;
  background-color: #00bfff;
  color: white;
  padding: 10px 20px;
  font-family: 'Baloo 2', cursive;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}
  .btn-politica:hover {
    background-color: #009acd;
  }

  /* Modal background */
  .modal-politica {
    display: none; /* escondido por padrão */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    font-family: 'Baloo 2', cursive;
  }

  /* Modal conteúdo */
  .modal-content-politica {
    background-color: #fff;
    margin: 8% auto;
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    line-height: 1.5;
  }

  /* Botão fechar */
  .close-politica {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .close-politica:hover {
    color: #00bfff;
  }

  /* Link dentro do modal */
  .modal-content-politica a {
    color: #00bfff;
    text-decoration: none;
  }
  .modal-content-politica a:hover {
    text-decoration: underline;
  }

  /* Responsivo */
  @media (max-width: 640px) {
    .modal-content-politica {
      margin: 15% 15px;
      padding: 20px;
      max-width: 90%;
    }
  }

/* ===== Política de Privacidade ===== */
.sec-politica {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Baloo 2', cursive;
  color: #333;
  line-height: 1.7;
}

.sec-politica h1 {
  font-size: 2.2rem;
  text-align: center;
  color: #007acc;
  margin-bottom: 30px;
}

.sec-politica h2 {
  font-size: 1.5rem;
  color: #007acc;
  margin-top: 30px;
  margin-bottom: 16px;
}

.sec-politica p {
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.sec-politica ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.sec-politica li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.sec-politica a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

.sec-politica a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 640px) {
  .sec-politica {
    padding: 0 15px;
  }

  .sec-politica h1 {
    font-size: 1.8rem;
  }

  .sec-politica h2 {
    font-size: 1.3rem;
  }

  .sec-politica p,
  .sec-politica li {
    font-size: 1rem;
  }
}

/*GALERIA DE IMAGENS*/
  .galeria-instagram {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }

  .galeria-instagram h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #000;
    margin-bottom: 30px;
  }

  .grid-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
  }

  @media (max-width: 1024px) {
    .grid-fotos {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .grid-fotos {
      grid-template-columns: 1fr;
    }
  }

  .grid-fotos img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .grid-fotos img:hover {
    transform: scale(1.03);
  }

  

 /* #fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 30px 20px 0 20px;
}

#fatores-diferenciais .item-beneficio {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

#fatores-diferenciais .item-beneficio:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

#fatores-diferenciais .item-beneficio:nth-child(1) { background-color: #f8f0c5; }
#fatores-diferenciais .item-beneficio:nth-child(2) { background-color: #b3e5fc; }
#fatores-diferenciais .item-beneficio:nth-child(3) { background-color: #f8bbd0; }


#fatores-diferenciais .item-beneficio h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  color: #333;
}

#fatores-diferenciais .item-beneficio p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}*/


/*#fatores-diferenciais {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 20px 30px;
  box-sizing: border-box;
}

#fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 20px 0 20px;
}

#fatores-diferenciais .item-beneficio {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

#fatores-diferenciais .item-beneficio:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

#fatores-diferenciais .item-beneficio:nth-child(1) { background-color: #f8f0c5; }
#fatores-diferenciais .item-beneficio:nth-child(2) { background-color: #b3e5fc; }
#fatores-diferenciais .item-beneficio:nth-child(3) { background-color: #f8bbd0; }

#fatores-diferenciais .item-beneficio h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  color: #333;
}

#fatores-diferenciais .item-beneficio p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}*/

/*#fatores-diferenciais {
  max-width: 80%;
  margin: 0 auto;
  padding: 40px 60px;
  box-sizing: border-box;
  background-color: #fdfdfd;
}

#fatores-diferenciais .titulo-secao {
  text-align: center;
  margin-bottom: 40px;
}

#fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
}

#fatores-diferenciais .item-beneficio {
  padding: 30px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-height: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}


#fatores-diferenciais .item-beneficio h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}


#fatores-diferenciais .item-beneficio p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

#fatores-diferenciais .item-beneficio:nth-child(1) {
  background-color: #ffb29a;
}
#fatores-diferenciais .item-beneficio:nth-child(2) {
  background-color: #aaf9f1;
}
#fatores-diferenciais .item-beneficio:nth-child(3) {
  background-color: #c1a1f8;
}
#fatores-diferenciais .item-beneficio:nth-child(4) {
  background-color: #fba6c3;
}
#fatores-diferenciais .item-beneficio:nth-child(5) {
  background-color: #ffe28a;
}
#fatores-diferenciais .item-beneficio:nth-child(6) {
  background-color: #b0e57c;
}
#fatores-diferenciais .item-beneficio:nth-child(7) {
  background-color: #ffd8a9;
}


@media (max-width: 768px) {
  #fatores-diferenciais {
    padding: 30px 20px;
  }

  #fatores-diferenciais .grid-beneficios {
    grid-template-columns: 1fr;
  }

  #fatores-diferenciais .item-beneficio {
    max-width: 100%;
  }

  #fatores-diferenciais .item-beneficio h3 {
    font-size: 1.4rem;
  }

  #fatores-diferenciais .item-beneficio p {
    font-size: 1rem;
  }
}*/

#fatores-diferenciais {
  max-width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  box-sizing: border-box;
  background-color: #fdfdfd;
}

#fatores-diferenciais .titulo {
  text-align: left;
  font-size: 48px;
  font-family: 'Luckiest Guy', cursive;
  color: #002B7F;
  margin-bottom: 40px;
  display: block;
}

#fatores-diferenciais .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

#fatores-diferenciais .item-beneficio {
  background: white;
  /*padding: 30px;*/
    padding: 60px 30px; /* top/bottom 60px, left/right 30px */

  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  min-height: 280px;
}

/* Títulos maiores */
#fatores-diferenciais .item-beneficio h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002B7F;
  margin: 0;
  font-family: 'Luckiest Guy';
}

/* Textos maiores */
#fatores-diferenciais .item-beneficio p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* Cores diferentes */
#fatores-diferenciais .item-beneficio:nth-child(1) {
  background-color: #ffb29a;
}
#fatores-diferenciais .item-beneficio:nth-child(2) {
  background-color: #aaf9f1;
}
#fatores-diferenciais .item-beneficio:nth-child(3) {
  background-color: #c1a1f8;
}
#fatores-diferenciais .item-beneficio:nth-child(4) {
  background-color: #fba6c3;
}
#fatores-diferenciais .item-beneficio:nth-child(5) {
  background-color: #ffe28a;
}
#fatores-diferenciais .item-beneficio:nth-child(6) {
  background-color: #b0e57c;
}

/* Responsividade (opcional, pois grid já se adapta bem) */
@media (max-width: 768px) {
  #fatores-diferenciais {
    padding: 30px 20px;
  }

  #fatores-diferenciais .titulo {
    font-size: 36px;
  }

  #fatores-diferenciais .item-beneficio h3 {
    font-size: 1.4rem;
  }

  #fatores-diferenciais .item-beneficio p {
    font-size: 1rem;
  }
}



/*INICIO Do CSS DO SLIDESHOW*/
.sobre-nos {
    background: #fff;
    padding: 80px 5vw;
    margin-top: 60px;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }

  .texto {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
  }

  .texto h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #111;
  }

  .texto p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
  }

  .btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn:hover {
    background: #ffc107;
    color: #000;
  }

  .slideshow {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides {
    width: 100%;
    height: 100%;
  }

  .slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide.active {
    display: block;
  }  


  .sobre-nos1 {
    background: #fff;
    padding: 40px 5vw;
    /*margin-top: 60px;*/
  }

  .container1 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
 .slideshow1 {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides1 {
    width: 100%;
    height: 100%;
  }

  .slide1 {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide1.active1 {
    display: block;
  }  


  .sobre-nos2 {
    background: #fff;
    padding: 40px 5vw;
    /*margin-top: 20px;*/
  }

  .container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
 .slideshow2 {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides2 {
    width: 100%;
    height: 100%;
  }

  .slide2 {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide2.active2 {
    display: block;
  }  


  .sobre-nos3 {
    background: #fff;
    padding: 40px 5vw;
    /*margin-top: 60px;*/
  }

  .container3 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }
 .slideshow3 {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides3 {
    width: 100%;
    height: 100%;
  }

  .slide3 {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide3.active3 {
    display: block;
  }  

 .dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .dots span {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
  }

  .dots span.active {
    background: #111;
  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .slideshow {
      width: 100%;
      height: 300px;
      margin-top: 30px;
    }

    .slide {
      height: 100%;
    }
  }
  /*FINAL DO CSS DO SLIDESHOW*/

 .container-eventos { max-width: 1100px; margin: auto; padding: 40px 20px; }
h2 { color: #1e3a8a; font-size: 2.2rem; margin-bottom: 5px; }
.evento-item { margin-bottom: 30px; border-bottom: 1px solid #fff; padding-bottom: 20px; }
.btn { background-color: #00bfff; color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 8px; }
.grid-imagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.grid-imagens img {
  width: 100%;
  /*aspect-ratio: 7.6 /8;*/ /* proporção (largura/altura) ajustável */
  object-fit: cover;
  border-radius: 8px;
}


/*Obrigado*/
#obrigado {
  max-width: 600px;
  margin: 80px auto 60px auto;
  padding: 30px 25px;
  background-color: #f7f7f7; /* fundo claro e suave */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Baloo 2', cursive, sans-serif;
  color: #333;
}

#obrigado h1 {
  font-size: 2.5rem;
  color: #009933; /* verde da identidade */
  margin-bottom: 20px;
  font-weight: 700;
}

#obrigado p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

#obrigado a {
  display: inline-block;
  padding: 14px 32px;
  background-color: #009933; /* verde */
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 153, 51, 0.3);
}

#obrigado a:hover,
#obrigado a:focus {
  background-color: #007a24; /* verde escuro no hover */
  box-shadow: 0 6px 12px rgba(0, 122, 36, 0.5);
  outline: none;
}

/* Responsividade básica */
@media (max-width: 640px) {
  #obrigado {
    margin: 40px 20px;
    padding: 25px 20px;
  }

  #obrigado h1 {
    font-size: 2rem;
  }

  #obrigado p {
    font-size: 1rem;
  }

  #obrigado a {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
/*Final de Obrigado*/