@font-face {

  font-family: 'Eras Demi ITC';

  src: url('https://fonts.cdnfonts.com/css/eras-itc') format('truetype');

  font-weight: normal;

  font-style: normal;

}



@font-face {

  font-family: 'Eras Light ITC';

  src: url('https://fonts.cdnfonts.com/css/eras-itc') format('truetype');

  font-weight: lighter;

  font-style: normal;

}



:root {

  --primary-color: #4A4A49;

  --secondary-color: #F7941E;

  --light-color: #F8F8F8;

  --dark-color: #333333;

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: 'Eras Light ITC', sans-serif;

  color: var(--primary-color);

  line-height: 1.6;

}



h1,

h2,

h3,

h4 {

  font-family: 'Eras Demi ITC', sans-serif;

  color: var(--dark-color);

}



.container {

  width: 85%;

  max-width: 1200px;

  margin: 0 auto;

}



/* Header */

header {

  background-color: white;

  border-bottom: solid 5px #F7941E;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  position: fixed;

  width: 100%;

  z-index: 100;

}



nav {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1.5rem 0;

}



.logo {

  display: flex;

  align-items: center;

}



.logo img {

  width: 100%;

  max-width: 80px;

  max-height: 300px;

  margin-right: 10px;

}



.logo_rodape img {

  /* width: 100%;

  max-width: 80px; */

  max-height: 300px;

}



.logo h1 {

  color: var(--secondary-color);

  font-size: 1.8rem;

}



.nav-links {

  display: flex;

  list-style: none;

}



.nav-links li {

  margin-left: 2rem;

}



.nav-links a {

  text-decoration: none;

  color: var(--primary-color);

  font-weight: bold;

  transition: color 0.3s;

}



.nav-links a:hover {

  color: var(--secondary-color);

}



/* Hero Section */

.hero {

  background: linear-gradient(rgba(74, 74, 73, 0.8), rgba(74, 74, 73, 0.8)), url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');

  background-size: cover;

  background-position: center;

  height: 100vh;

  display: flex;

  align-items: center;

  text-align: center;

  color: white;

  padding-top: 80px;

}



.hero-content h1 {

  font-size: 3.5rem;

  margin-bottom: 1rem;

  color: white;

}



.hero-content p {

  font-size: 1.5rem;

  margin-bottom: 2rem;

  max-width: 800px;

  margin-left: auto;

  margin-right: auto;

}



.btn {

  display: inline-block;

  background-color: var(--secondary-color);

  color: white;

  padding: 0.8rem 2rem;

  border-radius: 50px;

  text-decoration: none;

  font-weight: bold;

  transition: all 0.3s;

  border: 2px solid var(--secondary-color);

}



.btn:hover {

  background-color: transparent;

  color: var(--secondary-color);

}



.of-btn{

  padding: 0.6rem 1rem;

  border-radius: 15px;

}

#mapa{
  text-decoration: none;
  color: var(--secondary-color);
}

/* About Section */

.about {

  padding: 5rem 0;

  background-color: var(--light-color);

}



.section-title {

  text-align: center;

  margin-bottom: 1rem;

}



.section-title h2 {

  font-size: 2.5rem;

  color: var(--secondary-color);

}



.about-content {

  display: flex;

  align-items: center;

  gap: 3rem;

}



.about-text {

  flex: 1;

}



.about-text h3 {

  font-size: 1.8rem;

  margin-bottom: 1.5rem;

}



.about-text p {

  margin-bottom: 1rem;

}



.about-image {

  flex: 1;

}



