* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

body {
  background: #FFFAF7;
  background-color: #FFFAF7;
  color: #333333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: #FFFAF7;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo {
  width: 90px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-size: 0.75rem;
  font-weight: 500;
}

.nav:hover {
  text-decoration: underline;
  color: #FCC02A;
  font-weight: 600;
}

nav a {
  color: #6B6661;
  text-decoration: none;
}

nav a:hover {
  color: #FCC02A;
}

nav a.selecionado {
  color: #FCC02A;
  font-weight: bold;
  border-bottom: solid 2px #FCC02A;
}

.conectese a {
  color: white;
  font-weight: 600;
}

.conectese {
  background: linear-gradient(to bottom, rgba(252, 192, 42, 1), rgba(252, 192, 42, 0.5));
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.menu-hamburguer {
  display: none;
  border: none;
  background: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1980E6;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  color: black;
}

.dropdown-btn:hover {
  color: #FCC02A;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  min-width: 170px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #333;
  text-decoration: none;
  font-size: .9rem;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

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

.main-container {
  max-width: 1100px;
  margin: 10px auto 60px auto; 
  padding: 0 20px;
}

.intro-section {
  text-align: center;
  margin-bottom: 40px;
}

.titulo-principal {
  font-size: 2rem;
  font-weight: 800;
  color: #1980E6; 
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.destaque-verde {
  color: #158841;
}

.descricao-intro {
  max-width: 750px;
  margin: 0 auto 30px auto;
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.6;
}

.card-impacto {
  display: inline-flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 15px;
  padding: 12px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  gap: 15px;
  text-align: left;
}

.icone-coracao {
  display: flex;
  align-items: center;
  justify-content: center;
}

.texto-impacto {
  display: flex;
  flex-direction: column;
}

.texto-impacto strong {
  font-size: 0.95rem;
  color: #158841;
}

.texto-impacto span {
  font-size: 0.8rem;
  color: #777777;
}

.patrocinadores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 25px;
  margin-bottom: 40px;
}

.img-conecta {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  transform: scale(1.5); 
}

a.card-logo {
  text-decoration: none;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr 1.5fr;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding: 50px 20px;
  max-width: 1200px; 
  margin: 0 auto;
}

footer {
  background-color: #D9D9D9;
  width: 100%;
  margin-top: auto; 
}

.titulo-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.maos {
  width: 20px;
}

.texto-footer {
  font-size: 0.875rem;
  color: #6B6661;
  line-height: 22px;
}

.conectando {
  width: 100%;
  max-width: 250px; 
}

.links {
  display: flex;
  flex-direction: column;
}

.links a {
  text-decoration: none;
  color: #6B6661;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.links a:hover {
  text-decoration: underline;
}

.contatos {
  display: flex;
  flex-direction: column;
}

.loc, .tel, .email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.loc p, .tel p, .email p {
  color: #6B6661;
  font-size: 0.875rem;
}

.redes-sociais {
  display: flex;
  flex-direction: column;
}

.icones {
  display: flex;
  gap: 12px;
}

.icones img {
  width: 42px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .patrocinadores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .patrocinadores-grid {
    grid-template-columns: 1fr;
  }
}

.card-logo {
  background-color: #FFFFFF;
  border-radius: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.botao-parceiro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0 55px 0; 
  width: 100%;
}

.btn-seja-parceiro {
  display: inline-flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  gap: 12px; 
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 16px; 
  padding: 20px 50px;
  text-decoration: none;
  color: #158841;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); 
  transition: all 0.2s ease;
}

.btn-seja-parceiro:hover {
  background-color: #F9F9F9;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08); 
}

.icone-mais {
  font-size: 1.2rem;
  font-weight: bold;
}

.banner-cta {
  background-color: #EBF5F0;
  border-radius: 20px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 800px) {
  .banner-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

.cta-conteudo {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 600px) {
  .cta-conteudo {
    flex-direction: column;
  }
}

.cta-icone {
  background-color: #048853;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-texto h3 {
  font-size: 1.15rem;
  color: #1A1A1A;
  margin-bottom: 5px;
  font-weight: 700;
}

.cta-texto p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.4;
}

.btn-patrocinador {
  background-color: #048853;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap; 
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-patrocinador:hover {
  background-color: #036F43;
  transform: translateY(-2px);
}

#userwayAccessibilityIcon, 
div[class*="userway"],
div[id*="userway"],
.uai {
  top: auto !important;
  left: auto !important;
  right: 6px !important;
  bottom: 200px !important; 
  position: fixed !important;
  z-index: 999999 !important;
}

@media(max-width: 850px) {
  #userwayAccessibilityIcon, 
  div[class*="userway"],
  div[id*="userway"],
  .uai {
    right: 8px !important;
    bottom: 120px !important; 
    transform: scale(0.9);
    transform-origin: bottom right;
  }
}

@media(max-width: 600px) {
  #userwayAccessibilityIcon, 
  div[class*="userway"],
  div[id*="userway"],
  .uai {
    right: 5px !important;
    bottom: 90px !important; 
    transform: scale(0.8);
    transform-origin: bottom right;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 40px 20px;
  }

  .conectando {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .titulo-footer,
  .loc,
  .email,
  .icones {
    justify-content: center;
  }
}

@media(max-width: 1210px) {
  .header-container {
    padding: 0 20px;
  }

  .navbar {
    gap: 22px;
  }

  .main-container {
    padding: 0 25px;
  }

  .patrocinadores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 990px) {
  .header-container {
    padding: 0 20px;
  }

  .navbar {
    gap: 15px;
  }

  .navbar a {
    font-size: 0.7rem;
  }

  .conectese {
    padding: 10px 16px;
  }

  .titulo-principal {
    font-size: 1.8rem;
  }

  .descricao-intro {
    font-size: 1rem;
  }
  
  .patrocinadores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .banner-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .cta-conteudo {
    flex-direction: column;
  }
}

@media(max-width: 850px) {
  .header {
    justify-content: center;
  }

  .header-container {
    width: 100%;
    padding: 20px;
    position: relative;
  }

  .menu-hamburguer {
    display: block;
  }
  
  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFAF7;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
  }

  .navbar.ativo {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: white;
    width: 100%;
  }

  .conectese {
    width: 220px;
  }

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

  .descricao-intro {
    font-size: 0.95rem;
  }

  .card-impacto {
    width: 100%;
    justify-content: center;
    padding: 18px;
  }

  .texto-impacto {
    text-align: center;
  }

  .patrocinadores-grid {
    grid-template-columns: 1fr;
  }

  .card-logo {
    height: 110px;
  }

  .btn-seja-parceiro {
    width: 100%;
    max-width: 320px;
  }
}

@media(max-width: 600px) {
  .logo {
    width: 70px;
  }
  
  .main-container {
    padding: 0 15px 40px;
  }

  .titulo-principal {
    font-size: 1.35rem;
  }

  .descricao-intro {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .card-impacto {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .texto-impacto {
    align-items: center;
  }

  .card-logo {
    padding: 15px;
  }

  .card-log img {
    max-width: 80%;
  }

  .btn-seja-parceiro {
    padding: 18px;
    font-size: 0.95rem;
  }

  .banner-cta {
    border-radius: 15px;
    padding: 25px 18px;
  }

  .cta-texto h3 {
    font-size: 1rem;
  }

  .cta-texto p {
    font-size: 0.9rem;
  }

  .btn-patrocinador {
    width: 100%;
    text-align: center;
  }
}