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

:root {
  --rosa-profundo: #c9707a;
  --rosa-medio: #e4a0a8;
  --rosa-claro: #f5d4d8;
  --rosa-palido: #fdf0f2;
  --creme: #faf7f4;
  --neutro: #f0ebe6;
  --marrom-suave: #b8967e;
  --texto-escuro: #4a3a3c;
  --texto-medio: #7a5c60;
  --texto-claro: #a88c90;
  --branco: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--creme);
  color: var(--texto-escuro);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 240, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 160, 168, 0.25);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(201, 112, 122, 0.12);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rosa-profundo);
  letter-spacing: 0.03em;
}
.nav-logo span {
  font-style: italic;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--texto-medio);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--rosa-profundo);
}

.nav-cta {
  background: var(--rosa-profundo);
  color: var(--branco) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  transition:
    background 0.25s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--rosa-medio) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 20% 30%,
      rgba(245, 212, 216, 0.55) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 70%,
      rgba(228, 160, 168, 0.3) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 80% 80% at 50% 50%,
      rgba(253, 240, 242, 0.9) 0%,
      transparent 100%
    ),
    var(--creme);
}

/* Floating petals */
.petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: floatPetal linear infinite;
}
@keyframes floatPetal {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.4;
  }
  95% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rosa-profundo);
  font-weight: 600;
  background: rgba(201, 112, 122, 0.1);
  border: 1px solid rgba(201, 112, 122, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s ease both;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--texto-escuro);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.9s ease 0.15s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--rosa-profundo);
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--texto-medio);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.9s ease 0.28s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--rosa-profundo);
  color: var(--branco);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201, 112, 122, 0.35);
}
.btn-primary:hover {
  background: #b85f69;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 112, 122, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--rosa-medio);
  color: var(--rosa-profundo);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  background: transparent;
}
.btn-secondary:hover {
  background: var(--rosa-palido);
  transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rosa-profundo);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--texto-escuro);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--rosa-profundo);
}

/* ─── NOSSA HISTÓRIA ─── */
#historia {
  background: var(--branco);
  position: relative;
  overflow: hidden;
}
#historia::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 212, 216, 0.4),
    transparent 70%
  );
  pointer-events: none;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.historia-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--texto-medio);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.historia-visual {
  position: relative;
}

.historia-card {
  background: var(--rosa-palido);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228, 160, 168, 0.3);
}
.historia-card::after {
  content: "❝";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(201, 112, 122, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.historia-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rosa-profundo);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.historia-card cite {
  font-size: 0.8rem;
  color: var(--texto-claro);
  letter-spacing: 0.06em;
  font-style: normal;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
  background: var(--neutro);
  border-radius: 16px;
  padding: 1.2rem 1rem;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rosa-profundo);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--texto-claro);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ─── IMPACTO ─── */
#impacto {
  background: var(--rosa-palido);
}

.impacto-intro {
  max-width: 650px;
  margin-bottom: 3.5rem;
}

.impacto-intro p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--texto-medio);
  font-weight: 300;
}

.impacto-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.impacto-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(228, 160, 168, 0.2);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.impacto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(201, 112, 122, 0.15);
}

.impacto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--rosa-claro),
    var(--rosa-profundo)
  );
}

.impacto-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rosa-palido);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.impacto-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 0.7rem;
}

.impacto-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--texto-claro);
}

/* ─── DOAÇÕES ─── */
#doacoes {
  background: var(--branco);
}

.doacoes-header {
  margin-bottom: 3rem;
}
.doacoes-header p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--texto-medio);
  max-width: 600px;
  font-weight: 300;
}

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

.doacao-card {
  border-radius: 20px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.doacao-card:hover {
  transform: translateY(-4px);
}

.doacao-card.pix {
  background: linear-gradient(
    135deg,
    var(--rosa-palido) 0%,
    rgba(245, 212, 216, 0.5) 100%
  );
  border: 1.5px solid rgba(201, 112, 122, 0.25);
}

.doacao-card.banco {
  background: linear-gradient(
    135deg,
    var(--neutro) 0%,
    rgba(240, 235, 230, 0.6) 100%
  );
  border: 1.5px solid rgba(184, 150, 126, 0.25);
}

.doacao-card.item {
  background: linear-gradient(
    135deg,
    #f0f5ed 0%,
    rgba(220, 235, 215, 0.5) 100%
  );
  border: 1.5px solid rgba(140, 175, 130, 0.25);
}

.doacao-card.voluntario {
  background: linear-gradient(
    135deg,
    #f5f0fd 0%,
    rgba(220, 210, 240, 0.5) 100%
  );
  border: 1.5px solid rgba(160, 140, 200, 0.25);
}

.doacao-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.pix .doacao-tag {
  background: rgba(201, 112, 122, 0.15);
  color: var(--rosa-profundo);
}
.banco .doacao-tag {
  background: rgba(184, 150, 126, 0.15);
  color: var(--marrom-suave);
}
.item .doacao-tag {
  background: rgba(100, 150, 90, 0.12);
  color: #5a8a50;
}
.voluntario .doacao-tag {
  background: rgba(120, 100, 180, 0.12);
  color: #7060b0;
}

.doacao-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 0.8rem;
}

.doacao-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--texto-medio);
  margin-bottom: 1.2rem;
}

.doacao-info {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
}

.doacao-info .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texto-claro);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.doacao-info .value {
  color: var(--texto-escuro);
  font-weight: 600;
}

.doacao-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  padding: 0.45rem 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  background: var(--rosa-profundo);
  color: var(--branco);
}
.doacao-copy-btn:hover {
  background: #b85f69;
  transform: translateY(-1px);
}
.doacao-copy-btn.copied {
  background: #5a8a50;
}

/* ─── REDES SOCIAIS ─── */
#redes {
  background: var(--rosa-palido);
  text-align: center;
}

#redes .section-title {
  margin-bottom: 0.5rem;
}
#redes > .container > p {
  font-size: 1rem;
  color: var(--texto-medio);
  font-weight: 300;
  margin-bottom: 3rem;
}

.redes-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rede-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 2.5rem;
  background: var(--branco);
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(228, 160, 168, 0.2);
  transition: all 0.3s;
  min-width: 160px;
}
.rede-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(201, 112, 122, 0.18);
}

.rede-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.rede-card.instagram .rede-icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: white;
}
.rede-card.facebook .rede-icon {
  background: #1877f2;
  color: white;
}
.rede-card.whatsapp .rede-icon {
  background: #25d366;
  color: white;
}

.rede-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--texto-escuro);
}

.rede-handle {
  font-size: 0.78rem;
  color: var(--texto-claro);
}

/* ─── FOOTER ─── */
footer {
  background: var(--texto-escuro);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--rosa-claro);
  font-weight: 300;
  margin-bottom: 1rem;
}
.footer-logo em {
  font-style: italic;
  color: var(--rosa-medio);
}

footer p {
  font-size: 0.82rem;
  line-height: 1.8;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--rosa-profundo);
  margin: 1.2rem auto;
  opacity: 0.5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .historia-grid,
  .doacoes-grid {
    grid-template-columns: 1fr;
  }
  .historia-visual {
    order: -1;
  }
}