.about-image img {

  width: 100%;

  border-radius: 10px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



/* Activities Section */

.activities {

  padding: 5rem 0;

}



/* .activities-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;

} */



.activity-card {

  background-color: white;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s;

}



.activity-card:hover {

  transform: translateY(-10px);

}



.activity-card img {

  width: 100%;

  height: 100%;

  object-fit: fill;

}

figcaption{

  color: #949494;

  font-size: small;

  padding-left:0.9rem;

}



.activity-info {

  padding: 1.5rem;

}



.activity-info h3 {

  color: var(--secondary-color);

  margin-bottom: 0.5rem;

}



.activity-info .date {

  color: var(--primary-color);

  font-weight: bold;

  margin-bottom: 1rem;

  display: block;

}



/* Community Section */

.community {

  padding: 5rem 0;

  background-color: var(--dark-color);



}



.testimonials {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;

}



.testimonial-card {

  background-color: white;

  padding: 2rem;

  border-radius: 10px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.testimonial-card .quote {

  font-style: italic;

  margin-bottom: 1.5rem;

}



.testimonial-card .author {

  display: flex;

  align-items: center;

}



.testimonial-card .author img {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  object-fit: cover;

  margin-right: 1rem;

}



.author-info h4 {

  margin-bottom: 0.2rem;

}



.author-info p {

  font-size: 0.9rem;

  color: var(--primary-color);

}



/* Contact Section */

.contact {

  padding: 5rem 0;

}



.contact-form {

  max-width: 600px;

  margin: 0 auto;

  background-color: white;

  padding: 2rem;

  border-radius: 10px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.form-group {

  margin-bottom: 1.5rem;

}



.form-group label {

  display: block;

  margin-bottom: 0.5rem;

  font-weight: bold;

}



.form-group input,

.form-group textarea {

  width: 100%;

  padding: 0.8rem;

  border: 1px solid #ddd;

  border-radius: 5px;

  font-family: 'Eras Light ITC', sans-serif;

}



.form-group textarea {

  height: 150px;

}



.submit-btn {

  background-color: var(--secondary-color);

  color: white;

  border: none;

  padding: 0.8rem 2rem;

  border-radius: 50px;

  cursor: pointer;

  font-family: 'Eras Demi ITC', sans-serif;

  font-size: 1rem;

  transition: background-color 0.3s;

}



.submit-btn:hover {

  background-color: #e07e0c;

}



/* Footer */

footer {

  background-color: var(--primary-color);

  color: white;

  padding: 3rem 0;

  text-align: center;

}





.social-links {

  display: flex;

  list-style: none;

  margin: 1.5rem 0;

}



.social-links li {

  margin: 0 1rem;

}



.social-links a {

  color: white;

  font-size: 1.5rem;

  transition: color 0.3s;

}



.social-links a:hover {

  color: var(--secondary-color);

}



.copyright {

  margin-top: 1.5rem;

  font-size: 0.9rem;

}



.menu-toggle i {

  display: none;

}





/* Estilos atualizados para o rodapé */



.footer-logo-social {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  align-items: center;

  justify-content: center;

}



/* .footer-content {

          display: flex;

          flex-direction: column;

          gap: 1.5rem;

          align-items: center;

          justify-content: center;

      } */







.footer-logo {

  display: flex;

  align-items: center;

  gap: 10px;

}



.footer-logo h1 {

  color: var(--secondary-color);

  font-size: 1.5rem;

}



.footer-social {

  display: flex;

  gap: 1.5rem;

}



.social-icon {

  color: white;

  font-size: 1.8rem;

  transition: all 0.3s ease;

}



.social-icon:hover {

  color: var(--secondary-color);

  transform: translateY(-3px);

}



.whatsapp:hover {

  color: #25D366;

  /* Verde do WhatsApp */

}



.footer-bottom {

  text-align: center;

  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

}



.copyright {

  margin-bottom: 0.5rem;

  font-size: 0.9rem;

}



.address {

  font-size: 0.85rem;

  opacity: 0.8;

}



/* modal */

/* Substituir todo o CSS do modal por: */

.modal {

  /* position: fixed; */

  z-index: 1000;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);

  border: none;

  padding: 0;

}



.modal-content {

  background-color: #fefefe;

  margin: 10% auto;

  padding: 20px;

  width: 80%;

  max-width: 500px;

  border-radius: 8px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}



.modal-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  border-bottom: 1px solid #eee;

  padding-bottom: 10px;

  margin-bottom: 15px;

}



.close {

  color: #aaa;

  font-size: 28px;

  font-weight: bold;

  cursor: pointer;

}



.modal-footer {

  border-top: 1px solid #eee;

  padding-top: 10px;

  margin-top: 15px;

  text-align: right;

}



.text-success {

  color: #28a745;

}



.text-danger {

  color: #dc3545;

}



#obs{

  font-size: 0.9rem;

  color: #949494;

}







