* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

/* HOME */
.hero {
  height: 100vh;
  background: url("FOTOS_SITE/hero.jpg") center center / cover no-repeat;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.6);
  color: #fff;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
}

.hero-buttons {
  margin-top: 20px;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* PROPOSITO */
.mission {
  padding: 90px 20px;
  background: #F8F5F0;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.mission-text {
  flex: 1;
}

.mission-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: #1A7D5A;
}

.mission-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.mission-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

/* Imagem */
.mission-image {
  flex: 1;
}

.mission-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* ===== MODELO DE IMPACTO ===== */

.modelo-impacto {
  padding: 90px 0;
  background: #F8F5F0;
}

.container-impacto {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* CABEÇALHO */

.impacto-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.impacto-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.impacto-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* GRID */

.impacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARDS */

.impacto-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-top: 4px solid #1A7D5A;
}

.impacto-card:hover {
  transform: translateY(-6px);
}

.impacto-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.impacto-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVIDADE */

/* Notebook */
@media (max-width: 1100px) {
  .impacto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .impacto-header {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
  }
  
  .impacto-grid {
    grid-template-columns: 1fr;
  }

  .impacto-header h2 {
    font-size: 30px;
  }

  .impacto-header p {
    font-size: 16px;
  }
}

/* Celular */
@media (max-width: 480px) {
  .modelo-impacto {
    max-width: 650px;
    padding: 30px 0;
  }

  .impacto-card {
    padding: 15px;
  }
}

/*  RESULTADOS */
.results {
  padding: 70px 20px;
  background: #F8F5F0;
  text-align: center;
}

.results h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.results-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.results-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-box strong {
  font-size: 2.2rem;
  color: #1A7D5A;
  display: block;
}

.result-box span {
  font-size: 0.9rem;
  color: #444;
}

/* ============ 7 PILARES =============== */
.pillars {
  padding: 70px 0px; 
  background: #F8F5F0;
}

.pillars h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
}

/* Área visível menor (respiro lateral) */
.pillars-carousel {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 50px;
}

/* Trilho */
.pillars-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  scroll-behavior: smooth;
}

/* Pilar */
.pillar-card {
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  opacity: 1;
  transition: 0.4s;
}

/* Pilar parcialmente visível (efeito “continua”) */
.pillar-card.partial {
  opacity: 0.4;
}

/* IMAGENS DOS PILARES */
.pillar-img {
  height: 110px;
  border-radius: 12px;
  margin-bottom: 12px;
  background-size: cover;
  background-position: center;
}

.saude { background-image: url("FOTOS_SITE/saudeTeleMed.jpg"); }
.nutricao { background-image: url("FOTOS_SITE/nutricao.jpg"); }
.agua { background-image: url("FOTOS_SITE/agua.webp"); }
.energia { background-image: url("FOTOS_SITE/energia.jpg"); }
.agricultura { background-image: url("FOTOS_SITE/agricultura.jpg"); }
.esporte { background-image: url("FOTOS_SITE/esporte.jpg"); }
.empreendedorismo { background-image: url("FOTOS_SITE/EMPREENDEDORISMO.jpg"); }

.pillar-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.pillar-card a {
  color: #FF6B35;
  font-weight: 600;
  text-decoration: none;
}

/* Setas */
.pillar-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1A7D5A;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.pillar-arrow.left {
  left: 0px;
}

.pillar-arrow.right {
  right: 0px;
}

/* Hover */
.pillar-card:hover {
  transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 768px) {
  .pillars-carousel {
    padding: 0 30px;
  }

  .pillar-card {
    min-width: 260px;
  }
}

@media (max-width: 450px) {
  .pillars-carousel {
    padding: 0 15px;
  }

  .pillars-track {
    gap: 15px; /* reduz o gap no mobile */
  }

  .pillar-card {
    flex: 0 0 calc(50% - 7.5px); /* trava EXATAMENTE 2 por vez */
  }
}

/*============= SOBRE A EQUIPE ===============*/
.team-section{
padding:10px 20%;
background:#F8F5F0;
text-align:center;
}

.team-section h2{
font-size:38px;
margin-bottom:10px;
}

.team-subtitle{
margin-bottom:10px;
color:#555;
}

