/* RESET E VARIÁVEIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --azul-principal: #11ABE0;
  --amarelo-destaque: #FCC62D;
  --branco: #FFFFFF;
  --fundo: #F3F3F3;
  --cinza-claro: #F3F3F3;
  --texto: #1B2A41;
  --sombra: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* TIPOGRAFIA */
body {
  font-family: 'Outfit', sans-serif;
  color: var(--texto);
  line-height: 1.6;
}

/* HEADER BASE */
.header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Links dos cards de serviços */
.servico-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.servico-link:hover .servico-card {
  transform: translateY(-5px);
}

.navbar {
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}

/* Logo com animação */
.logo-container {
  cursor: pointer;
}

.logo-svg {
  width: 80px;
  height: 80px;
}

/* Menu Desktop */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #11ABE0;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 8px 20px;
  display: block;
  font-size: 13px;
}

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

/* Botão Doe Agora */
.btn-doar {
  background: #11ABE0;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-doar:hover {
  background: #FCC62D;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 198, 45, 0.3);
}

/* Menu Hamburger */
.hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: none;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

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

.hamburger.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

/* Hide dropdown arrows on desktop */
.dropdown-arrow {
  display: none;
}

/* HERO SECTION */

#hero {
  height: 400px;
  position: relative;
  overflow: hidden;
  margin: 80px 0 0 0;
  padding: 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  cursor: grab;
  user-select: none;
}

body,
html {
  margin: 0;
  padding: 0;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  margin: 0;
  padding: 0;
}

.carousel img.active {
  opacity: 1;
}


.slide-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.carousel:active {
  cursor: grabbing;
}

/* CAROUSEL DOTS */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.6s ease;
}

.dot.active {
  background: var(--azul-principal);
}

/* SEÇÕES GERAIS */
section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ALTERNÂNCIA DE FUNDOS */
#historia,
#noticias {
  background: var(--fundo);
}

#valores,
#servicos,
#contato {
  background: var(--branco);
}

#impacto {
  background: var(--fundo);
}

/* TÍTULOS */
h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--azul-principal);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

h2,
h3.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--azul-principal);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--texto);
}

/* GRID RESPONSIVO */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* CARDS */
.card {
  background: var(--branco);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--sombra);
  transition: transform 0.6s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* SEÇÃO HISTÓRIA */
.historia-content {
  display: block;
  text-align: center;
}

.historia-text-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  /* era 40px 20px, agora menor */
}

.historia-paragrafo {
  font-size: 20px;
  line-height: 1.8;
  color: var(--texto);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-play-state: paused;
}

.historia-paragrafo:nth-child(1) {
  animation-delay: 0.2s;
}

.historia-paragrafo:nth-child(2) {
  animation-delay: 0.6s;
}

.historia-paragrafo:nth-child(3) {
  animation-delay: 1.0s;
}

.historia-paragrafo:nth-child(4) {
  animation-delay: 1.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.historia-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
}


/* SEÇÃO VALORES HORIZONTAL */
.valores-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
  gap: 40px;
}

.valor-item {
  flex: 1;
  text-align: center;
  padding: 0 30px;
  transition: transform 0.3s ease;
}

.valor-item:hover {
  transform: scale(1.05);
}

.divisor {
  width: 3px;
  height: 295px;
  background: #EAEAEA;
  margin: 0 40px;
  align-self: center;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}

