/* -----------------------------------------
   Altura total para html e body
----------------------------------------- */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Organiza o body como flex container em coluna */
body {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Faz com que o main ocupe o espaço disponível */
main {
  flex: 1;
  margin-top: 70px; /* espaço para o header fixo */
}

/* -----------------------------------------
   Basic Reset
----------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -----------------------------------------
   Headings usando fontes secundárias
----------------------------------------- */
/* h1, h2, h3, .logo {
  font-family: 'Bodoni FLF', 'Mango AC', serif;
} */

/* -----------------------------------------
   Container padrão
----------------------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* -----------------------------------------
   NAVIGATION
----------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Deixar a logo responsiva*/
.logo img{
 width: 180px
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.nav-menu li a.active {
  color: #6807F5;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.mobile-menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-icon span {
  height: 3px;
  width: 25px;
  background: #561EA8;
  margin-bottom: 4px;
  border-radius: 3px;
}

/* -----------------------------------------
   HOME PAGE - BANNER
----------------------------------------- */
#banner {
  margin-top: 25px; /* Compensa o menu fixo */
}

.banner-img {
  width: 100%;
  display: block;
  height: auto;
}

/* -----------------------------------------
   HERO SECTION e Banners Gerais
----------------------------------------- */
.hero, .how-we-drive-change-hero {
  background: #6807F5;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  background-image: linear-gradient(
    135deg,
    rgba(104, 7, 245, 0.9),
    rgba(86, 30, 168, 0.9)
  );
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}


.hero p, .how-drive-change-hero h1 {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn-primary {
  background-color: #F4C014;
  color: #561EA8;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #6807F5;
  color: #fff;
}

/* -----------------------------------------
   STATISTICS SECTION
----------------------------------------- */
.stats-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.container .stats-title {
  color: #561EA8;
  padding: 10px 0;
  font-size: 38px;
}

.stats-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stats-card {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  color: #fff;
}

.stats-card h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.stats-card p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* -----------------------------------------
   MAP SECTION
----------------------------------------- */
.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #561EA8;
  font-size: 22px;
}

.map-image {
  width: 70%;
}

/* -----------------------------------------
   ABOUT US HOME SECTION
----------------------------------------- */
.about-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #561EA8;
  text-align: center;
  margin-bottom: 40px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.about-item .about-text {
  flex: 0.8;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  padding: 20px;
  border-radius: 10px;
}

.about-item .about-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.about-item .about-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-item .about-text ul li {
  margin-bottom: 10px;
  font-weight: 600;
}

.about-item .about-image {
  flex: 1;
  text-align: center;
}

.about-item .about-image img {
  width: 90%;
  max-width: 400px;
  max-height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Reverse layout: image on left, text on right */
.about-item.reverse {
  flex-direction: row-reverse;
}

/* -----------------------------------------
   TESTIMONIALS SECTION (Flexbox)
----------------------------------------- */
.testimonials-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #6807F5;
}

#testimonials_title {
  margin-bottom: 200px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -10px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 280px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid #561EA8;
  border-radius: 8px;
  position: relative;
  padding: 70px 20px 20px;
  min-height: 270px;
  text-align: center;
  margin: 10px;
}

.testimonial-photo {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F4C014;
  background: #fff;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #333;
  padding-top: 10px;
}

.testimonial h3 {
  color: #6807F5;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.testimonial span {
  color: #20ADF5;
  font-size: 0.9rem;
}

/* -----------------------------------------
   FOOTER
----------------------------------------- */
footer {
  background: #F4C014;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 15px auto;
}

.footer-brand {
  width: 200px;
}


.footer-selo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-center {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-center p {
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-social img {
  width: 30px;
}

.footer-social img:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  border-radius: 10px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 10px;
}

.footer-nav a {
  text-decoration: none;
  color: #fff ;
}

.footer-nav a:hover {
  color:#4aa2e1;
}

footer p.copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.7rem;
  opacity: 0.8;
}

/* -----------------------------------------
   Responsivo
----------------------------------------- */
@media (max-width: 768px) {
  .mobile-menu-icon {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 250px;
    height: calc(100% - 60px);
    background: #fff;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 8px rgba(0,0,0,0.1);
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu li a {
    padding: 10px 0;
    width: 100%;
  }
  #menu-toggle:checked + .mobile-menu-icon + .nav-menu {
    right: 0;
  }
  /* Ajusta dropdown para mobile */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }
  /* About Us Home responsivo */
  .about-item {
    flex-direction: column;
    text-align: center;
  }
  .about-item.reverse {
    flex-direction: column;
  }
  .about-item .about-image img {
    max-width: 90%;
  }
  .about-item .about-text {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand,
  .footer-center {
    margin-bottom: 30px;
  }
  .footer-nav {
    margin-bottom: 30px;
    text-align: center;
    gap:5px;
  }
  .footer-nav a {
    display: inline-block;
    margin: 5px 10px;
  }
}

