/* Styles pré-setados -----------------------*/
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

:root {
  --color-white: #fff;
  --color-dark: #000;
  --color-green: #1b4332;
  --color-green2: #209748;
  --color-green3: #8fd12f;
  --font-heading: 'Amatic SC', cursive;
  --spacing-section: 7rem;
  --spacing-content: 6rem;
  font-size: 16px;
  --primary-green: #1b4332;   /* seu verde vibrante */
  --light-green: #368a67;
  --white: #fff; 
   --header-bg: rgba(255,255,255,0.95);
  --accent: #00a859;
  --header-transition: 0.25s;
}

body,
html {
  min-height: 100%;
  width: 100%;
  font-family: 'Rubik', sans-serif;
  background-color: #FCFEFB;
  scroll-behavior: smooth;
}

.body {
  padding-top: 75px; /* ajuste conforme a altura */
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.container {
  height: 100%;
}

/* Header */
.header .container {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  justify-content: space-evenly;
  max-width: 1100px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  height: 75px;
  background: transparent;
  padding: 0;
}

.header-fixo {
  position: fixed;
  top: 0px !important;
  left: 0px !important;
  width: 100%;
  height: 75px;
  background-color: #1b4332;
  z-index: 1000;
  transition: all 0.2s ease;
}

.header-fixo.scrolled .logo .logoimg {
  height: 85px;
}

/* Logo */
.logo .logoimg {
  height: 95px;
  transition: height 0.3s ease;
  margin-right: 25px;
}

/* Troca a logo apenas no Desktop */
@media (min-width: 991px){
.header-fixo.scrolled .logo .logoimg {
  content: url('/assets/img/Logo-branca.png'); 
}
}

.menu-item a {
  position: relative;
  text-decoration: none;
  color: #29312A;
  padding: 5px 0;
}

.menu-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #2e7d32; /* cor da barrinha */
  transition: width 0.3s ease;
}

.main-nav .logoimg {
  display: none;
}

/* Navegação desktop */
.main-nav {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-item a {
  color: #fff;
  text-decoration: none;
  padding: 40px 0;
  position: relative;
  font-weight: 500;
}

.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 0;
  height: 3.6px;
  background: #8fd12f;
  transition: width 0.3s ease;
}

.menu-item:hover > a::after {
  width: 100%;
}

/* Submenu */
@media (min-width: 991px){
  .submenu {
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  border-radius: 6px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  min-width: 220px;
}
}

.submenu li a {
  color: #000000c7;
  padding: 12px 20px;
  display: block;
  text-decoration: none;
}

.submenu li a:hover {
  background: #f5f5f5;
}

.menu-item.dropdown:hover .submenu {
  display: flex;
}

/* Estilização botões do header */
.btn-ajude {
  background-color: #35e244;
  padding: 0.6rem 1rem;
  background-color: #2ef53f;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  color: #000000;
  transition: 300ms;
  margin-left: 30px;
}

.btn-ajude:hover {
    background-color: #35e244;
}
/* Estilização botões do header */

/* Botão hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* acima do menu */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #ffffff; /* cor do ícone */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ====== RESPONSIVO ====== */

/* Desktop - seta some */
@media (min-width: 991px) {
  .toggle-submenu {
    display: none;
  }
  .submenu {
    max-height: none; /* Submenu sempre visível (ou via hover) */
    transition: none;
  }

}

@media (max-width: 991px) {
.menu-item a::after{
  display: none;
}

.header .container {
  padding: 1rem 2rem 1rem 1rem;
}

.menu-item.dropdown:hover .submenu {
  display: flex;
}
.menu-item.dropdown .submenu{
  margin-left: 10px;
}

/* Submenu escondido inicialmente */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: inherit;
}

.submenu.open {
  max-height: 500px;
  padding: 5px;
}