/* ================== CARROSSEL ATIVIDADES (FIX) ================== */



.activities-carousel-wrapper {

  position: relative;

}



.activities-carousel {

  overflow: hidden;

  width: 100%;

}



/* trilho horizontal */

.activities-track {

  display: flex;

  flex-wrap: nowrap;

  gap: 2rem;

  overflow-x: auto;

  scroll-behavior: smooth;

  padding: 0.25rem 0;

}



/* esconder scrollbar */

.activities-track::-webkit-scrollbar { height: 0; }

.activities-track { scrollbar-width: none; }



/* 3 cards por "tela" */

.activities-track .activity-card {

  flex: 0 0 calc((100% - 4rem) / 3); /* 2 gaps de 2rem => 4rem */

}



/* botões sobrepostos */

.carousel-btn {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 5;



  background-color: #F7941E;

  border: none;

  color: #fff;

  width: 44px;

  height: 44px;

  border-radius: 50%;

  cursor: pointer;



  display: flex;

  align-items: center;

  justify-content: center;

}



.carousel-btn:hover { background-color: #e07e0c; }



.carousel-btn.prev { left: -5%; }

.carousel-btn.next { right: -5%; }



/* responsivo */

@media (max-width: 900px) {

  .activities-track .activity-card {

    flex: 0 0 100%;

  }

  .carousel-btn.prev { left: 6px; }

  .carousel-btn.next { right: 6px; }

}





/* Responsive */

@media (max-width: 768px) {





  .hero-content p {

    font-size: 1.1rem;

  }



  .about-content {

    flex-direction: column;

  }



  .about-text,

  .about-image {

    flex: none;

    width: 100%;

  }



  .footer-top {

    flex-direction: column;

    gap: 1.5rem;

  }



  .footer-social {

    gap: 2rem;

  }



  header {

    padding: 0.5rem 0;

  }



  nav {

    flex-direction: column;

    padding: 0.5rem 0;

  }



  .logo {

    margin-bottom: 1rem;

    width: 100%;

    justify-content: center;

  }



  /* .logo img {

    height: auto;

  } */



  .nav-links {

    display: none;

    flex-direction: column;

    width: 100%;

    background-color: white;

    position: absolute;

    top: 100%;

    left: 0;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

    padding: 1rem 0;

  }



  .nav-links.active {

    display: flex;

  }



  .nav-links li {

    margin: 0;

    text-align: center;

    padding: 0.5rem 0;

  }



  .nav-links a {

    padding: 0.5rem 0;

    display: block;

  }



  /* Menu hamburguer */

  .menu-toggle {

    position: absolute;

    top: 1rem;

    right: 1rem;

    cursor: pointer;

    z-index: 101;

  }



  .menu-toggle i {

    font-size: 1.5rem;

    color: var(--primary-color);

    display: block;

  }



  /* Ajustes no hero */

  .hero {

    padding-top: 120px;

    height: auto;

    min-height: 100vh;

  }



  .hero-content h1 {

    font-size: 2rem;

  }





}



/* filtro */



.activities-mobile-filter {

  display: none;

  margin: 0 0 1.25rem;

  gap: 0.5rem;

  align-items: center;

}



.monthFilterLabel {

  font-weight: bold;

}



#monthFilter {

  width: 100%;

  padding: 0.75rem 0.9rem;

  border: 1px solid #ddd;

  border-radius: 10px;

  font-family: inherit;

}