/* ABOUT US */

/* -----------------------------------------
   OUR MISSION, VISION, VALUES SECTION
----------------------------------------- */
.mvv-section {
  background: #fff;
  padding: 60px 0;
}

/* Melhoria do texto na seção About US */
.about-us-section {
  background: #fff;
  padding: 50px 20px;
}
.about-us-section p {
  margin: 15px 0;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Mission & Vision aprimoradas */
.mvv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.mvv-box {
  flex: 1;
  min-width: 280px;
  padding: 25px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mvv-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Gradientes para Mission e Vision */
.mission {
  background: linear-gradient(
    135deg,
    #F4C014 0%,
    #FFD85A 100%
  );
  color: #561EA8;
}

.vision {
  background: linear-gradient(
    135deg,
    #561EA8 0%,
    #6807F5 100%
  );
  color: #fff;
}

.mvv-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mvv-box p {
  line-height: 1.6;
  text-align: justify;
  font-size: 1.1rem;
}

/* Values */
.values {
  margin-top: 40px;
}

.values h3 {
  font-size: 2rem;
  color: #6807F5;
  margin-bottom: 30px;
  text-align: center;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.value-item h4 {
  color: #561EA8;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.value-item p {
  text-align: justify;
  line-height: 1.5;
  font-size: 1rem;
}

/* Ajustes responsivos para Mission, Vision e Values */
@media (max-width: 768px) {
  .mvv-row {
    flex-direction: column;
  }

  .value-item {
    flex: 1 1 100%;
  }
}

/* -----------------------------------------
   ABOUT US - HERO (melhorado)
----------------------------------------- */
.about-us-hero {
  background: #6807F5; /* cor principal roxa */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 10px; /* compensar o header fixo */
  background-image: linear-gradient(
    135deg,
    rgba(104, 7, 245, 0.9),
    rgba(86, 30, 168, 0.9)
  );
  background-size: cover;
  background-position: center;
}
.about-us-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.about-us-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* -----------------------------------------
   ORG STRUCTURE - Melhor design
----------------------------------------- */
.org-structure-section {
  background: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}
.org-structure-section h2 {
  font-size: 2rem;
  color: #561EA8;
  margin-bottom: 40px;
}
.org-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.role-card {
  flex: 1 1 280px;
  max-width: 320px;
  /* height: 300px; */
  background: #fff;
  border-radius: 12px;
  position: relative;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
  border-top: 4px solid #561EA8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.role-card h3 {
  color: #6807F5;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.role-card p {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.5;
  color: #333;
  margin-bottom: 25px;
}

/* Botão 'Ver membros' */
.view-members-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: #005f99;
  color: #ffffff;
  border: none;
  padding: 0.4em 0.8em;
  font-size: 0.8rem;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,95,153,0.3);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.view-members-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,95,153,0.3);
}
/* -----------------------------------------
   TEAM MEMBERS - Cards mais atraentes
----------------------------------------- */
.team-members-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.team-members-section h2 {
  font-size: 2rem;
  color: #561EA8;
  margin-bottom: 40px;
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.team-card {
  flex: 1 1 240px;
  max-width: 240px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  border-top: 4px solid #F4C014;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.team-card .member-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F4C014;
  background: #fff;
}
.team-card .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4 {
  color: #561EA8;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.team-card p {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

/* Ajustes responsivos para org-structure e team-members */
@media (max-width: 768px) {
  .org-roles {
    flex-direction: column;
    align-items: center;
  }
  .role-card {
    max-width: 80%;
  }
  .team-cards {
    flex-direction: column;
    align-items: center;
  }
  .team-card {
    max-width: 80%;
  }
}

/* -----------------------------------------
   MODAIS
----------------------------------------- */
.modal {
  display: none; /* Oculto por padrão */
  position: fixed;
  z-index: 2000; /* Fica acima de outros elementos */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 0;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px 20px 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #6807F5;
}

/* Estilização dos cartões de time dentro dos modais */
.modal .team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* -----------------------------------------
   PROGRAM SECTION STYLES
----------------------------------------- */
.program-section {
  padding: 60px 0;
  background: #fff;
}

.program-section h1 {
  text-align: center;
  color: #561EA8;
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.program-article {
  margin-bottom: 60px;
  padding: 40px;
  border-radius: 8px;
  background: #f9f9f9;
  border-top: 4px solid #F4C014;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.program-article h2 {
  color: #6807F5;
  font-size: 2rem;
  margin-bottom: 20px;
}

.program-article .overview {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.program-article h3 {
  color: #561EA8;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 2px solid #6807F5;
  display: inline-block;
  padding-bottom: 5px;
}

.program-article p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.8;
}

.program-article ul {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 20px;
}

.program-article ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.program-article ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F4C014;
  font-size: 1.2rem;
}

/* -----------------------------------------
   CARROSSEL DE VÍDEOS
----------------------------------------- */
.video-carousel {
  position: relative;
  margin: 40px 0;
}

.carousel-track {
  display: flex;
  justify-content: space-around;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  width: 300px;
  height: 170px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Controles do Carrossel */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(86, 30, 168, 0.8);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-control:hover {
  background-color: #561EA8;
}

.carousel-control.prev {
  left: -20px;
}

.carousel-control.next {
  right: -20px;
}

/* Responsividade para a seção de Program */
@media (max-width: 768px) {
  .program-article {
    padding: 20px;
  }

  .carousel-item {
    width: 250px;
    height: 140px;
  }
}

/* -----------------------------------------
   BE PART OF IT PAGE SPECIFIC STYLES
----------------------------------------- */
#be-part-of-it {
  /* Fundo com gradiente utilizando as cores principais */
  background: linear-gradient(135deg, #561EA8, #6807F5);
  color:black;
  padding: 80px 0;
}

#be-part-of-it .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#be-part-of-it h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #F4C014;
}

#be-part-of-it h2 {
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #561EA8;
  border-bottom: 2px solid #6807F5;
  padding-bottom: 5px;
}

#be-part-of-it p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

#be-part-of-it a {
  color: #20ADF5;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#be-part-of-it a:hover {
  color: #1E7AA8;
}