/* Botão + */
.toggle-submenu {
  background: none;
  border: none;
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.menu-item.dropdown {
  position: relative;
}

.menu-item.dropdown > a {
  display: block;
  padding: 16px 44px 16px 0;
  line-height: 1.2;
}

.toggle-submenu {
  position: absolute;
  right: 12px;
  top: 25px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

  .header .container {
    justify-content: space-between;
  }
  
  /* Ocultar menu desktop */
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 2000;
  }

  .main-nav .logoimg{
    display: initial;
    margin-left: -10px;
  }

  .main-nav.active {
    left: 0;
  }

  /* Estilização do botão hambúrguer */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2100;
  }

  .hamburger span {
    display: block;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Menu lista vertical */
  .menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .menu-item {
    border-bottom: 1px solid #e0e0e0a2;
    width: 100%;
  }

  .menu-item a {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }

  .menu-item a::after{
  bottom: 5px;
}

  /* Submenu recolhido inicialmente */
  .submenu {
    display: none;
    flex-direction: column;
    position: initial;
    background: #fafafa;
  }

  .submenu.active {
    display: block;
  }

  /* Botão de doação no fim */
  .btn-ajude {
    margin: 40px 0 0 0;
    align-self: center;
  }

  .btn-ajude{
    padding: 16px 28px;

  }
  .dropdown-menu.active {
  display: block;
}
}

@media (max-width: 380px){
  .btn-ajude{
    padding: 10px 16px;
    text-align: center;
  }

  .submenu{
    min-width: 200px;
    padding: inherit;
  }
}

/* SECTION 2 SLIDES */
.hero-carousel {
  position: relative;
  height: 85vh;
  overflow: hidden;
  cursor: grab;
}

.hero-carousel .swiper-container,
.hero-carousel .swiper,
.hero-carousel .swiper-wrapper,
.hero-carousel .swiper-slide {
  cursor: grab;
}

.hero-carousel .is-grabbing,
.hero-carousel .is-grabbing * {
  cursor: grabbing !important;
}

/* Evita que a imagem inicie drag nativo do browser */
.hero-carousel .swiper-slide img {
  -webkit-user-drag: none;
  user-select: none;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.swiper-slide .claro-banner{
  filter: brightness(0.8);
}

.swiper-slide .slide-text .logo-banner{
  width: 700px;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
}

.slide-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 5px 1px 7px #000000;

}

.slide-text .h2-bold{
  font-size: 3rem;
  font-family: 'Amatic SC', cursive;
  margin-bottom: 1rem;
  background-color: #198fddbd;
  border-radius: 5px;
  padding: 5px 15px;
  font-weight: bold;
  justify-self: center;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 5px 1px 20px #000000;
}

.slide-text .p-bold{
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  border-radius: 5px;
  justify-self: center;
  padding: 5px;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 5px 1px 7px #000000;

}
.btn-primary {
  display: inline-block;
  padding: 0.7rem 2rem;
      background-color: rgb(163, 241, 45);


  color: #000000;
  font-weight: 400;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.5s;
}

.btn-primary:hover {
  background-color: rgb(135, 204, 31);
}

/* Navegação */
/* Botões padrão do Swiper */
.swiper-button-next,
.swiper-button-prev {
  width: 60px !important;
  height: 70px !important;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #ffffff !important;
}

/* Ícones internos do Swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  color: #020202c2;
}

/* Hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #ffffff11;
  transform: scale(1.1);
}

  /* Posição dos botões */
.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-pagination-bullet {
  background: #ffffffd8 !important;
  opacity: 0.8;
  width: 10px !important;
  height: 10px !important;
}
/* Navegação */

.h1-bold{
  font-weight: bold;
  text-shadow: 2px 2px 10px #000000;

}

.p-bold{
  font-weight: 400;
  text-shadow: 3px 2px 8px #ffffff;

}

/* -----RESPOSIVIDADE----- */
@media (max-width: 991px){
  
.swiper-button-next::after,
.swiper-button-prev::after {display: none;}

.btn-primary{
  font-size: 15px;
  padding: 0.8rem 1.5rem !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ffffff11;
}

.hero-carousel {
  position: relative;
  height: 82vh;
  overflow: hidden;
  cursor: grab;
}
}