.carousel {
overflow: hidden;
position: relative;
}

.carousel-track{
display:flex;
transition:transform 0.5s ease;
}

.slide {
min-width: 100%;
}

.member{
display:flex;
align-items:center;
justify-content:space-between;
margin:20px auto;
gap:40px;
max-width:700px;
background-color: #1a7d5a10;
border-radius: 10px;
}

.member-text{
width:55%;
text-align:left;
padding: 5px;
}

.member img{
width:40%;
max-width:250px;
height:220px;
object-fit:cover;
border-radius:10px;
}

.member-text h3{
font-size:24px;
margin-bottom:5px;
padding: 5px;
}

.member-text h4{
font-size:16px;
color:#777;
margin-bottom:10px;
padding: 5px;
}

.member.reverse{
flex-direction: row-reverse;
background-color: #1a7d5a10;
border-radius: 10px;
}

.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
background: transparent;
border:none;
font-size:30px;
cursor:pointer;
padding: 10px;
}

.next{
right:-10px;
}

/* ================= RESPONSIVIDADE ================= */

/* Tablet */
@media (max-width:900px){

.member{
gap:25px;
}

.member img{
width:200px;
height:180px;
}

}

@media (max-width:768px){

/* reduzir margem lateral */
.team-section{
padding:40px 20px;
}

/* card vertical */
.member{
padding:15px;
gap:10px;
}

/* reduzir texto */
.member-text h3{
font-size:22px;
margin-bottom:3px;
}

.member-text h4{
font-size:14px;
margin-bottom:6px;
}

.member-text p{
font-size:14px;
line-height:1.4;
}

/* reduzir imagem */
.member img{
max-width:130px;
}

/* diminuir espaço entre membros */
.slide{
gap:15px;
}

}


/* TELEAME SECTION */
.teleame {
  background: linear-gradient(135deg, #1A7D5A 0%, #15654A 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Efeito decorativo */
.teleame::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.teleame-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* LOGO */
.teleame-logo-wrapper {
  flex-shrink: 0;
}

.teleame-logo {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.teleame-logo:hover {
  transform: scale(1.05);
}

/* TEXTO */
.teleame-text {
  max-width: 600px;
}

.teleame-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.teleame-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* BOTÃO */
.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  background: #FF6B35;
  color: #fff;
}

.btn-primary:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ========== RESPONSIVO MOBILE ========== */
@media (max-width: 768px) {
  
  .teleame {
    padding: 60px 20px;
    text-align: center;
  }

  .teleame::before {
    width: 250px;
    height: 250px;
    top: -10%;
    right: -25%;
  }

  .teleame-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  /* LOGO CENTRALIZADA */
  .teleame-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .teleame-logo {
    width: 170px;
    margin: 0 auto;
  }

  /* TEXTO CENTRALIZADO */
  .teleame-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .teleame-text h2 {
    font-size: 1.65rem;
    margin-bottom: 18px;
  }

  .teleame-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* BOTÃO CENTRALIZADO */
  .btn {
    display: inline-block;
    padding: 13px 28px;
    font-size: 0.85rem;
  }
}

/* TELAS MUITO PEQUENAS */
@media (max-width: 480px) {
  
  .teleame {
    padding: 50px 15px;
  }

  .teleame-logo {
    width: 140px;
  }

  .teleame-text h2 {
    font-size: 1.4rem;
  }

  .teleame-text p {
    font-size: 0.95rem;
  }

  .btn {
    width: 90%;
    max-width: 280px;
    padding: 12px 24px;
  }
}

/* ======================== DOAÇÃO ======================== */
.donation {
  background-color: #F8F5F0;
  padding: 60px 20px;
  text-align: center;
}

.progress {
  background: #ddd;
  height: 20px;
  width: 100%;
  margin: 10px 0;
}

.progress-bar {
  background: #FF6B35;
  height: 100%;
}

/* CONECT */
.connect {
  background: #F8F5F0;
  padding: 70px 20px;
  text-align: center;
}

.connect-box {
  max-width: 600px;
  margin: auto;
}

.connect h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.connect-text {
  font-size: 17px;
  margin-bottom: 25px;
  color: #555;
}

/* FORM */

.connect-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.connect-form input {
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 250px;
  font-size: 15px;
}

.connect-form button {
  padding: 14px 22px;
  border: none;
  background: #1A7D5A;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.connect-form button:hover {
  background: #17662a;
}

/* confiança */

.connect-trust {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #777;
}


/* ================= Carrosel Colaboraderos ================= */ 
.apoio-carousel {
  padding: 60px 8%;
  background: #f8f5f0;
  overflow: hidden;
}

.apoio-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.apoio-track-wrapper {
  overflow: hidden;
  position: relative;
}

.apoio-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: apoio-scroll 30s linear infinite;
}

/* PAUSA VISUAL SUAVE ENTRE LOOPS */
.apoio-track::after {
  content: "";
  width: 80px;
}

/* CARD */
.apoio-card {
  min-width: 180px;
  max-width: 1800px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.apoio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* INFO */
.apoio-info {
  padding: 15px;
  text-align: center;
}

.apoio-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #FF6B35;
}

.apoio-info p {
  font-size: 14px;
  color: #777;
}

/* HOVER */
.apoio-card:hover {
  transform: scale(1.08);
}

/* ANIMAÇÃO */
@keyframes apoio-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .apoio-track {
    animation: apoio-scroll 25s linear infinite;
    gap: 15px;
  }

  .apoio-card {
    min-width: 120px;
    max-width: 120px;
  }

  .apoio-card img {
    height: 120px;
  }

  .apoio-info {
    padding: 10px;
  }

  .apoio-info h3 {
    font-size: 13px;
  }

  .apoio-info p {
    font-size: 12px;
  }

}

