@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@400;500;600&display=swap");

:root {
  --green: #0b7a3a;
  --pink: #ff5f95;
  --blue: #2d6cdf;
  --yellow: #facc15;
  --bg: #f9fafb;
  --text: #1f2937;
  --green-light: #13a551;
  --orange: #ffaa00;
}

.bg-white {
  background: #ffffff;
}
.bg-gray {
  background: #f4f4f4;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ====== BOTÃO DARK MODE ====== */
.theme-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

.theme-switch {
  width: 70px;
  height: 36px;
  border-radius: 30px;
  background: #dcdcdc;
  position: relative;
  cursor: pointer;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
}

.switch-slider {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    #fff9c4 0%,
    #ffeb3b 70%,
    #fbc02d 100%
  );
  position: absolute;
  top: 3px;
  left: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255, 200, 0, 0.6);
}

.switch-slider::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 230, 150, 0.4) 20%,
    transparent 70%
  );
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

body.dark .theme-switch {
  background: #2a2f3a;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.08);
}

body.dark .switch-slider {
  left: calc(100% - 33px);
  background: radial-gradient(circle at 40% 40%, #ddd 0%, #bbb 70%, #999 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

body.dark .switch-slider::before {
  background: radial-gradient(circle at 25% 30%, #ccc 2%, transparent 0),
    radial-gradient(circle at 60% 60%, #bbb 3%, transparent 0),
    radial-gradient(circle at 45% 75%, #aaa 2%, transparent 0),
    radial-gradient(circle at 70% 40%, #999 1.5%, transparent 0);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}

.theme-btn {
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #333;
  border: 1px solid #ccc;
  transition: background 0.3s ease;
}

.theme-btn:hover {
  background: #e0e0e0;
}

body.dark .theme-btn {
  background: #333;
  color: #fff;
  border: 1px solid #555;
}

body.dark .theme-btn:hover {
  background: #444;
}

.menu-hamburger {
  position: relative;
  padding: 1rem;
}

.menu-hamburger .theme-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  display: block;
}

body.dark .menu-hamburger {
  background-color: rgba(0, 0, 0, 0.85);
}
body.dark .menu-hamburger .theme-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
body.dark .menu-hamburger .theme-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.header.scrolled .theme-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body.dark .header.scrolled .theme-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

.theme-switch {
  width: 90px;
  height: 38px;
  border-radius: 30px;
  background: #dcdcdc;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.theme-switch svg {
  width: 20px;
  height: 20px;
  color: #174f37  ;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.switch-slider {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  transition: left 0.3s ease;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

body.dark .theme-switch {
  background: #2a2f3a;
}

body.dark .switch-slider {
  left: calc(100% - 34px);
}

.icon-sun {
  opacity: 1;
  color: #ffcc33;
}

.icon-moon {
  opacity: 0.55;
  color: #cdd4ff;
}

body.dark .icon-sun {
  opacity: 0.55;
  color: #ffcc33;
}

body.dark .icon-moon {
  opacity: 1;
  color: #cdd4ff;
}


/* ===== DARK MODE GLOBAL ===== */
body.dark {
  background: linear-gradient(135deg, #0d1117, #161b22);
  color: #f0f0f0;
}

body.dark .header {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
  box-shadow: none;
}

body.dark .header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

body.dark .main-nav a {
  color: #ddd;
}
body.dark .main-nav a.active {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.dark .header.scrolled .main-nav a {
  color: #fff;
}
body.dark .header.scrolled .main-nav a.active {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.dark .btn-donate {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  color: #fff;
}

body.dark section {
  background: transparent;
  color: #e5e7eb;
}
body.dark .section-title {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.dark .section-subtitle {
  color: #ffffff;
}

body.dark .atividades-item p {
  color: #ffffff;
}

body.dark .contato-info p,
body.dark .contact-list li {
  color: #ffffff;
}

/* Cards Atividades */
.atividades {
  padding: 100px 20px;
  text-align: center;
  background: #fafafa;
}

.atividades h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.atividades p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

.atividades-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -120px;
  position: relative;
  flex-wrap: nowrap;
}

.atividades-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 450px;
  text-align: center;
  transition: transform 0.5s, z-index 0.5s, box-shadow 0.5s;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transform: scale(1) translateY(0);
  z-index: 1;
}

.atividades-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px;
}

.atividades-item p {
  padding: 16px 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.atividades-item:nth-child(1) {
  z-index: 1;
}
.atividades-item:nth-child(2) {
  z-index: 3;
}
.atividades-item:nth-child(3) {
  z-index: 5;
}
.atividades-item:nth-child(4) {
  z-index: 3;
}
.atividades-item:nth-child(5) {
  z-index: 1;
}

.atividades-item:hover {
  transform: scale(1.12) translateY(-20px);
  z-index: 10 !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.atividades-item.auto-hover {
  transform: scale(1.12) translateY(-20px);
  z-index: 10 !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* ================================
     DARK MODE
  ================================ */
body.dark .atividades {
  background: linear-gradient(135deg, #1a1f29, #0d1117);
}

body.dark .atividades-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
}

body.dark .atividades-item:hover,
body.dark .atividades-item.auto-hover {
  transform: scale(1.12) translateY(-20px);
  z-index: 10 !important;
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.25);
}

body.dark .btn-atividades {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  color: #fff;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
  animation: pulse-dark 2s infinite alternate;
}

@keyframes pulse-dark {
  0% {
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
  }
  100% {
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.8);
  }
}

body.dark .footer {
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.dark .footer p,
body.dark .footer a {
  color: #bbb;
}

/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */
.topbar {
  background: transparent;
  font-size: 14px;
  padding: 6px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.btn-donate {
  background: #ff4081;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-donate i {
  margin-right: 6px;
}
.btn-donate:hover {
  background: #e73370;
  transform: translateY(-2px);
}

.header {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
  padding: 4px 0;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Navegação */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 13px;
}
.main-nav a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  padding: 4px 8px;
  margin: 0 4px;
  cursor: pointer;
}

.header:not(.scrolled) .main-nav a {
  color: #ffffff;
}
.header:not(.scrolled) .main-nav a:hover {
  color: var(--green);
}
.main-nav a:hover {
  color: var(--green);
  transform: translateY(-2px);
}
.header.scrolled .main-nav a {
  color: var(--text);
}
.header.scrolled .main-nav a:hover {
  color: var(--green);
}
.header.scrolled .main-nav a.active,
.header:not(.scrolled) .main-nav a.active {
  color: var(--green-light);
  font-weight: 600;
  transform: translateY(-2px);
}
.main-nav a.active {
  color: var(--green);
  font-weight: 700;
}

.header:not(.scrolled) .brand-slogan{
  color: #ffffff;
}
.header.scrolled .main-nav a {
  color: var(--text);
}

/* Botão hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
  z-index: 1100;
}
.hamburger:hover {
  transform: scale(1.1);
}

.header.scrolled .hamburger {
  color: #000;
}

body.dark .hamburger,
body.dark .header.scrolled .hamburger {
  color: #fff;
}

/* ====== Logo ====== */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 55px;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title h1 {
  font-size: 16px;
  color: var(--green);
  margin: 0;
}

.brand-slogan {
  font-size: 11px;
  margin-top: 2px;
  line-height: 1.2;
}

/* ====== Modo escuro ====== */
body.dark .brand-title h1 {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark .brand-slogan {
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #c3ecd1, #a2d7b0, #7ebf92);

  background-size: 400% 400%;
  animation: moveGradient 12s ease infinite;
  color: #fff; 
  position: relative;
  padding: 175px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  bottom: 150px;
  left: 30px;
  transform: rotate(-30deg);
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  transform: rotate(-30deg);
}

body.dark .hero {
  color: #555; 
  border-bottom: 4px solid #000;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-left {
  flex: none;
}

.hero-left h2 {
  font-size: 68px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.5px;
}

.hero-left p {
  margin-bottom: 20px;
  font-size: 19px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  line-height: 1.6;
}

body.dark .hero-left h2,
body.dark .hero-left p {
  color: #fff;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

:root {
  --green-light2: #34d399;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  margin: 8px;
  border: 2px solid transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fundacao-container {
  color: #fff;
  background-color: #a2d7b0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.dark .fundacao-container {
  color: #fff;
  background-image: linear-gradient(90deg, #4ade80, #60a5fa);
  background-color: #4ade80;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.fundacao-container strong {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.fundacao-container span {
  font-size: 18px;
  color: #fff;
}

/* Seções gerais */
section {
  scroll-margin-top: 120px;
}

section {
  padding: 80px 0;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FFE37D, #C79E57);
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 100px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

/* SOBRE + MVV */
.sobre-mvv {
  padding: 100px 20px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.sobre-mvv::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 85px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.10) 40%,
    rgba(0, 0, 0, 0.04) 70%,
    rgba(0, 0, 0, 0) 100%
  );

  filter: blur(12px);
  opacity: 0.55;
  z-index: 2;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.sobre-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
}

.sobre-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(30px);
}

body.dark .sobre-mvv {
  background: #000;
}

/* MVV */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

body.dark .mvv {
  background: #111;
  color: #ddd;
}

.mvv:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.mvv i {
  color: var(--green);
  margin-bottom: 12px;
}

body.dark .mvv i {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mvv h3 {
  margin-bottom: 12px;
  color: var(--green);
}

body.dark .mvv h3 {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mvv p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

body.dark .mvv p {
  color: #ccc;
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

/* Eventos */
.eventos-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.event-item {
  flex: 0 0 auto;
  width: 300px;
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-item:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.event-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.event-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 16px 16px;
}
.event-content h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.event-content p {
  font-size: 1rem;
  line-height: 1.4;
}
.event-item h5 {
  position: absolute;
  top: 0px;
  left: 12px;
  margin: 0;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 4px;
}

.eventos .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Atividades */
.atividades {
  background: linear-gradient(135deg, #f0f4f7 0%, #fafafa 100%);
  padding: 80px 20px;
  text-align: center;
}

.atividades h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.atividades p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* --- MURAL GERAL --- */
.mural {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.atividades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  width: 100%;
  margin-top: 40px;
}

.atividades-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  min-height: 340px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.atividades-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* --- IMAGEM DO CARD --- */
.atividades-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.atividades-item:hover img {
  transform: scale(1.08);
}

.atividades-item p {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}

/* ====== PARCERIAS ====== */
.parcerias {
  padding: 100px 20px;
  text-align: center;
  background: var(--bg);
  transition: background 0.4s, color 0.4s;
}

.parcerias .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.parcerias .section-subtitle {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 60px;
}

/* ===== Rede de Parcerias ===== */
.rede-parcerias {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

/* ===== Logo Central ===== */
.logo-central {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.logo-central img {
  width: 200px;
  height: auto;
}

.logo-parceira {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-parceira img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.logo-parceira img:hover {
  transform: scale(1.05);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.logo-parceira span {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  color: var(--green);
}

:root {
  --r: 250px;
}

.p1 {
  top: calc(50% - var(--r) * cos(0deg));
  left: calc(50% + var(--r) * sin(0deg));
  transform: translate(-50%, -50%);
}
.p2 {
  top: calc(50% - var(--r) * cos(72deg));
  left: calc(50% + var(--r) * sin(72deg));
  transform: translate(-50%, -50%);
}
.p3 {
  top: calc(50% - var(--r) * cos(144deg));
  left: calc(50% + var(--r) * sin(144deg));
  transform: translate(-50%, -50%);
}
.p4 {
  top: calc(50% - var(--r) * cos(216deg));
  left: calc(50% + var(--r) * sin(216deg));
  transform: translate(-50%, -50%);
}
.p5 {
  top: calc(50% - var(--r) * cos(288deg));
  left: calc(50% + var(--r) * sin(288deg));
  transform: translate(-50%, -50%);
}

/* ===== Responsividade ===== */
@media (max-width: 900px) {
  .rede-parcerias {
    width: 400px;
    height: 400px;
  }

  :root {
    --r: 170px;
  }

  .logo-central img {
    width: 140px;
  }

  .logo-parceira img {
    width: 110px;
    height: 110px;
    padding: 14px;
  }

  .logo-parceira span {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .rede-parcerias {
    width: 300px;
    height: 300px;
  }

  :root {
    --r: 120px;
  }

  .logo-central img {
    width: 100px;
  }

  .logo-parceira img {
    width: 85px;
    height: 85px;
    padding: 10px;
  }

  .logo-parceira span {
    font-size: 0.85rem;
  }
}

/* ===== Novo ajuste para 375px ===== */
@media (max-width: 480px) {
  .rede-parcerias {
    width: 250px;
    height: 250px;
  }

  :root {
    --r: 95px;
  }

  .logo-central img {
    width: 80px;
  }

  .logo-parceira img {
    width: 70px;
    height: 70px;
    padding: 8px;
  }

  .logo-parceira span {
    font-size: 0.75rem;
  }
}

/* ===== Dark Mode ===== */
body.dark .parcerias {
  background: linear-gradient(135deg, #0d1117, #161b22);
  color: #f0f0f0;
}

body.dark .logo-parceira span {
  color: #ccc;
}

body.dark .logo-parceira img {
  background: #161b22;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
}

body.dark .logo-parceira img:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.08);
}

/* Mapa */
.mapa {
  padding: 80px 20px;
  text-align: center;
}

.mapa .section-title {
  margin-bottom: 40px;
  color: var(--green);
}

.map-card {
  height: 450px;
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.map-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Endereço */
.address-box {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.address-box h3 {
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 700;
}
body.dark .address-box h3 {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.address-box p {
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--text);
}
.address-box .btn.primary {
  background: var(--green);
  color: #fff;
}

body.dark .address-box {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd;
}

body.dark .address-box p {
  color: #ccc;
}

.mapa-container {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.map-card {
  flex: 1 1 60%;
}

.address-box {
  flex: 1 1 35%;
}

/* ===============================
     SEÇÃO DOAR
  ================================= */
.doar {
  padding: 100px 20px;
  background-color: #81AB8D;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 0px;
}

.doar::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  transform: rotate(45deg);
}

.doar::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  transform: rotate(-30deg);
}

.doar-box {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.doar-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  animation: fadeUp 1s ease forwards;
}

.doar-box p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease forwards;
}

.doar-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: nowrap;
}

/* PIX Card */
.pix-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsividade */
@media (max-width: 768px) {
  .doar-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.pix-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pix-card .qrcode {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

/* Botão Doar */
.doar-actions .btn.primary {
  background: #fff;
  color: #0b7a3a;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.doar-actions .btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .doar-content {
    flex-direction: column;
  }
}

/* Contato */
.contato {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}
.contato-info h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--green);
}
.contato-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-icons a.instagram {
  background: #e1306c;
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
  line-height: 1.8;
}
.contact-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  white-space: nowrap;
}
.contact-list li i {
  margin-right: 10px;
  color: var(--green);
  min-width: 20px;
  text-align: center;
}

/* Footer */
.footer {
  background: #064b26;
  color: #fff;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-brand img {
  width: 80px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #e0f2e9;
}

.footer-links h4,
.footer-socials h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #f0f0f0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--yellow);
}
body.dark .footer-links a:hover {
  color: var(--green);
}

.footer-socials .social-icons {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-socials a.facebook {
  background: #3b5998;
}
.footer-socials a.instagram {
  background: #e1306c;
}
.footer-socials a.whatsapp {
  background: #25d366;
}

.footer-socials a:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-nav.open a {
  color: #000;
}
.main-nav.open a:hover,
.main-nav.open a:focus {
  color: var(--green);
}
.main-nav.open a.active {
  color: var(--green-light);
  font-weight: 700;
}

body.dark .main-nav.open a {
  color: #fff;
}
body.dark .main-nav.open a:hover,
body.dark .main-nav.open a:focus {
  color: var(--green);
}
body.dark .main-nav.open a.active {
  color: var(--green-light);
  font-weight: 700;
}
.hamburger.open {
  color: #000 !important;
}
body.dark .hamburger.open {
  color: #fff !important;
}
.header.open .main-nav a {
  color: #000 !important;
}
body.dark .header.open .main-nav a {
  color: #fff !important;
}
.main-nav.open {
  z-index: 1000;
}

.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f9c66d;
  transition: width 0.3s ease;
}
.main-nav a:hover::after {
  width: 100%;
}

.instagram {
  text-decoration: none;
}

/* ================================
   LINK ATIVO - DESTAQUE
================================= */
.main-nav a.active {
  color: #13a551 !important;
  font-weight: bold;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: #f9c66d;
  border-radius: 2px;
}

body.dark .main-nav a.active {
  color: #0b7a3a !important;
}
body.dark .main-nav a.active::after {
  background-color: #f9c66d;
}

/* ----------------------------- 
   RESPONSIVIDADE APRIMORADA
------------------------------ */

/* ===== Tablets grandes (até 1200px) ===== */
@media (max-width: 1200px) {
  .hero {
    padding: 140px 30px;
  }
  .hero-inner {
    gap: 40px;
  }
  .hero-left p {
    font-size: 16px;
  }
  .hero-left h2 {
    font-size: 40px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .doar-content {
    gap: 30px;
  }
  .fundacao-container {
    padding: 20px;
  }
  .fundacao-container strong {
    font-size: 20px;
  }
  .fundacao-container span {
    font-size: 17px;
  }
}

/* ===== Tablets médios (até 992px) ===== */
@media (max-width: 992px) {
  body {
    font-size: 15px;
  }

  .main-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .hero {
    padding: 120px 20px;
    background-attachment: scroll;
    text-align: center;
  }
  .hero-inner {
    flex-direction: column;
    gap: 30px;
  }
  .hero-left h2 {
    font-size: 36px;
  }
  .hero-left p {
    font-size: 15px;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .doar-content {
    gap: 30px;
  }

  .pix-card {
    padding: 25px;
    max-width: 350px;
  }
  .pix-card p {
    font-size: 0.95rem;
    margin: 8px 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.4;
    text-align: left;
  }
  .pix-card strong {
    color: #fff;
  }

  .main-nav.open,
  .main-nav.active {
    display: block;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mvv-grid,
  .cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sobre-mvv-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .sobre-img img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-links ul {
    display: inline-block;
    margin-top: 10px;
  }
  .footer-socials .social-icons {
    justify-content: center;
    gap: 15px;
  }

  .fundacao-container {
    padding: 18px;
    border-radius: 14px;
  }
  .fundacao-container strong {
    font-size: 19px;
  }
  .fundacao-container span {
    font-size: 16px;
  }
}

/* ===== Celulares grandes (até 768px) ===== */
@media (max-width: 768px) {

  .hero {
    padding: 100px 15px;
  }
  .hero-left h2 {
    font-size: 30px;
  }
  .hero-left p {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .atividades-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
  .atividades-item {
    flex: 0 0 70%;
    min-height: 350px;
    scroll-snap-align: start;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    cursor: default;
  }
  .atividades-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .atividades-item p {
    padding: 20px 10px;
    font-weight: 700;
    font-size: 1.1rem;
  }

  #toggle-theme {
    font-size: 1.4rem;
    margin: 10px 0;
    cursor: pointer;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    right: 15px;
    background: #fff;
    padding: 15px;
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    gap: 18px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    font-size: 1rem;
  }
  #toggle-theme {
    order: -2;
    align-self: flex-start;
  }

  .theme-toggle-wrapper {
    margin: 0 !important;
  }

  .doar-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .pix-card {
    padding: 20px;
    max-width: 320px;
  }
  .pix-card p {
    font-size: 1rem;
    text-align: center;
  }
  .pix-card .qrcode {
    width: 150px;
  }

  .fundacao-container {
    padding: 16px;
  }
  .fundacao-container strong {
    font-size: 18px;
  }
  .fundacao-container span {
    font-size: 15px;
  }
}

/* ===== Telas muito pequenas (até 480px) ===== */
@media (max-width: 480px) {
  .hero {
    padding: 80px 10px;
  }
  .hero-left h2 {
    font-size: 26px;
  }
  .hero-left p {
    font-size: 13px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .stats {
    gap: 12px;
  }

  .atividades-item {
    min-width: 90%;
  }

  .pix-card {
    padding: 16px;
    border-radius: 16px;
    max-width: 90%;
  }
  .pix-card p {
    font-size: 1.1rem;
  }
  .pix-card .qrcode {
    width: 130px;
  }

  .main-nav {
    width: 160px;
    padding: 12px;
    gap: 15px;
  }
  .main-nav a {
    font-size: 0.95rem;
  }

  .fundacao-container {
    padding: 14px;
  }
  .fundacao-container strong {
    font-size: 17px;
  }
  .fundacao-container span {
    font-size: 14px;
  }
}

/* ===== Até 425px ===== */
@media (max-width: 425px) {
  .nav {
    padding: 0 10px;
  }
  .main-nav {
    top: 60px;
    width: 150px;
  }
}

/* ===== Até 375px ===== */
@media (max-width: 375px) {
  .nav {
    padding: 0 10px;
  }
  .main-nav {
    width: 140px;
    padding: 10px;
  }
  .main-nav a {
    font-size: 0.9rem;
  }
  .hero-left h2 {
    font-size: 24px;
  }
  .fundacao-container strong {
    font-size: 16px;
  }
  .fundacao-container span {
    font-size: 13px;
  }
}

/* ===== Até 320px ===== */
@media (max-width: 320px) {
  .nav {
    padding: 0 10px;
  }
  .main-nav {
    width: 130px;
  }
  .main-nav a {
    font-size: 0.85rem;
  }
  .fundacao-container strong {
    font-size: 15px;
  }
  .fundacao-container span {
    font-size: 12px;
  }
}

/* ============================================
   RESPONSIVIDADE ATIVIDADES (segundo bloco)
=============================================== */
@media (max-width: 1024px) {
  .atividades-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .atividades-item img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .atividades-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .atividades-item {
    max-width: 260px;
  }
  .atividades-item img {
    height: 160px;
  }
}

@media (max-width: 425px) {
  .atividades-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .atividades-item {
    max-width: 100%;
  }
  .atividades-item img {
    height: 150px;
  }
}

@media (max-width: 375px) {
  .atividades-grid {
    grid-template-columns: 1fr;
  }
  .atividades-item img {
    height: 140px;
  }
}

@media (max-width: 320px) {
  .atividades-item {
    min-height: 260px;
  }
  .atividades-item img {
    height: 130px;
  }
}

@media (max-width: 375px) {
  .atividades-item p {
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .atividades-item img[src*="atvLetras.jpg"] + p,
  .atividades-item img[src*="emendaSenadorEduardo.jpg"] + p {
    font-size: 0.8rem !important;
    line-height: 1.1;
  }
  .atividades-item {
    min-height: 260px;
  }
  .atividades-item img {
    height: 130px;
  }
}

@media (max-width: 320px) {
  .atividades-item p {
    font-size: 0.85rem;
    line-height: 1.1;
  }
  .atividades-item img[src*="atvLetras.jpg"] + p,
  .atividades-item img[src*="emendaSenadorEduardo.jpg"] + p {
    font-size: 0.75rem !important;
  }
}


@media (min-width: 1024px) {
  .atividades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-items: center;
  }
  .atividades-item {
    max-width: 250px;
    min-height: 300px;
  }
  .atividades-item img {
    height: 150px;
  }
  .atividades-item p {
    font-size: 1rem;
    padding: 12px;
  }
}

.atividades-item {
  min-height: 280px;
}
.atividades-item img {
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}
.atividades-item p {
  font-size: 0.9rem;
  padding: 8px 10px;
  line-height: 1.3;
  max-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1024px) {
  .atividades-item {
    max-width: 250px;
  }
  .atividades-item img {
    height: 180px;
  }
  .atividades-item p {
    font-size: 0.9rem;
    line-height: 1.25;
  }
}

.atividades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.atividades-item {
  flex: 1 1 250px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .atividades-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 10px;
  }
  .atividades-item {
    flex: 0 0 80%;
    max-width: 300px;
  }
  .atividades {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .main-nav .brand,
  .main-nav .brand * {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 950px) {
  .main-nav a.active::after {
    left: 0;
    transform: none;
    width: 100%;
    bottom: -4px;
  }
  .main-nav a.active {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
  }
}


.doar-columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.doar-item {
  flex: 1;
  padding: 30px;
  text-align: center;
  color: white;
  font-size: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.doar-item:last-child {
  border-right: none;
}

.doar-strong {
  color: #f9c66d;
}

.doar-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .doar-columns {
    flex-direction: column;
  }
  .doar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .doar-item:last-child {
    border-bottom: none;
  }
}


@media (max-width: 768px) {
  .contact-list li {
    white-space: normal;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
  }
  .contact-list {
    text-align: center;
    max-width: 100%;
  }
  .contact-list li i {
    margin-right: 8px;
  }
}