/* -----------------------------------------
   BE PART OF IT PAGE SPECIFIC STYLES - CTA Button
----------------------------------------- */
.cta-container {
  text-align: center;
  margin-top: 20px;
}

.btn-cta {
  /* background: linear-gradient(145deg, #F4C014, #6807F5); */
  background: #F4C014;
  color: #6807F5 !important;
  padding: 15px 35px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none !important;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* -----------------------------------------
   New Banner Text Styles
----------------------------------------- */
.banner-text {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.banner-text h1 {
  color: #333;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.banner-text p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* -----------------------------------------
   How We Drive Change - Educational Approach Substitution
----------------------------------------- */
.how-drive-change-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

/* .how-drive-change-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
} */


#intro .container p {
  margin: 15px 0;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.approach-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.method-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-left: 6px solid #561EA8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.method-box.peer {
  border-color: #F4C014;
}

.method-box.experiential {
  border-color: #561EA8;
}
/* -----------------------------------------
   Learn More Button
----------------------------------------- */
a.learn-more-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #F4C014;
  color: #561EA8;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}
a.learn-more-btn:hover {
  background-color: #FFD860;
  transform: translateY(-2px);
}


/* -----------------------------------------
   SDG Section
----------------------------------------- */
.sdg-section {
  background: #f5f5f5;
  padding: 80px 0;
}
.sdg-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

/* sdg-card now applies to clickable images */
.sdg-card {
  flex: 1 1 220px;
  max-width: 220px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.sdg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Ensure images fill the card container */
.sdg-card {
  object-fit: cover;
  height: auto;
}



/* -----------------------------------------
   Modais (pop-ups) - já existentes acima
----------------------------------------- */
/* .modal, .modal-content, .close, .modal .team-cards, etc. */

.modal-2 {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(86,30,168,0.8);
  padding: 60px 20px;
  overflow-y: auto;
}
.modal-content-2 {
  background: #fff;
  margin: 40px auto;
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  position: relative;
}
.modal-content-2 h3 {
  font-size: 2rem;
  color: #561EA8;
  margin-bottom: 20px;
  text-align: center;
}
.modal-content-2 p {
  margin: 20px 0;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}
.close-2 {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #6807F5;
  cursor: pointer;
  transition: color 0.2s ease;
}
.close-2:hover { color: #F4C014; }

/* -----------------------------------------
   Closing Section
----------------------------------------- */
.closing {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  border-top: 4px solid #561EA8;
  margin-top: 60px;
}

.closing h2 {
  font-size: 2.4rem;
  color: #561EA8;
  margin-bottom: 20px;
  font-weight: 600;
}

.closing p {
  font-size: 1.1rem;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* -----------------------------------------
   Responsividade
----------------------------------------- */
@media (max-width: 768px) {
  .hero, .how-drive-change-hero { 
    padding: 60px 20px; 
  }
  .section { 
    padding: 60px 0; 
  }
  /* Approach methods and SDG cards stack */
  .approach-methods, .sdg-cards {
    flex-direction: column;
    align-items: center;
  }
  a.learn-more-btn { 
    width: 80%; 
    text-align: center; 
  }
}