@keyframes apoio-scroll-mobile {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}




/* ================= CONTATO ================= */ 
.contact {
   padding: 80px 20px; 
   text-align: center; 
   background: #F8F5F0; 
  } 

.contact h2 {
   font-size: 32px; 
   margin-bottom: 10px; 
  } 

.contact p {
  margin-bottom: 40px;
  color: #555; 
  } 

.contact-grid {
  display: flex;
  justify-content: center; 
  gap: 40px; 
  flex-wrap: wrap; 
  } 

.contact-card {
   text-decoration: none; 
   background: white; 
   padding: 30px; 
   width: 180px; 
   border-radius: 12px; 
   box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
   transition: 0.3s ease; 
   color: #333; 
  } 

.contact-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
  }
.contact-icon { 
  font-size: 36px; 
  margin-bottom: 15px; 
} 

.contact-card:hover .fa-whatsapp { 
  color: #25D366; 
} 

.contact-card:hover .fa-instagram { 
  color: #E1306C; 
} 

.contact-card:hover .fa-envelope { 
  color: #f34747; 
}

/*reponsividade contato*/
@media (max-width: 768px) {

  .contact {
    padding: 50px 15px;
  }

  .contact h2 {
    font-size: 26px;
  }

  .contact p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .contact-grid {
    gap: 15px;
  }

  .contact-card {
    width: 100%;
    max-width: 140px;
    padding: 20px;
  }

  .contact-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

}

/* ================= FOOTER ================= */
.footer {
  background: rgb(34, 34, 34);
  color: rgb(255, 255, 255);
  padding: 60px 8% 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID BASE (DESKTOP) */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* TEXTOS */
.footer-about h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 16px;
  color: rgb(255, 102, 51);
  font-weight: 600;
  margin-bottom: 15px !important;
  font-style: italic;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 20px !important;
}

.footer-cnpj {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 20px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: rgb(255, 102, 51);
  padding-left: 5px;
}

/* CONTATO */
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}


/* RODAPÉ FINAL */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: white;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
}

/* LOGOS DOS PARCEIROS */
.footer-partners {
  text-align: center;
}

