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

:root {
  --pink:        #ff71acbe;
  --pink-dark:   #e0558a;
  --pink-light:  #fdc2dbdc;
  --pink-bg:     #fdf0f5;
  --pink-section:#f7d6e6;
  --purple:      #7200b8c5;
  --white:       #ffffff;
  --text-dark:   #333333;
  --text-mid:    #2c2c2c;
  --pink-text:   #eb2a7abe;
  --text-cinza:  #727272ef;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 18px rgba(244, 103, 157, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--pink);
}

.btn--pink-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
}
.btn--pink-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn--icon svg {
  flex-shrink: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 110px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.navbar__logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  gap: 52px;
}

.navbar__links a {
  color: var(--white);
  font-weight: 600;
  font-size: 1.25rem;
  transition: opacity 0.2s;
}
.navbar__links a:hover {
  opacity: 0.8;
}

.navbar__doar-mobile {
  display: none;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  display: flex;
  min-height: 520px;
  background: var(--pink-bg);
  overflow: hidden;
}

.hero__content {
  flex: 0 0 50%;
  padding: 64px 48px 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;

  background-color: #f6ebe2; /* 👈 cor só do lado esquerdo */
}

.hero__title {
  font-family: 'Nunito', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--purple);
}

.hero__title em {
  font-family: 'Playfair Display',cursive;
  font-style: italic;
  font-weight: 400;
  font-size: 3.4rem;
  color: var(--pink);
  
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 20px;
  max-width: 320px;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  flex: 1;
  height: 3.5px;
  background: var(--pink-light);
}

.hero__divider-heart {
  color: var(--pink);
  font-size: 1.5rem;
  line-height: 1;
}

.hero__heart {
  font-size: 1.4rem;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 360px;
}

.hero__values {
  display: flex;
  gap: 28px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
}

.hero__value img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero__image {
  flex: 0 0 50%;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   QUEM SOMOS
   ============================================ */
.quem-somos {
  background: var(--pink-section);
  padding: 64px 72px;
}

.quem-somos__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 900px;
  margin: 0 auto;
}

.quem-somos__foto {
  flex-shrink: 0;
  width: 230px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quem-somos__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quem-somos__texto {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quem-somos__texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--pink);
  font-style: italic;
}

.quem-somos__texto p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  max-width: 480px;
}

/* ============================================
   GALERIA
   ============================================ */
.galeria {
  padding: 64px 72px;
  background: var(--white);
  text-align: center;
}

.galeria__label {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-text);
  letter-spacing: 0.04em;
}

.galeria__titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink-text);
  margin-bottom: 36px;
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

/* Foto grande à esquerda ocupa 2 linhas */
.galeria__item--tall {
  grid-row: span 2;
}

.galeria__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--pink-light);
  aspect-ratio: 4/3;
}

.galeria__item--tall {
  aspect-ratio: unset;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.galeria__item:hover img {
  transform: scale(1.04);
}

.galeria__btn-wrap {
  margin-top: 32px;
}

/* ============================================
   NOSSAS AÇÕES
   ============================================ */
.acoes {
  background: var(--pink-bg);
  padding: 64px 72px;
  text-align: center;
}

.acoes__label {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pink-text);
  letter-spacing: 0.04em;
}

.acoes__titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink-text);
  margin-bottom: 44px;
}

.acoes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.acoes__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.acoes__icone {
  width: 80px;
  height: 80px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.acoes__icone img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.acoes__card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pink);
}

.acoes__card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================
   COMO AJUDAR
   ============================================ */
.ajudar {
  background: var(--pink-bg);
  padding: 64px 72px;
  text-align: center;
}

.ajudar__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-text);
  letter-spacing: 0.04em;
}

.ajudar__titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink-text);
  margin-bottom: 44px;
}

.ajudar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.ajudar__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ajudar__icone {
  width: 80px;
  height: 80px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ajudar__icone img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ajudar__card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pink);
}

.ajudar__card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  background: var(--white);
  padding: 72px 72px 80px;
}

.contato__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}

.contato__texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__titulo-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--text-cinza);
  font-weight: 600;
}

.contato__subtitulo {
  font-size: 1rem;
  color: var(--text-cinza);
  line-height: 1.6;
}

.contato__lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.contato__lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contato__lista li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--pink);
  padding: 28px 72px;
}

.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
}

.footer__logo-small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.footer__logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__social-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  border: 2px solid var(--white);
}

.footer__social-icons {
  display: flex;
  gap: 14px;
}

.footer__social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.footer__social-btn:hover {
  transform: scale(1.12);
  background: var(--pink-light);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .navbar { padding: 0 28px; }
  .hero__content { padding: 48px 32px 48px 40px; }
  .quem-somos { padding: 48px 40px; }
  .galeria, .acoes, .ajudar, .contato { padding: 48px 40px; }
  .footer { padding: 28px 40px; }
  .acoes__grid, .ajudar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .galeria__item:nth-child(n+5) { display: none; }

  .navbar__links, .navbar > .btn {
    display: none;
  }
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--pink);
    padding: 16px 32px 24px;
    gap: 16px;
    z-index: 99;
  }
  .navbar__doar-mobile {
    display: inline-block;
    margin-top: 8px;
    border: 2px solid var(--white);
    border-radius: 999px;
    padding: 8px 24px;
    font-weight: 700;
    text-align: center;
    align-self: flex-start;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: unset;
  }
  .hero__content {
    flex: unset;
    padding: 40px 28px;
  }
  .hero__image {
    flex: unset;
    height: 260px;
  }
  .hero__title { font-size: 2rem; }

  .quem-somos__inner {
    flex-direction: column;
    gap: 28px;
  }
  .quem-somos__foto {
    width: 180px;
    height: 180px;
  }

  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeria__item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .acoes__grid, .ajudar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato__detalhe { display: none; }
  .footer__social { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.7rem; }
  .acoes__grid, .ajudar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .galeria__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}
