*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #061722;
  --bg-alt: #0b2231;
  --panel: #0f2b3b;
  --surface: #123449;
  --text: #e8f4fb;
  --muted: #bed6e5;
  --line: rgba(255,255,255,0.10);
  --brand: #36c0e4;
  --brand-strong: #1e9ac0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.22);
  --radius: 24px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(54,192,228,0.14), transparent 28%),
    linear-gradient(180deg, #04131c 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: var(--white);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(4, 19, 28, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu a {
  color: var(--muted);
}

.menu a:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5,18,26,0.2), rgba(5,18,26,0.4)),
    url("../img/texture.svg") center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #03202c;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.hero-highlights {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.hero-card {
  display: grid;
  gap: 1rem;
}

.stat-card,
.panel,
.card,
.value-item,
.social-box,
.contact-form,
.donate-box {
  background: rgba(18, 52, 73, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.4rem;
}

.stat-label {
  display: block;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  margin-bottom: 0.75rem;
}

.wave {
  height: 80px;
  margin-top: 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(54,192,228,0.08) 100%);
  clip-path: ellipse(70% 60% at 50% 100%);
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}

.panel {
  padding: 1.6rem;
}

.cards,
.values-grid {
  display: grid;
  gap: 1.25rem;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.card {
  padding: 1.5rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(54,192,228,0.12);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.values-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.value-item {
  padding: 1.4rem;
  color: var(--muted);
}

.social-box {
  padding: 1.2rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.social-box a {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.social-box a:hover {
  background: rgba(54,192,228,0.10);
}

.donate-box {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
}

.donate-section {
  padding-top: 1rem;
}

.donate-actions {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li + li {
  margin-top: 0.75rem;
}

.contact-form {
  padding: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(232,244,251,0.55);
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: rgba(0,0,0,0.22);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: flex-start;
}

p {
  color: var(--muted);
}

/* novos ajustes */

.whatsapp-link {
  color: var(--brand);
  font-weight: 700;
}

.whatsapp-link:hover {
  color: var(--white);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 340px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.pix-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pix-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.pix-text {
  display: grid;
  gap: 0.2rem;
}

.pix-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 700;
}

.copy-btn {
  min-width: 96px;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.copy-btn:hover {
  background: rgba(54,192,228,0.10);
  border-color: rgba(54,192,228,0.35);
}

.copy-btn.copied {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #03202c;
  border-color: transparent;
}

.copy-feedback {
  min-height: 1.2em;
  margin-top: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .donate-box,
  .cards,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .two-col,
  .donate-box {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    width: min(92vw, 320px);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    background: rgba(7, 23, 33, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .donate-box,
  .cards,
  .values-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .pix-item {
    flex-direction: column;
    align-items: stretch;
  }

  .copy-btn {
    width: 100%;
  }

  h1 {
    font-size: 2.45rem;
  }
}