.footer-partners h4{
  color: white;
}
.partners-logos img {
  height: 45px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* EFEITO AO PASSAR O MOUSE */
.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ================= RESPONSIVIDADE ================= */

/* TABLET */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-links a {
    margin-bottom: 12px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-about h3 {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .footer-description {
    font-size: 13px;
  }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}



/* ================= RESPONSIVIDADE GLOBAL ================= */

@media (max-width: 1200px) {
  .hero {
    background: url("FOTOS_SITE/hero.jpg") center center / cover no-repeat;
  }
}

@media (max-width: 992px) {
  .hero {
    background: url("FOTOS_SITE/hero.jpg") center center / cover no-repeat;
  }
}

@media (max-width: 768px) {
  .hero {
    background: url("FOTOS_SITE/hero.jpg") center center / cover no-repeat;
    height: 80vh;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
    background-position: center top;
  }
}

@media (max-width: 992px) {
  .process-img {
    height: 180px;
  }
}

@media (max-width: 600px) {
  .process-img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .pillar-img {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .pillar-img {
    height: 90px;
  }
}

.team-photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 6px;
}

.teleame-img {
  flex: 1;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .teleame-img {
    aspect-ratio: 4 / 3;
  }
}

/* ===== NOTEBOOKS MENORES ===== */
@media (max-width: 1200px) {
  .teleame {
    padding: 80px 120px;
  }
}

/* ===== TABLETS ===== */
@media (max-width: 992px) {

  /* HERO */
  .overlay h1 {
    font-size: 2.1rem;
  }

   /* PROCESSO */  
  @media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

  /* RESULTADOS */
 @media (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

  /* PROPOSITO */

@media (max-width: 992px) {
  .mission-container {
    gap: 40px;
  }

  .mission-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-text h2 {
    font-size: 1.8rem;
  }

  .mission-text h3 {
    font-size: 1.1rem;
  }

  .mission-image img {
    max-height: 320px;
  }
}

 /* SOBRE A EQUIPE */

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-photo {
    height: 240px;
  }

  .team {
    padding: 50px 20px;
  }
}

  /* TELEAME */
  .teleame {
    padding: 70px 60px;
  }

  .teleame-content {
    flex-direction: column;
    text-align: center;
  }

  .teleame-img {
    height: 220px;
  }
}

/* ===== MOBILE PADRÃO ===== */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: auto;
  }

  .overlay {
    padding: 60px 20px;
    text-align: center;
  }

  .overlay h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    margin-right: 0;
  }

  /* IMPACT NUMBERS */
  .impact-numbers {
    flex-direction: column;
    padding: 40px 20px;
  }

  .number-box {
    width: 100%;
  }

  /* PILARES */
  .pillars {
    padding: 50px 0;
  }

  .pillars-carousel {
    padding: 0 40px;
  }

  .pillar-card {
    min-width: 260px;
  }

  /* SETAS */
  .pillar-arrow {
    width: 38px;
    height: 38px;
  }

  /* TELEAME */
  .teleame {
    padding: 60px 20px;
  }

  /* DOAÇÃO */
  .donation {
    padding: 50px 20px;
  }

  .progress {
    height: 16px;
  }

  /* CONNECT */
  .connect form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .connect input,
  .connect button {
    width: 100%;
    padding: 12px;
  }
}

/* ===== CELULARES PEQUENOS ===== */
@media (max-width: 480px) {

  .overlay h1 {
    font-size: 1.5rem;
  }

  .pillar-card {
    min-width: 240px;
  }

  .pillar-card h3 {
    font-size: 0.9rem;
  }

  .pillar-card p {
    font-size: 0.8rem;
  }

  .teleame-img {
    height: 180px;
  }
}

/* ===== CELULARES MUITO PEQUENOS ===== */
@media (max-width: 360px) {

  .overlay h1 {
    font-size: 1.3rem;
  }

  .pillar-card {
    min-width: 220px;
  }

  .pillar-arrow {
    width: 34px;
    height: 34px;
  }
}

/* ================= CARROSSEL MOBILE 7 pilares ================= */
@media (max-width: 768px) {

  .pillars-carousel {
    padding: 0 15px;
  }

  .pillars-track {
    gap: 14px;
  }

  /* 3 pilares visíveis */
  .pillar-card {
    min-width: calc(100% / 3 - 10px);
    opacity: 1 !important;
    transform: none !important;
  }

  /* Imagem menor */
  .pillar-img {
    height: 90px;
  }

  .pillar-card h3 {
    font-size: 0.8rem;
  }

  .pillar-card p {
    font-size: 0.75rem;
  }

  /* Setas menores no mobile */
  .pillar-arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}