@media (max-width: 600px){
.swiper-button-next,
.swiper-button-prev {
  padding: 120px 5px;
  background: #ffffff00 !important;
  cursor: none;
}

}

.slide-text .h2-bold{
  font-size: 2.1rem;
  width: 25ch;
}
.slide-text .p-bold{
  font-size: 1rem;
}

.slide-text p{
  font-size: 1rem;
  width: 25ch;
  justify-self: center;
}

@media (max-width: 400px){
  .swiper-slide .slide-text .logo-banner{
  width: 450px;
}

.slide-text .h2-bold{
  width: 70vw;
  font-size: 2rem;
  justify-self: center;
}

}

@media (max-width: 250px){
.slide-text p{
  display: none;
}

.slide-text h2{
  margin-bottom: 15px;
}

.btn-primary{
  font-size: 0.84rem;
}

}

/* NOSSO IMPACTO */
.nosso-impacto {
  padding: 28px 20px;
  background: #ffffff;
  position: relative;
}

.nosso-impacto .impacto-container {
  max-width: 1400px;
  margin: 0 auto 10px;
  text-align: center;
}
.nosso-impacto .img-decoracao{
  position: absolute;
  width: 55px;
  left: 20px;
  top: 25px;
}

.impacto-titulo::after{
  content: "";               
    display: block;
    width: 130px;               
    height: 2px;               
    background-color: rgb(5, 110, 52);  
    margin: 15px auto 0 auto;   
    border-radius: 2px;        
}

.impacto-titulo {
  font-size: 2.2rem;
  color: #006837;
  margin-bottom: 17px;
  justify-self: center;
  max-width: 80vw;
}

.impacto-texto  {
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 100vw;
}

.impacto-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.impacto-items .item {
  transition: all 0.2s ease;
}

.impacto-items .item:hover {
  transform: translateY(-5px) scale(1.02) !important;
  transition: all 0.1s ease !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.impacto-items img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.impacto-items h3 {
  font-size: 1.25rem;
  margin: 15px;
  color: #004d26;
  max-width: 100vw;
  justify-self: center;
}

.impacto-items p {
  font-size: 1rem;
  margin: 0 15px 20px;
  color: #555;
  max-width: 80vw;
  justify-self: center;
}

@media (max-width: 650px){
.nosso-impacto .img-decoracao{
  display: none;
}

.impacto-titulo {
  font-size: 1.6rem;
}

.impacto-texto {
  font-size: 1.1rem;
}
}

@media (max-width: 400px){
  .impacto-items{
    justify-self: center;
  }
  .impacto-items img{
    width: 90%;
  }

  .impacto-texto{
  font-size: 1.3rem;
}

}

/* SECTION 4 IMAGEM PARALLAX */
.parallax {
  position: relative;
  height: 400px; 
  background-image: url('/assets/img/bg.jpg');
  background-attachment: fixed; 
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.texto-destaque {
  color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 700px;
  text-align: center;
}

.texto-destaque h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.texto-destaque h2::after{
  content: "";               
    display: block;
    width: 130px;               
    height: 2px;               
    background-color: rgb(231, 231, 231);  
    margin: 20px auto 0 auto;   
    border-radius: 2px; 
}

.texto-destaque h3 {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 500px){
.parallax {
  height: 350px;
}
.texto-destaque h2 {
  font-size: 2rem;  
}
.texto-destaque h3 {
  font-size: 1.2rem;
}
}
/* SECTION 4 IMAGEM PARALLAX */

/* SECTION 5 MAIS SOBRE A ONG */
.nossamissao-section {
  width: 1200px;
  justify-self: center;
  padding: 70px 0px 0px;
  background-color: #ffffff;
  position: relative;
}

.nossamissao-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.nossamissao-block.reverse {
  flex-direction: row-reverse;
}

.nossamissao-image {
  flex: 1 1 49%;
}

.nossamissao-section .img-decoracao{
  position: absolute;
  width: 55px;
  right: 35.9rem;
  top: 483px;
}
@media (max-width: 990px){
.nossamissao-section .img-decoracao{
  display: none;
}

}

.nossamissao-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}


.nossamissao-text {
  flex: 1 1 45%;
}

.nossamissao-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b4332;
}