/* Ícones individuais para manter proporção */
.valor-icon {
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.valor-icon[src*="missao"] {
  width: 90px;
  height: 90px;
}

.valor-icon[src*="visao"] {
  width: 95px;
  height: 75px;
}

.valor-icon[src*="valores"] {
  width: 85px;
  height: 85px;
}

.valor-title {
  color: var(--azul-principal);
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Outfit;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.valor-text {
  color: var(--texto);
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: Outfit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

/* GRID IMPACTO */
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.impacto-card {
  padding: 40px 30px;
  text-align: center;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.impacto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.impacto-card:hover::before {
  left: 100%;
}

.impacto-card.azul {
  background: var(--azul-principal);
  color: white;
}

.impacto-card.amarelo {
  background: var(--amarelo-destaque);
  color: white;
}

.impacto-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.numero {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.impacto-card:hover .numero {
  transform: scale(1.1);
}

.descricao {
  font-size: 1.2rem;
  font-weight: 700;
  /* Bold */
  margin-bottom: 8px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.servico {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 1;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SEÇÃO SERVIÇOS */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.servico-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.servico-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.servico-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(17, 171, 224, 0.3) 0%,
      rgba(17, 171, 224, 0.4) 50%,
      rgba(252, 198, 45, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.servico-card:hover .card-overlay {
  background: linear-gradient(135deg,
      rgba(17, 171, 224, 0.7) 0%,
      rgba(17, 171, 224, 0.8) 50%,
      rgba(252, 198, 45, 0.7) 100%);
  opacity: 0.9;
}

.servico-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.servico-desc {
  font-size: 1.1rem;
  color: white;
  text-align: center;
  font-weight: 500;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SEÇÃO NOTÍCIAS */
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.noticia-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.noticia-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.noticia-imagem {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.noticia-content {
  padding: 24px;
}

.noticia-categoria {
  color: var(--azul-principal);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.noticia-titulo {
  color: var(--texto);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.noticia-data {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.noticia-resumo {
  color: var(--texto);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-leia-mais {
  display: inline-block;
  background: var(--azul-principal);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-leia-mais:hover {
  background: var(--amarelo-destaque);
  transform: translateY(-2px);
}

.btn-ler-mais {
  background: var(--azul-principal);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-ler-mais:hover {
  background: var(--amarelo-destaque);
}

.noticias-actions {
  text-align: center;
}

.btn-ver-mais {
  background: var(--azul-principal);
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-ver-mais:hover {
  background: var(--amarelo-destaque);
  transform: translateY(-2px);
}

/* SEÇÃO CONTATO */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contato-item {
  margin-bottom: 2rem;
}

.contato-item strong {
  color: var(--azul-principal);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* FORMULÁRIO */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--texto);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--fundo);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azul-principal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--fundo);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.6s ease;
}

.btn-enviar {
  background: var(--azul-principal);
  color: var(--branco);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-enviar:hover {
  background: var(--amarelo-destaque);
}

.btn-enviar {
  background: var(--azul-principal);
  color: var(--branco);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.6s ease;
}

/* SCROLL FLOAT ANIMATIONS */
.scroll-float {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-float.float-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-float.float-left {
  transform: translateX(-50px);
}

.scroll-float.float-left.float-in {
  transform: translateX(0);
}

.scroll-float.float-right {
  transform: translateX(50px);
}

.scroll-float.float-right.float-in {
  transform: translateX(0);
}

/* FOOTER */
footer {
  background: #2a2a2a;
  color: var(--branco);
  padding: 3rem 0 1rem;
}

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

.footer-section:first-child {
  text-align: center;
}

.footer-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px auto;
  display: block;
}

.footer-section h3 {
  color: var(--branco);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--azul-principal);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: white;
  color: #666;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--azul-principal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.contact-info p {
  margin-bottom: 5px;
  color: #ccc;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

/* RESPONSIVIDADE */
/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 75px;
  }

  .logo-container {
    flex: 0 0 auto;
  }

  .logo-svg {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
  }

  .logo-container:hover .logo-svg {
    transform: scale(1.15);
  }

  .btn-doar {
    display: flex;
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
    margin-right: 15px;
  }

  .hamburger {
    display: flex;
    flex: 0 0 auto;
    width: 30px;
    height: 25px;
    padding: 5px;
  }

  /* Menu Mobile - Padrão Indústria */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 75px;
    flex-direction: column;
    background: white;
    width: 100%;
    height: calc(100vh - 75px);
    text-align: left;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow-y: auto;
    z-index: 999;
  }

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

  .nav-menu li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    padding: 16px 20px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-weight: 500;
  }


  /* Dropdown Arrows */
  .dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #666;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Dropdown Menu Mobile - Padrão */
  .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .dropdown-menu li {
    border-bottom: 1px solid #e9ecef;
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 14px 20px 14px 40px;
    font-size: 15px;
    color: #555;
    font-weight: 400;
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    background: #e9ecef;
    color: #11ABE0;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }

    to {
      opacity: 1;
      max-height: 300px;
    }
  }


  h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azul-principal);
  }

  .typing-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--texto);
    margin-bottom: 1.5rem;
    /* era 30px, agora menor */
    white-space: pre-wrap;
  }

  .historia-text-center {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    /* era 40px 20px, agora menor */
  }

  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  #hero {
    height: 250px;
    margin-top: 75px;
  }

  .historia-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .historia-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .impacto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .numero {
    font-size: 3rem;
  }

  .impacto-card {
    padding: 30px 20px;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-image {
    height: 220px;
  }

  .servico-title {
    font-size: 1.4rem;
  }

  .servico-desc {
    font-size: 1rem;
  }

  .valores-horizontal {
    flex-direction: column;
    gap: 40px;
  }

  .valor-item {
    padding: 20px 0;
  }

  .divisor {
    display: none;
  }

  .valor-icon[src*="missao"] {
    width: 70px;
    height: 70px;
  }

  .valor-icon[src*="visao"] {
    width: 75px;
    height: 60px;
  }

  .valor-icon[src*="valores"] {
    width: 65px;
    height: 65px;
  }

  .valor-title {
    font-size: 20px;
  }

  .valor-text {
    font-size: 14px;
  }

  .btn-contato {
    display: none;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 0 1rem;
      /* Menos padding no mobile */
    }

    .logo-svg {
      width: 70px;
      height: 70px;
      margin-left: 10px;
      /* Empurrar para dentro */
    }
  }

  .card {
    padding: 1.5rem;
  }

  #hero {
    height: 200px;
  }

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

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

}

.impacto-card .counter {
  font-size: 2.5rem;
}

.header-container {
  padding: 0 1rem;
}

.destaque {
  font-weight: bold;
  color: var(--azul-principal);
}

.quem-somos-titulo {
  background: #FCC62D;
  color: var(--texto);
  padding: 5px 10px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.frase-destaque {
  font-size: 20px;
  font-weight: bold;
  color: var(--texto);
  margin-bottom: 30px;
  font-style: italic;
}

.historia-paragrafo {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--texto);
}

.destaque {
  color: var(--azul-principal);
  font-weight: bold;
}

.estrutura-lista {
  margin: 20px 0;
  padding-left: 20px;
}

.estrutura-lista li {
  margin-bottom: 10px;
  color: var(--texto);
  line-height: 1.6;
}

.estrutura-lista strong {
  color: var(--azul-principal);
}

/*
New
styles
for
Impacto
Social
lists
*/

/* IMPACTO SOCIAL LISTS - Novos Estilos */
.impacto-lista {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  /* Bold */
}

.impacto-lista li {
  margin-bottom: 5px;
  color: #fff;
  /* White */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.impacto-subtexto {
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  /* Bold */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.impacto-card h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  min-height: 3rem;
  /* Aligns titles considering length */
  display: flex;
  align-items: center;
  justify-content: center;
}

.impacto-card .numero {
  font-size: 4rem;
  margin: 10px 0;
  font-weight: 800;
}

.impacto-icon {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.impacto-icon img {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  width: 70px;
  /* Slightly larger */
  height: 70px;
  object-fit: contain;
}

.impacto-card:hover .impacto-icon {
  transform: scale(1.1);
}

.descricao {
  font-size: 1.3rem;
  font-weight: 700;
  /* Bold */
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-transform: lowercase;
  /* Matches 'atendidos diretamente' style */
}

/* Specific overrides for alignment if needed */
.impacto-lista,
.impacto-subtexto {
  text-align: center;
  /* Center aligned as per user request/new look? Original was left aligned in list. Let's try center for harmony per user "harmonioso" */
}