/* ===== MOBILE: filtro + cards empilhados (SEM carrossel) ===== */

@media (max-width: 768px) {



  /* Mostra o filtro */

  .activities-mobile-filter {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 0.5rem;

    margin-bottom: 1.25rem;

  }



  /* Esconde setas no celular */

  .activities-carousel-wrapper .carousel-btn {

    display: none !important;

  }



  /* Remove “janela” do carrossel */

  .activities-carousel {

    overflow: visible !important;

  }



  /* TRILHO vira COLUNA e não rola lateral */

  .activities-track {

    display: flex !important;

    flex-direction: column !important;

    flex-wrap: nowrap !important;

    gap: 1.25rem !important;



    overflow-x: visible !important;

    scroll-behavior: auto !important;

    padding: 0 !important;

  }



  /* Cards 100% (um embaixo do outro) */

  .activities-track .activity-card {

    flex: 1 1 auto !important;

    width: 100% !important;

    min-width: 0 !important;

  }



  /* Ajustes visuais para ficar bonito no celular */

  .container { width: 92%; }

  .activities { padding: 3.5rem 0; }

  /* .activity-card img { height: 260px; } */

  .activity-info { padding: 1rem; }



  .of-btn{

    width: 100%;

    text-align: center;

    padding: 0.75rem 1rem;

    border-radius: 14px;

  }

}



/* Destaque na home → página de notícias */

.news-teaser {

  padding: 4rem 0;

  background: linear-gradient(180deg, #fff 0%, var(--light-color) 45%, #fff 100%);

  border-top: 1px solid rgba(247, 148, 30, 0.2);

  text-align: center;

}



.news-teaser .section-title {

  margin-bottom: 1rem;

}



.news-teaser-text {

  max-width: 640px;

  margin: 0 auto 1.75rem;

  font-size: 1.1rem;

  line-height: 1.65;

  color: var(--primary-color);

}



.news-teaser-actions {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 1.25rem;

}



.news-teaser-link {

  color: var(--secondary-color);

  font-weight: bold;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 0.4rem;

  transition: opacity 0.2s;

}



.news-teaser-link:hover {

  opacity: 0.85;

  text-decoration: underline;

}
/* ===== Newsletter no Footer - ElasTitam ===== */
.footer-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.footer-newsletter {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.footer-newsletter h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.footer-newsletter p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.newsletter-form {
  width: 100%;
}

.newsletter-field {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.newsletter-field input {
  flex: 1;
  min-width: 0;
  max-width: 430px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-field input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.25);
}

.newsletter-field input::placeholder {
  color: #777777;
}

.newsletter-btn {
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: #ff7a00;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
  background: #ff8f26;
  transform: translateY(-2px);
}

.newsletter-form small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.4;
}

.footer-bottom-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-bottom-area .logo_rodape {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* .footer-bottom-area .logo_rodape img {
  max-width: 190px;
  height: auto;
} */

.footer-bottom-area .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.footer-main .copyright {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 620px) {
  .footer-main {
    gap: 22px;
  }

  .footer-newsletter {
    padding: 20px 16px;
  }

  .newsletter-field {
    flex-direction: column;
  }

  .newsletter-field input,
  .newsletter-btn {
    width: 100%;
    max-width: none;
  }

  .footer-bottom-area .logo_rodape img {
    width: 100%;
  }
}


/* ===== Status do modal para Newsletter ===== */
.modal-status {
  text-align: center;
  padding: 8px 4px 4px;
}

.modal-status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  background: #ff7a00;
}

.modal-status h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.25rem;
  line-height: 1.3;
}

.modal-status p {
  margin: 0;
  color: #444444;
  line-height: 1.5;
}

.modal-status-success .modal-status-icon {
  background: #22a45d;
}

.modal-status-warning .modal-status-icon {
  background: #ff7a00;
}

.modal-status-error .modal-status-icon {
  background: #d93025;
}

.modal-status-loading .modal-status-icon {
  background: #111111;
}

.newsletter-btn:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}