.nossamissao-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
  max-width: 90vw;
}

.nossamissao-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #1b4332;
  color: #1b4332;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: 533px;
  text-align: center;
}

.nossamissao-btn:hover {
  background-color: #1b4332;
  color: #fff;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 1230px) {
  .nossamissao-block {
    flex-direction: column;
    text-align: center;
  }

  .nossamissao-block.reverse {
    flex-direction: column;
  }

  .nossamissao-image img {
    width: 90vw;
    height: 40vh;
  }

  .nossamissao-text h2 {
    font-size: 2rem;
  }

  .nossamissao-text p {
    font-size: 1.1rem;
    max-width: 80vw;
  }
}

@media (max-width: 700px) {
  .nossamissao-section {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .nossamissao-text h2 {
    font-size: 1.6rem;
    text-align: start;
  }

  .nossamissao-text p {
    font-size: 1.1rem;
    text-align: start;

  }

  .nossamissao-btn {
    width: 100%;
    padding: 15px 10px !important;
    padding: 1rem;
  }
}

@media (max-width: 400px){
  .nossamissao-text p {
    font-size: 1rem;
    justify-self: center;
  }

  .nossamissao-text h2 {
    font-size: 1.4rem;
  }

  .nossamissao-btn {
    font-size: 0.9rem;
  }

}

@media (max-width: 260px){
  .nossamissao-text h2{
    font-size: 1.2rem;
    width: 80vw;
    justify-self: center;
  }
.nossamissao-text p {
    font-size: 0.8rem;
    width: 80vw;
  }

  .nossamissao-btn{
    width: 150px;
    font-size: 0.8rem;
  }
}

/* SECTION 5 MAIS SOBRE A ONG */

/* DOE E TRANSFORME */
.doeetransforme-section {
  position: relative;
  height: 240vh;
  background-image: url('/assets/img/BANNER\ 2.jpg');
  background-attachment: fixed; /* imagem fixa enquanto rola */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.doeetransforme-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.doeetransforme-section .content {
  position: relative;
  text-align: center;
  z-index: 1;
  width: 90%;
  max-width: 1700px;
}

.doeetransforme-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  background-color: #198edde1;
  border-radius: 5px;
  padding: 5px 15px;
  font-weight: bold;
  justify-self: center;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 5px 1px 20px #000000;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 5px;
  justify-self: center;
  padding: 5px 10px;
  margin-bottom: 5rem;
  max-width: 60ch;
  background-color: #095a24e3;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 5px 1px 7px #000000;
}

.blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.block {
  border-radius: 8px;
  padding: 25px;
  transition: background 0.3s;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 5px 5px 10px #2e2e2e;
}

.block:hover {
  background: rgba(0, 0, 0, 0.7);
}

.block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.block p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.block .btn {
  display: inline-block;
  background: #ffde00;
  color: #000;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.block .btn:hover {
  background: #ffd600;
  transform: scale(1.05);
}

.block-valorlivre-subtitulo{
  margin-top: 1rem;
}


/* ---- RESPONSIVIDADE ---- */

/* Tablets */
@media (max-width: 1024px) {
  .doeetransforme-section .blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .doeetransforme-section .block-valorlivre {
    grid-column: span 2;
  }
 

 .doeetransforme-section{
  height: 265vh;
}

}

/* Celulares */
@media (max-width: 768px) {
  .doeetransforme-section h2 {
    font-size: 2rem;
  }

  .doeetransforme-section .subtitle {
    font-size: 1.1rem;
  }


  .doeetransforme-section .blocks {
    grid-template-columns: 1fr;
  }

  .doeetransforme-section .block-valorlivre {
    grid-column: span 1;
  }
  
  .doeetransforme-section{
  height: 380vh;
}
}

@media (max-width: 260px){
.doeetransforme-section h2 {
    font-size: 1.4rem;
  }
.doeetransforme-section .subtitle {
    font-size: 0.8rem;
  }

  .blocks .block h3{
    font-size: 1.2rem;
  }
  .blocks .block p{
    font-size: 0.8rem;
}
  .blocks .block .btn{
    font-size: 0.7rem;
}}

/* DOE E TRANSFORME */

/* SOBRE NÓS */
.sobrenos-section {
  padding: 20px 20px 80px;
  background: #ffffff;
}

.sobrenos-section .container {
  max-width: 1200px;
  border-bottom: solid 2px #025317;
  justify-items: center;
}

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

.sobrenos-text {
  flex: 1;
  max-width: 100%;
}

.sobrenos-text h2 {
  color: #000000;
  font-size: 3.7rem;
  font-weight: bold;
  text-shadow: 0px 0px 10px #3dff0200;
  font-family: 'Amatic SC', cursive;
  line-height: 1.3;
  margin-bottom: 20px;
}

.sobrenos-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  width: 90vw;
  max-width: 45ch;
  margin-bottom: 20px;
  justify-self: center;
}


