@charset "UTF-8";
body {
  background-image: url("Imagens/Planta.svg  ");
  background-repeat: repeat;
  background-size: 150px;
  background-position: center;
  background-attachment: fixed;
}

:root {
  --primary-color: #4CAF50;
  --primary-dark: #388E3C;
  --primary-light: #66BB6A;
  --secondary-color: #81C784;
  --text-color: #FFFFFF;
  --border-color: #E0E0E0;
  --hover-color: #66BB6A;
  --button-color: #157347;
  --button-color-dark: #135536;
}

* {
  font-family: "Lora", serif;
  scroll-behavior: smooth;
}

@media (min-width: 992px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
  }
}
.navbar {
  background: transparent !important;
}

nav .navbar-brand {
  color: var(--button-color);
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav .navbar-brand:hover {
  color: var(--hover-color);
}

.navbar-nav {
  color: var(--text-color);
  transition: 0.3s;
  display: flex;
  font-family: "Lora", serif;
  font-weight: 600;
}

.navbar-nav li {
  width: 100%;
  text-align: center;
}

.navbar-nav li a {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
  white-space: nowrap;
  color: white;
  font-size: 18px;
  letter-spacing: 1.5px;
}

.navbar-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-dark);
  transition: width 0.3s ease;
}

.navbar-nav li a:hover::after {
  width: 100%;
}

.navbar-nav li a:hover {
  color: var(--hover-color);
}

@media (min-width: 992px) {
  .navbar-nav {
    flex-direction: row;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
  .navbar-nav .nav-link {
    color: #135536 !important;
    font-weight: bold;
  }
}
#Inicio {
  font-family: "Lora", serif;
  margin: auto;
}

#Inicio .texto {
  max-width: 650px;
}

#Inicio .badge {
  border-radius: 12px;
  font-size: 0.9rem;
}

#Inicio h1 {
  font-family: "Lora", serif;
}

#Inicio p.lead {
  max-width: 600px;
}

@media (min-width: 992px) {
  .button {
    margin-right: 20px;
  }
}
@media (max-width: 991.98px) {
  .button {
    display: inline-block;
    width: auto;
    max-width: 90%;
    padding: 0.8rem 2rem;
    text-align: center;
    margin: 0 auto;
    border-radius: 8px;
  }
  .button span {
    font-size: 1.2rem;
  }
}
.button {
  border-radius: 4px;
  border: none;
  color: #FFFFFF;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  background-color: var(--button-color-dark);
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("Imagens/criancas.jpg") center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 60, 0, 0.5);
  z-index: 1;
}

.hero-section .content {
  z-index: 2;
  max-width: 800px;
  padding: 1rem;
}

.hero-section h1,
.hero-section p,
.hero-section a {
  color: white;
}

.hero-section p {
  color: #dcdcdc;
  font-size: 20px;
}

#sobre h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

#sobre p.lead {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #555;
}

#sobre {
  margin-top: 127px;
}

#sobre .shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#sobre .shadow:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.linha-decorativa {
  position: absolute;
  top: -50px;
  left: -80px;
  width: 200px;
  height: 300px;
  z-index: 0;
  pointer-events: none;
}

.linha-decorativa svg {
  width: 100%;
  height: 100%;
}

.icone-plantinha {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  width: 40px;
}

#btnTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: #198754;
  color: white;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btnTop.show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  pointer-events: auto;
}

#btnTop:hover {
  background-color: #146c43;
}

#parceiros h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
  color: #1a1a1a;
}

#ComoAjudar h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

#Galeria h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(47%) sepia(94%) saturate(420%) hue-rotate(85deg) brightness(90%) contrast(90%);
}

.galeria-stories {
  padding: 40px 20px;
}

:root {
  --green: #1ECD97;
  --gray: #bbbbbb;
}

.submit {
  position: relative;
  width: 140px;
  height: 40px;
  border-radius: 40px;
  border: 2px solid var(--green);
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.submit::after {
  content: "Enviar";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.submit::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border: 3px solid var(--gray);
  border-left-color: var(--green);
  border-radius: 50%;
  animation: none;
  display: none;
}

.submit:hover {
  background: var(--green);
  color: white;
}

.onclic::after {
  content: "";
}

.onclic::before {
  display: block;
  animation: rotating 1s linear infinite;
}

.validate {
  background: var(--green);
  color: white;
}

.validate::after {
  content: "✓";
  font-size: 20px;
  font-weight: bold;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.validate::before {
  display: none;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.storiesSwiper {
  width: 100%;
  padding: 20px 0;
}

.storiesSwiper .swiper-slide {
  background: #fff;
  border-radius: 16px;
  box-shadow: 8px 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 200px;
  aspect-ratio: 9/16;
  margin: 0 auto;
}

.storiesSwiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--button-color) !important;
}/*# sourceMappingURL=style.css.map */