/* ============================================================
   MODAL PIX DOAÇÃO
   ============================================================ */
.modal-pix {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  align-items: center; justify-content: center;
  justify-items: center;
}
.modal-pix.open {
  display: flex;
}
.modal-pix__overlay {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
/* Centraliza o modal verticalmente sem scroll */
.modal-pix__content {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 370px;
  width: 92vw;
  text-align: center;
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
  top: 0;
  left: 0;
  margin: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal-pix__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-soft);
  cursor: pointer;
  z-index: 3;
  transition: color .2s;
}
.modal-pix__close:hover { color: var(--pink-btn); }
.modal-pix__desc {
  font-size: 1.02rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.modal-pix__chave {
  display: inline-block;
  font-family: monospace;
  font-size: 1.1rem;
  background: var(--cream);
  padding: .35rem .7rem;
  border-radius: var(--radius-pill);
  margin: .5rem 0 0.2rem 0;
  letter-spacing: 1px;
}
.modal-pix__legal {
  font-size: .92rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.modal-pix__copy {
  margin-bottom: 0.2rem;
}
.modal-pix__copied {
  display: block;
  color: var(--yellow-dark);
  font-size: .93rem;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
  width: 100%;
  text-align: center;
}

/* ============================================================
   CCONECTA – style.css
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --cream:        #F5F0E8;
  --cream-light:  #FAF7F2;
  --peach:        #F0C9B8;
  --peach-bg:     #EEC9B3;
  --yellow:       #F5B000;
  --yellow-dark:  #E6A500;
  --pink-btn:     #F26B6B;
  --pink-btn-h:   #e05555;
  --dark:         #1A1A1A;
  --text:         #2C2C2C;
  --text-soft:    #555555;
  --white:        #FFFFFF;
  --radius-pill:  999px;
  --radius-card:  1.5rem;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.13);
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --font-head:    'Nunito', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary              { background: var(--pink-btn); color: var(--white); }
.btn--primary:hover        { background: var(--pink-btn-h); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,107,107,.35); }
.btn--outline              { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn--outline:hover        { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn--outline.btn--light   { border-color: var(--white); color: var(--white); }
.btn--outline.btn--light:hover { background: var(--white); color: var(--dark); }
.btn--sm { padding: .5rem 1.35rem; font-size: .85rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { 
  box-shadow: var(--shadow-sm);
  background: rgba(245, 240, 232, .93);
    backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: min(1160px, 92%);
  margin-inline: auto;
}

.navbar__logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }

.navbar__nav  { display: flex; align-items: center; gap: 1.5rem; }
.navbar__links { display: flex; gap: 0; }

.nav-link {
  font-family: var(--font-body);
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
  padding: .4rem .85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link--active { border-color: var(--dark); background: rgba(0,0,0,.05); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 110;
}
.hamburger__line {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.active .hamburger__line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   DECORATIVE DOTS
   ============================================================ */
.dot { position: absolute; border-radius: 50%; pointer-events: none; }
.dot--sm  { width: 8px;  height: 8px; }
.dot--md  { width: 12px; height: 12px; }
.dot--dark { background: var(--dark); }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero__content{
  margin-left: 20px;
} 

.hero {
  position: relative;
  background: var(--cream);
  padding-top: 100px;
  padding-bottom: 5rem;
  overflow: hidden;
  min-height: 60vh  ;
  display: flex;
  align-items: center;
}

/* Blob amarelo orgânico — topo direito */
.hero__shape-yellow {
  position: absolute;
  top: -70px; right: -70px;
  width: 340px; height: 340px;
  background: var(--yellow);
  border-radius: 50% 30% 60% 40% / 40% 50% 30% 60%;
  animation: morphBlob 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes morphBlob {
  from { border-radius: 50% 30% 60% 40% / 40% 50% 30% 60%; }
  to   { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.hero__desc {
  font-size: .97rem;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__illustration {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 150px;
}

/* bee-hero: 265×468 → mostrar com ~300px de altura */
.bee-hero {
  width: auto;
  height: min(380px, 50vw);
  animation: floatBee 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.1));
}

@keyframes floatBee {
  0%,100% { transform: translateY(0)   rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.quem-somos {
  background: var(--white);
  padding: 5rem 0 2rem 0;
  position: relative;
}

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

/* bee-hive: 642×335 → panorâmico, mostrar ~320px largura */
.bee-hive {
  width: min(340px, 90vw);
  height: auto;
  animation: floatBee 5.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.08));
}

.quem-somos__content p {
  color: var(--text-soft);
  font-size: .96rem;
  margin-bottom: .9rem;
  max-width: 560px;
}

/* ============================================================
   MISSÃO / VISÃO / VALORES
   ============================================================ */
.mvv {
  background: var(--white);
  padding: 0 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-card);
  /* background: var(--cream-light); */
  transition: box-shadow var(--transition), transform var(--transition);
}
.mvv__card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

/* Ilustrações MVV: ~88px exibição */
.mvv__icon { width: 210px; height: 120px; }
.mvv__icon img { width: 100%; height: 100%; object-fit: contain; }

.mvv__card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}
.mvv__card p { font-size: .88rem; color: var(--text-soft); }

.link-saiba {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-soft);
  border: 1.5px solid #aaa;
  padding: .28rem .85rem;
  border-radius: var(--radius-pill);
  margin-top: .25rem;
  transition: var(--transition);
}
.link-saiba:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

/* ============================================================
   PROJETOS – intro section (fundo peach)
   ============================================================ */
.projetos {
  position: relative;
  background: var(--peach-bg);
  padding: 5rem 0 3rem;
  overflow: hidden;
}

/* Ondas superior e inferior */
.projetos::before,
.projetos::after {
  content: '';
  display: block;
  position: absolute;
  left: -5%; right: -5%;
  height: 90px;
  pointer-events: none;
}
.projetos::before {
  top: -44px;
  background: var(--white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.projetos::after {
  bottom: -44px;
  background: var(--cream-light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

.projetos__intro-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.projetos__intro p {
  font-size: .96rem;
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: .75rem;
}
.projetos__subtitle {
  font-weight: 700;
  color: var(--dark) !important;
  margin-top: .5rem;
}

/* bee-cloud: 424×469 → altura ~260px */
.bee-cloud {
  width: auto;
  height: min(260px, 35vw);
  animation: floatBee 5s .8s ease-in-out infinite;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.1));
  align-self: flex-end;
}

/* ============================================================
   PROJETOS – lista (fundo cream)
   ============================================================ */
.projetos-lista {
  background: var(--cream-light);
  padding: 6rem 0 6rem;
  position: relative;
  z-index: 1;
}

.projetos-lista__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.projetos__col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Coluna direita alinhada ao centro */
.projetos__col--right { align-items: center; }

/* item de projeto */
.projeto-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.projeto-item__bee { flex-shrink: 0; }
/* bee-heart: 241×393 → muito vertical, exibir ~90px largura */
.bee-heart { width: 90px; height: auto; }

.projeto-item__content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.bullet { font-size: 1.3rem; line-height: 1; }

.projeto-item__content h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: .55rem;
}
.projeto-item__content p {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.projeto-item__content__image{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Foto circular — foto-comunidade: 432×432 */
.projetos__photo { display: flex; justify-content: center; }
.photo-circle {
  position: relative;
  width: 260px; height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.photo-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.photo-arrow:hover { background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer__brand p { font-size: .88rem; color: rgba(255,255,255,.55); max-width: 220px; }
.logo-img--white { filter: brightness(0) invert(1); }

.footer__links { display: flex; flex-direction: column; gap: .7rem; }
.footer__links a { font-size: .87rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--yellow); }

.footer__cta { display: flex; flex-direction: column; gap: .75rem; }

.footer__bottom {
  text-align: center;
  padding: 1.2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal--right { transform: translateX(36px); }
.reveal--left  { transform: translateX(-36px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  /* Hero */
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero__desc  { margin-inline: auto; }
  .hero__btns  { justify-content: center; }
  .hero__illustration { justify-content: center; order: -1; margin-right: 0px;}
  .hero__shape-yellow { width: 200px; height: 200px; top: -40px; right: -40px; }
  .bee-hero    { height: min(260px, 50vw); }

  /* Quem somos */
  .quem-somos__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .quem-somos__illustration { display: flex; justify-content: center; }
  .quem-somos__content p { margin-inline: auto; }

  /* MVV */
  .mvv__grid { grid-template-columns: 1fr 1fr; }

  /* Projetos */
  .projetos__intro-wrap { grid-template-columns: 1fr; }
  .projetos__bee { justify-content: center; display: flex; }

  /* Lista */
  .projetos-lista__inner { grid-template-columns: 1fr; }
  .projetos__col--right  { align-items: flex-start; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  /* Mobile nav */
  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    background: var(--cream);
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    z-index: 99;
  }
  .navbar__nav.open { display: flex; }
  .navbar__links    { flex-direction: column; gap: .5rem; }
  .nav-link         { font-size: 1.15rem; padding: .5rem 1rem; }
  .hamburger        { display: flex; }

  /* MVV single col */
  .mvv__grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }

  .hero { min-height: auto; padding-top: 88px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 1.85rem; }
  .hero__btns  { flex-direction: column; }
  .btn         { width: 100%; }
}