.sobrenos-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.sobrenos-image img {
  height: 770px;
  border-radius: 8px;
  margin-top: 60px;
  margin-bottom: 90px;
}

/* Responsivo para telas médias (tablets) */
@media (max-width: 1110px) {
  .sobrenos-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobrenos-text p{
    font-size: 1.3rem;
    margin-bottom: 60px;
  }

  .sobrenos-text h2 {
    font-size: 3rem;
  }
  .sobrenos-image img {
  margin-bottom: 0px;
}
}

/* Responsivo para telas pequenas (smartphones) */
@media (max-width: 728px) {
  .sobrenos-section {
    padding: 40px 15px;
  }

  .sobrenos-text p {
    font-size: 1rem;
    text-align: start;
    max-width: 80vw;
  }

  .sobrenos-text h2 {
    font-size: 2.5rem;
  }

  .sobrenos-image img {
  height: 600px;
  border-radius: 8px;
  margin-top: 60px;
}
}

@media (max-width: 460px) {
  .sobrenos-image img{
  height: 400px;
  }
}

@media (max-width: 360px){
  .sobrenos-image img{
  height: 300px;
  }
   .sobrenos-text p {
    font-size: 1rem;
  }
  .sobrenos-text h2 {
    font-size: 2.4rem;
    width: 90vw;
    justify-self: center;
  }

  .sobrenos-text {
  flex: 1;
  max-width: 70%;
}
}

/* SOBRE NÓS */

/* SECTION 8 PARCEIRO */
.parceiro-section {
  padding: 80px 20px 80px;
  background: #ffffff;
}

.parceiro-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.parceiro-text {
  flex: 1;
  min-width: 300px;
}

.parceiro-text h2 {
  color: #000000;
  font-size: 3.7rem;
  font-weight: bold;
  text-shadow: 0px 0px 10px #3dff0200;
  font-family: 'Amatic SC', cursive;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 80vw;
}

.parceiro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  max-width: 100vw;
  margin-bottom: 25px;
}

.btn-parceiro {
  display: inline-block;
  padding: 10px 16px;
  color: #36833F;
  text-decoration: none;
  font-weight: 500;
  background-color: #fafffb;
  border-radius: 8px;
  border: solid 1px #ACCAB0;
  transition: all 0.3s ease;
  text-align: start;
  max-width: 70vw;

}

.btn-parceiro:hover {
  background-color: #1f4912;
  color: #ffffff;
}

.btn-parceiro svg{
  margin-left: 5px;
}

.parceiro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.parceiro-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: #62b5d5 2px 2px 30px 3px;
}

@media (max-width: 900px){
  .parceiro-text h2 {
  font-size: 3rem;
}
.parceiro-text p {
  font-size: 1.3rem;
}

}

@media (max-width: 728px){
.parceiro-text p {
  font-size: 1rem;
  max-width: 85vw;
}

}

/* SECTION 8 PARCEIRO */

/* SECTION 9 FOOTER */
.footer {
  background-color: #1f4912;
  color: #ffffff;
  padding: 40px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

.footer-container {
  max-width: 1170px;
  margin: 0 auto;
  border-top: solid 1.5px;
  padding-top: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 30px;
  justify-content: space-between;
  
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-section ul li a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}

.footer-section ul li a:hover {
  color: #026141;
}

.footer-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-donate-btn {
  background-color: #35e244;
  padding: 0.6rem 1rem ;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  color: #000000;
  transition: 300ms;
}

.footer-donate-btn:hover {
    background: #31ca3e;

}

.footer-socials a {
  margin-right: 15px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color .2s;
}

.footer-socials p{
  font-weight: 400;
  margin-bottom: 10px;
  
}

.footer-socials a:hover {
  color: #b4b4b4;
  
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 10px;
  background-color: #1a3c10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 12px;
}

.footer-policy-links {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-policy-links li a {
  color: #fffffff1;
  text-decoration: underline;
}

.footer-policy-links li a:hover {
  color: #026141;
}

.license {
  margin-top: 10px;
  color: #666;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
  }
  .footer-extra, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-socials {
    margin-top: 15px;
  }

.footer-donate-btn{
  margin-bottom: 20px;
}

}

/* SECTION 9 FOOTER */

/* BOTÕES FIXOS */

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #4caf50;
  text-decoration: underline;
}

.accept-btn {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}
/* COOKIE */


/* Botão BackTop */
.back-to-top {
  position: fixed;
  bottom: 99px;
  right: 33px;
  background: #90d12f;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 2px;
  font-size: 20px;
  cursor: pointer;
  display: none; 
  z-index: 1000;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.back-to-top:hover {
    background: #90d12fa1;

}

@media (max-width: 600px){
.back-to-top {
  right: 13px !important;
  width: 45px;
  height: 45px;
  bottom: 95px;
  }

}
/* Botão BackTop */

/* Botão Whatsapp */
.whatsapp-fixo {
    position: fixed;
    bottom: 23px;  
    right: 20px;   
    z-index: 9999;
}

.whatsapp-fixo img {
    width: 65px;  
    height: 65px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

@media (max-width: 600px){
.whatsapp-fixo {
  width: 40px;
  height: 40px;
  bottom: 50px;
  right: 25px;
}

.whatsapp-fixo img {
  box-shadow: 0px 0px;
  width: 60px;
}

}
/* Botão Whatsapp */

/* Banner de aviso */
.site-alert {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  transition: transform .32s ease, opacity .32s ease;
  will-change: transform, opacity;
}
.site-alert[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

/* container interno */
.site-alert-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 10px;
  background: linear-gradient(180deg,#ffffff, #f6fff6);
  border: 1px solid rgba(4,63,39,0.08);
  box-shadow: 0 10px 30px rgba(2,40,20,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

/* texto */
.site-alert-message {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #043f2f;
  font-size: 15px;
  line-height: 1.3;
}
.site-alert-message strong {
  font-weight: 700;
  color: #0b3c2b;
}

/* ação / botão */
.site-alert-actions { display:flex; align-items:center; }
.site-alert-btn {
  background: #4caf50;
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0,120,70,0.12);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.site-alert-btn:active { transform: translateY(1px) scale(.995); }
.site-alert-btn:focus { outline: 3px solid rgba(8,120,60,0.15); outline-offset: 2px; }

/* mobile */
@media (max-width:640px) {
  .site-alert-inner { flex-direction: column; align-items: stretch; gap:10px; padding:12px; }
  .site-alert-btn { width: 100%; }
}