/* =============================================================
   main.css — Design System + Área pública
   Paleta leve (teal/verde + azul suave + coral)
   ============================================================= */

:root {
  /* Cores base */
  --teal-50:  #ecfdf7;
  --teal-100: #d1faec;
  --teal-200: #a7f3d9;
  --teal-300: #6ee7bf;
  --teal-400: #34d3a3;
  --teal-500: #10b981;
  --teal-600: #059669;
  --teal-700: #047857;

  --sky-100: #e0f2fe;
  --sky-300: #7dd3fc;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;

  --coral-300: #fca5a5;
  --coral-400: #fb7185;
  --coral-500: #f43f5e;
  --amber-400: #fbbf24;

  --ink-900: #0f2e28;
  --ink-700: #1f3b36;
  --ink-500: #45564f;
  --ink-400: #6b7a74;
  --ink-300: #97a4a0;

  --paper: #ffffff;
  --paper-2: #f6fbf9;
  --paper-3: #eef6f3;
  --line: #e2ece8;

  /* Semânticos */
  --bg: var(--paper-2);
  --surface: var(--paper);
  --text: var(--ink-900);
  --text-soft: var(--ink-500);
  --muted: var(--ink-400);
  --primary: var(--teal-600);
  --primary-strong: var(--teal-700);
  --accent: var(--sky-500);
  --danger: var(--coral-500);
  --border: var(--line);

  --grad-hero: radial-gradient(1200px 600px at 15% -10%, #d1faec 0%, transparent 55%),
               radial-gradient(1000px 500px at 90% 0%, #e0f2fe 0%, transparent 50%),
               linear-gradient(180deg, #f6fbf9 0%, #ffffff 100%);
  --grad-primary: linear-gradient(135deg, #10b981 0%, #059669 55%, #0284c7 130%);
  --grad-soft: linear-gradient(135deg, #ecfdf7 0%, #e0f2fe 100%);

  --shadow-sm: 0 1px 2px rgba(16,58,50,.06), 0 2px 8px rgba(16,58,50,.05);
  --shadow-md: 0 8px 24px rgba(16,58,50,.10), 0 2px 6px rgba(16,58,50,.06);
  --shadow-lg: 0 24px 60px rgba(16,58,50,.16), 0 6px 18px rgba(16,58,50,.08);
  --shadow-primary: 0 12px 30px rgba(5,150,105,.35);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --container: 1200px;

  --ease: cubic-bezier(.22,1,.36,1);
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ----------------- Reset ----------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

.container { width: min(var(--container), 92vw); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tint { background: var(--paper-3); }

/* ----------------- Tipografia ----------------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; color: var(--ink-900); }
.h-display { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: var(--teal-50);
  padding: 7px 14px; border-radius: 100px; border: 1px solid var(--teal-100);
}
.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head.text-center { text-align: center; }
.section-head .lead { margin-top: 16px; }

/* ----------------- Botões ----------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: .98rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(5,150,105,.45); }
.btn--ghost { background: var(--surface); color: var(--primary-strong); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.28); transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--danger { background: var(--coral-500); color: #fff; }
.btn--danger:hover { background: var(--coral-400); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ----------------- Header / Nav ----------------- */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(16,58,50,.06), var(--shadow-sm);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; color: var(--ink-900); }
.brand__mark {
  width: 42px; height: 42px; border-radius: 13px; background: var(--grad-primary);
  display: grid; place-items: center; box-shadow: var(--shadow-primary); flex: none;
}
.brand__mark svg { width: 32px; height: 32px; color: #fff; }
.brand small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

.nav__menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.brand-logos { display: flex; align-items: center; gap: 8px; }
.brand-logo { display: inline-flex; }
.brand-logo img { height: 30px; width: auto; max-width: 76px; object-fit: contain; background: #fff; border-radius: 6px; padding: 3px 5px; box-shadow: var(--shadow-sm); transition: transform .2s; }
.brand-logo:hover img { transform: translateY(-2px); }
@media (max-width: 1200px){ .brand-logos { display: none; } }

.footer-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-logo img { height: 60px; width: auto; max-width: 158px; object-fit: contain; background: #fff; border-radius: 10px; padding: 7px 12px; transition: transform .2s; }
.footer-logo:hover img { transform: translateY(-2px); }
/* Contatos das associações no footer (4 lado a lado, responsivo) */
.footer-contatos { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-contatos h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.foot-assoc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.foot-assoc { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.foot-assoc__logo { width: 54px; height: 54px; object-fit: contain; background: #fff; border-radius: 11px; padding: 6px; margin-bottom: 6px; }
.foot-assoc b { color: #fff; font-size: .9rem; line-height: 1.3; }
.foot-assoc a.fa-line { display: flex; align-items: flex-start; gap: 7px; color: #a9c4bc; font-size: .82rem; transition: color .2s; min-width: 0; }
.foot-assoc a.fa-line:hover { color: #fff; }
.foot-assoc .fa-ic { display: inline-flex; gap: 4px; flex: none; margin-top: 2px; }
.foot-assoc .fa-ic svg { width: 14px; height: 14px; }
.foot-assoc a.fa-line > span:last-child { min-width: 0; overflow-wrap: anywhere; line-height: 1.35; }
.foot-assoc .fa-mail { font-size: .75rem; }
@media (max-width: 860px) { .foot-assoc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .foot-assoc-grid { grid-template-columns: 1fr; } }
.nav__link {
  padding: 8px 13px; border-radius: 100px; font-weight: 600; font-size: .86rem; color: var(--ink-700);
  transition: background .25s, color .25s; white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { background: var(--teal-50); color: var(--primary-strong); }
.nav__link--cta { display: none; } /* só aparece dentro do menu no mobile */
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--surface); box-shadow: var(--shadow-sm); }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink-900); margin: 4px auto; border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--surface); box-shadow: var(--shadow-lg);
    padding: 96px 20px 32px; transform: translateX(105%); transition: transform .4s var(--ease); z-index: 90;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu { height: 100dvh; overflow-y: auto; }
  .nav__link { font-size: 1.05rem; padding: 14px 18px; }
  /* Fora do menu: mostra só "Entrar". "Cadastre-se" vai para dentro do menu. */
  .nav__actions .btn--primary { display: none; }
  .nav__link--cta {
    display: block; margin: 14px 8px 4px; text-align: center;
    background: linear-gradient(135deg, #f59e0b, #ea7a17); color: #fff;
    border-radius: 12px; font-weight: 800; box-shadow: 0 8px 20px rgba(234,122,23,.28);
  }
  .nav__link--cta:hover, .nav__link--cta.is-active { background: linear-gradient(135deg, #ea7a17, #d96a0c); color: #fff; }
}

/* Backdrop do menu mobile + trava de scroll */
.nav-backdrop { position: fixed; inset: 0; background: rgba(15,46,40,.42); z-index: 89; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.nav-backdrop.is-open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* Offset de âncora (header fixo não cobre o título ao rolar) */
section[id], .hero, [data-anchor] { scroll-margin-top: 84px; }

/* Cursor pointer consistente em elementos clicáveis */
a, button, label.upload-btn, .side-link, .pick, .nav__link, .auth-tab,
.seg button, .icon-btn, .carousel__btn, .carousel__dot, .post-card,
[role="button"], summary, .modal__close, .dep-remove { cursor: pointer; }
.upload-btn input[type="file"] { cursor: pointer; }

/* ----------------- Hero ----------------- */
.hero {
  position: relative; padding: clamp(130px, 18vw, 190px) 0 clamp(70px, 9vw, 120px);
  background: var(--grad-hero); overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__title { margin: 20px 0 22px; }
.hero__title span { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat b { font-size: 2rem; font-weight: 800; color: var(--primary-strong); display: block; line-height: 1; }
.hero__stat span { font-size: .85rem; color: var(--muted); }

/* Cena 3D / visual do hero */
.hero__scene { position: relative; height: 460px; perspective: 1200px; }
.floaty { position: absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.floaty--main {
  inset: 20px 0 20px 40px; background: var(--grad-primary); overflow: hidden;
  transform-style: preserve-3d; animation: floatY 7s ease-in-out infinite;
}
.hero__house { position: absolute; inset: 0; display: grid; place-items: center; }
.hero__house svg { width: 62%; filter: drop-shadow(0 24px 40px rgba(0,0,0,.25)); }
.floaty--card {
  width: 220px; padding: 18px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6); display: flex; align-items: center; gap: 12px;
}
.floaty--card1 { top: 8%; right: -6%; animation: floatY 5.5s ease-in-out infinite; }
.floaty--card2 { bottom: 6%; left: -8%; animation: floatY 6.5s ease-in-out .6s infinite; }
.floaty--card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; color: #fff; }
.floaty--card b { font-size: .95rem; display: block; }
.floaty--card small { color: var(--muted); font-size: .78rem; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0; }
.blob--1 { width: 340px; height: 340px; background: var(--teal-200); top: -60px; left: -80px; }
.blob--2 { width: 300px; height: 300px; background: var(--sky-300); bottom: -60px; right: -60px; }

@keyframes floatY { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-18px) } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__scene { height: 360px; margin-top: 20px; }
  .floaty--card { width: 180px; }
}
/* Mobile: sem o "quadro verde" — só os logos girando (centralizados) e os cards
   empilhados abaixo, sem sobreposição. No desktop tudo permanece como está. */
@media (max-width: 760px) {
  .hero__scene { position: static; height: auto; margin-top: 22px; perspective: none;
    display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .floaty--main { position: static; inset: auto; width: auto; background: transparent;
    box-shadow: none; border-radius: 0; overflow: visible; animation: none; }
  .floaty--card { position: static; inset: auto; width: min(300px, 88vw); animation: none;
    box-shadow: var(--shadow-md); }
}

/* Informações do empreendimento (formato "Rótulo: valor") */
.emp-info { display: flex; gap: 6px; align-items: baseline; flex-wrap: wrap; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.emp-info:last-of-type { border-bottom: none; }
.emp-info .k { color: var(--muted); font-weight: 600; }
.emp-info .k::after { content: ':'; }
.emp-info .v { color: var(--ink-900); font-weight: 700; }

/* ----------------- Marquee de parceiros ----------------- */
.marquee { overflow: hidden; padding: 26px 0; border-block: 1px solid var(--border); background: var(--surface); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scrollX 26s linear infinite; }
.marquee__track span { font-weight: 700; color: var(--ink-300); font-size: 1.05rem; white-space: nowrap; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ----------------- Cards de features ----------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--grad-soft); color: var(--primary-strong);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .97rem; }

/* Tilt 3D */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt__inner { transform: translateZ(30px); }

/* ----------------- Valores (Missão/Visão/Valores) ----------------- */
.mvv { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px){ .mvv { grid-template-columns: 1fr; } }
.mvv__item {
  padding: 34px 30px; border-radius: var(--radius-lg); color: #fff; position: relative; overflow: hidden;
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-md);
}
.mvv__item h3 { color: #fff; font-size: 1.4rem; }
.mvv__item p { color: rgba(255,255,255,.9); margin-top: 8px; }
.mvv__item .badge-round {
  position: absolute; top: 24px; left: 30px; width: 52px; height: 52px; border-radius: 15px;
  background: rgba(255,255,255,.2); display: grid; place-items: center; backdrop-filter: blur(4px);
}
.mvv__item--1 { background: linear-gradient(150deg, #10b981, #047857); }
.mvv__item--2 { background: linear-gradient(150deg, #0ea5e9, #0369a1); }
.mvv__item--3 { background: linear-gradient(150deg, #fb7185, #e11d48); }

/* Lista de valores */
.values-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; }
@media (max-width:620px){ .values-list { grid-template-columns: 1fr; } }
.value-chip { display: flex; align-items: center; gap: 14px; background: var(--surface); padding: 16px 20px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.value-chip .dot { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; color: var(--primary-strong); flex: none; }
.value-chip b { display: block; }
.value-chip span { font-size: .85rem; color: var(--muted); }

/* ----------------- Timeline "Quem somos" ----------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .about { grid-template-columns: 1fr; } }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--grad-primary); }
.about__media .illus { position: absolute; inset: 0; display: grid; place-items: center; }
.about__media .illus svg { width: 68%; }
.about__badge { position: absolute; bottom: 18px; right: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md); }
.about__badge b { font-size: 1.5rem; color: var(--primary-strong); }
.stat-row { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.stat-row .num { font-size: 2.2rem; font-weight: 800; color: var(--primary-strong); }
.stat-row span { font-size: .85rem; color: var(--muted); }

/* ----------------- Carrossel de Empreendimentos ----------------- */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.emp-slide { min-width: 100%; }
@media (min-width: 760px){ .emp-slide { min-width: 33.333%; } }
.emp-card { margin: 8px 12px; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.emp-card__img { height: 180px; background: var(--grad-primary); position: relative; display: grid; place-items: center; color: #fff; }
.emp-card__img svg { width: 40%; opacity: .9; }
.emp-card__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); color: var(--primary-strong); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.emp-card__body { padding: 22px; }
.emp-card__body h4 { font-size: 1.15rem; }
.emp-card__meta { display: flex; gap: 16px; margin-top: 12px; color: var(--muted); font-size: .85rem; flex-wrap: wrap; }
.emp-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.carousel__nav { display: flex; justify-content: center; gap: 12px; margin-top: 26px; align-items: center; }
.carousel__btn { width: 48px; height: 48px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--primary-strong); transition: .3s var(--ease); }
.carousel__btn:hover { background: var(--primary); color: #fff; transform: scale(1.08); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-200); transition: .3s; }
.carousel__dot.is-active { width: 26px; border-radius: 100px; background: var(--primary); }

/* ----------------- Blog / Ações ----------------- */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
@media (max-width: 960px){ .posts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .posts-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform .4s var(--ease), box-shadow .4s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__cover { height: 190px; background: var(--grad-soft); position: relative; overflow: hidden; }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card__cover .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--primary); opacity: .5; }
.post-card__cover .ph svg { width: 64px; height: 64px; }
.post-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card__date { font-size: .78rem; color: var(--muted); font-weight: 600; }
.post-card h3 { margin: 8px 0 10px; font-size: 1.18rem; }
.post-card p { color: var(--text-soft); font-size: .92rem; flex: 1; }
.post-card__more { margin-top: 16px; color: var(--primary-strong); font-weight: 700; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }

/* ----------------- Cards de certificado (Quem Somos) ----------------- */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px){ .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px){ .cert-grid { grid-template-columns: 1fr; } }
.cert-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-card__logo { width: 110px; height: 110px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; margin-bottom: 10px; padding: 10px; }
.cert-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-card h3 { font-size: 1.02rem; }
.cert-card p { font-size: .85rem; color: var(--text-soft); flex: 1; margin: 4px 0 14px; }

/* ----------------- Página de post (blog) ----------------- */
.post-hero { padding: clamp(120px, 16vw, 170px) 0 30px; background: var(--grad-hero); }
.post-hero__inner { max-width: 800px; }
.post-back { display: inline-flex; font-weight: 700; color: var(--primary-strong); margin-bottom: 20px; }
.post-hero__date { display: block; font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.post-hero h1 { margin-bottom: 16px; }
.post-cover { max-width: 900px; margin: 24px auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/8; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 760px; margin: 40px auto; font-size: 1.08rem; color: var(--ink-700); }
.post-body p { margin-bottom: 20px; line-height: 1.75; }
.post-body .post-h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin: 34px 0 14px; }
.post-body figure { margin: 26px 0; }
.post-body figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.post-video { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; margin: 26px 0; box-shadow: var(--shadow-md); }
.post-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.post-video-el { width: 100%; border-radius: var(--radius); margin: 26px 0; }

.post-gallery { position: relative; margin: 28px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.post-gallery__track { display: flex; transition: transform .6s var(--ease); }
.post-gallery__track img { min-width: 100%; height: clamp(240px, 42vw, 440px); object-fit: cover; }
.post-gallery__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--primary-strong); display: grid; place-items: center; box-shadow: var(--shadow-md); transition: .25s; }
.post-gallery__btn:hover { background: var(--primary); color: #fff; }
.post-gallery__btn.prev { left: 14px; } .post-gallery__btn.next { right: 14px; }
.post-gallery__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.post-gallery__dots .carousel__dot { background: rgba(255,255,255,.6); }
.post-gallery__dots .carousel__dot.is-active { background: #fff; }

.post-cta { max-width: 760px; margin: 10px auto 80px; padding: 28px 32px; border-radius: var(--radius-lg); background: var(--grad-soft); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border: 1px solid var(--teal-100); }

/* ----------------- Página de empreendimento ----------------- */
.emp-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; padding: 120px 0 40px; overflow: hidden; background: var(--grad-primary); }
.emp-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.emp-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,58,50,.25) 0%, rgba(4,58,50,.82) 100%); }
.emp-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 6px; }
.emp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .emp-layout { grid-template-columns: 1fr; } }
.emp-side .info-row { padding: 9px 0; }

/* ----------------- CTA final ----------------- */
.cta-band { background: var(--grad-primary); border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 16px auto 30px; }
.cta-band .btn--light { background: #fff; color: var(--primary-strong); }
.cta-band .blob { opacity: .25; }

/* ----------------- Footer ----------------- */
.footer { background: var(--ink-900); color: #cbdcd6; padding: 70px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; }
.footer .brand small { color: #7fa89d; }
.footer p { color: #94b3aa; font-size: .92rem; margin-top: 14px; max-width: 320px; }
.footer h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer a { color: #a9c4bc; font-size: .92rem; display: block; padding: 6px 0; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #7fa89d; font-size: .85rem; }

/* ----------------- Scroll reveal ----------------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* Barra de progresso de scroll */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-primary); z-index: 200; transition: width .1s linear; }

/* ----------------- Toasts ----------------- */
.toast-host { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--ink-900); color: #fff; padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-lg); font-size: .92rem; opacity: 0; transform: translateY(12px); transition: .3s var(--ease); max-width: 320px; }
.toast.is-show { opacity: 1; transform: none; }
.toast--success { background: var(--teal-600); }
.toast--error { background: var(--coral-500); }
.toast--info { background: var(--sky-600); }

/* ----------------- Modal genérico ----------------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(15,46,40,.55); backdrop-filter: blur(4px); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .3s; }
.modal-backdrop.is-open { display: flex; opacity: 1; }
.modal { background: var(--surface); border-radius: var(--radius-lg); width: min(560px, 100%); max-height: 92vh; overflow: auto; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.98); transition: transform .35s var(--ease); }
.modal-backdrop.is-open .modal { transform: none; }
.modal--wide { width: min(860px, 100%); }
.modal__head { padding: 24px 28px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.modal__title { font-size: 1.35rem; }
.modal__close { width: 40px; height: 40px; border-radius: 12px; background: var(--paper-3); display: grid; place-items: center; color: var(--ink-500); transition: .2s; flex: none; }
.modal__close:hover { background: var(--coral-500); color: #fff; }
.modal__body { padding: 20px 28px 28px; }

/* ----------------- Formulários ----------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink-700); }
.field .req { color: var(--coral-500); }
.input, .select, .textarea {
  width: 100%; min-width: 0; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--paper-2); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field { min-width: 0; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(16,185,129,.12); }
.input.is-valid { border-color: var(--teal-500); }
.input.is-invalid { border-color: var(--coral-500); }
.textarea { resize: vertical; min-height: 96px; }
.field-hint { font-size: .8rem; margin-top: 6px; color: var(--muted); min-height: 1.1em; }
.field-hint.is-error { color: var(--coral-500); }
.field-hint.is-ok { color: var(--teal-600); }
.form-row { display: grid; gap: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 560px){ .form-row--2, .form-row--3 { grid-template-columns: 1fr; } }

.pass-wrap { position: relative; }
.pass-wrap .input { padding-right: 46px; }
.pass-eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--muted); background: transparent; }
.pass-eye:hover { color: var(--primary); background: var(--paper-3); }
.pass-eye svg { width: 20px; height: 20px; }
.pass-eye.is-on { color: var(--primary); }

.input-check { display: flex; align-items: center; gap: 6px; position: relative; }
.input-status { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); display: none; }
.input-check.checking .spinner, .input-check.ok .ok-ic, .input-check.err .err-ic { display: block; }
.spinner { width: 18px; height: 18px; border: 2px solid var(--teal-200); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.ok-ic { color: var(--teal-600); display: none; }
.err-ic { color: var(--coral-500); display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Auth split layout */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-split > * { min-width: 0; }
@media (max-width: 900px){ .auth-split { grid-template-columns: 1fr; } }
/* Cadastro ocupa largura total (o wizard precisa de espaço) */
body.cadastro-active .auth-aside { display: none; }
body.cadastro-active .auth-split { grid-template-columns: 1fr; }
body.cadastro-active .auth-box { width: min(880px, 100%); }
.auth-aside { background: var(--grad-primary); color: #fff; padding: clamp(40px,6vw,72px); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
@media (max-width: 900px){ .auth-aside { display: none; } }
.auth-main { padding: clamp(32px,5vw,64px); display: flex; align-items: center; justify-content: center; background: var(--bg); }
.auth-box { width: min(460px, 100%); min-width: 0; }
.auth-panel { min-width: 0; }

/* ----------------- Wizard / Stepper (cadastro) ----------------- */
.stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 28px; }
.stepper__item { display: flex; align-items: center; gap: 8px; flex: 1; }
.stepper__dot { width: 34px; height: 34px; border-radius: 50%; background: var(--paper-3); color: var(--ink-400); display: grid; place-items: center; font-weight: 700; font-size: .9rem; flex: none; transition: .3s var(--ease); border: 2px solid transparent; }
.stepper__item.is-active .stepper__dot { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-primary); }
.stepper__item.is-done .stepper__dot { background: var(--teal-50); color: var(--teal-700); border-color: var(--teal-300); }
.stepper__label { font-size: .82rem; font-weight: 600; color: var(--ink-400); }
.stepper__item.is-active .stepper__label { color: var(--ink-900); }
.stepper__line { flex: 1; height: 2px; background: var(--border); border-radius: 2px; min-width: 12px; }
.stepper__item.is-done + .stepper__line { background: var(--teal-300); }
@media (max-width: 640px){ .stepper__label { display: none; } }

/* Stepper rolável (muitas etapas) */
.stepper--scroll { overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; padding-bottom: 10px; -webkit-overflow-scrolling: touch; min-width: 0; scroll-behavior: smooth; }
.stepper--scroll .stepper__item { flex: none; }
.stepper--scroll .stepper__line { min-width: 16px; flex: none; }
.stepper--scroll .stepper__label { white-space: nowrap; }
@media (max-width: 640px){ .stepper--scroll .stepper__label { display: none; } }

.field--full { width: 100%; }

/* Grupos de checkbox (deficiência / equipamentos) */
.check-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 10px; margin: 8px 0; }
.check-pill { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer; transition: .2s; font-size: .92rem; }
.check-pill:hover { border-color: var(--teal-300); }
.check-pill input { width: 18px; height: 18px; accent-color: var(--primary); }
.check-pill.is-on { border-color: var(--primary); background: var(--teal-50); }

/* Card de membro da família */
.fam-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; background: var(--paper-2); position: relative; }
.fam-card.is-titular { border-color: var(--teal-300); background: var(--teal-50); }
.fam-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.fam-card__head b { font-size: .98rem; }

.wizard-step { display: none; animation: fadeUp .4s var(--ease); }
.wizard-step.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: none } }
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); }

/* Seleção de associação / empreendimento (cards clicáveis) */
.pick-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 560px){ .pick-grid { grid-template-columns: 1fr; } }
.pick { text-align: left; padding: 18px 20px; border-radius: var(--radius); border: 2px solid var(--border); background: var(--surface); transition: .25s var(--ease); position: relative; }
.pick:hover { border-color: var(--teal-300); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pick.is-selected { border-color: var(--primary); background: var(--teal-50); }
.pick.is-selected::after { content: '✓'; position: absolute; top: 12px; right: 14px; width: 22px; height: 22px; background: var(--primary); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.pick b { display: block; font-size: 1.02rem; }
.pick span { font-size: .84rem; color: var(--muted); }
.pick .badge { margin-top: 8px; }

/* Cartão de dependente no wizard */
.dep-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; background: var(--paper-2); position: relative; }
.dep-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dep-card__head b { font-size: 1rem; }
.dep-remove { color: var(--coral-500); font-weight: 600; font-size: .85rem; display: inline-flex; gap: 4px; align-items: center; }
.age-flag { margin-top: 6px; }

.empty-block { text-align: center; padding: 30px; border: 2px dashed var(--border); border-radius: var(--radius); color: var(--muted); }

/* Resumo revisão */
.review-group { margin-bottom: 20px; }
.review-group h4 { font-size: .95rem; margin-bottom: 10px; color: var(--ink-700); }
.review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
@media (max-width: 560px){ .review-list { grid-template-columns: 1fr; } }
.review-list div { font-size: .88rem; }
.review-list .k { color: var(--muted); }

/* Tabs auth (login/cadastro) */
.auth-tabs { display: flex; gap: 6px; background: var(--paper-3); padding: 5px; border-radius: 100px; margin-bottom: 26px; }
.auth-tab { flex: 1; padding: 11px; border-radius: 100px; font-weight: 700; color: var(--ink-400); transition: .25s; }
.auth-tab.is-active { background: var(--surface); color: var(--primary-strong); box-shadow: var(--shadow-sm); }

/* utilidades */
.mt-0{margin-top:0}.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-0{margin-bottom:0}
.flex{display:flex}.between{justify-content:space-between}.center{align-items:center}.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}.wrap{flex-wrap:wrap}
.hidden{display:none !important}
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: 100px; }
.badge--ok { background: var(--teal-50); color: var(--teal-700); }
.badge--warn { background: #fff7ed; color: #c2410c; }
.badge--info { background: var(--sky-100); color: var(--sky-600); }
.badge--danger { background: #fef2f2; color: var(--coral-500); }
.badge--muted { background: var(--paper-3); color: var(--ink-500); }

/* ============================================================
   Logos animados das associações (órbita na home / constelação no Quem Somos)
   ============================================================ */
.hero-orbit { position: relative; width: min(430px, 84vw); aspect-ratio: 1; margin: 0 auto; display: grid; place-items: center; --r: 150px; }
.hero-orbit .lo-track { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.22); transition: opacity .5s; }
.hero-orbit .lo-track--2 { width: 64%; height: 64%; border-color: rgba(255,255,255,.14); }
.lo-hub { position: absolute; width: 122px; height: 122px; border-radius: 32px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal-500, #10b981), var(--teal-700, #075c41));
  box-shadow: 0 22px 55px rgba(4,40,28,.45), inset 0 2px 0 rgba(255,255,255,.28); z-index: 3;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .45s; }
.lo-hub svg { width: 66px; height: 66px; }
.lo-hub::after { content: ""; position: absolute; inset: -16px; border-radius: 44px;
  background: radial-gradient(circle, rgba(16,185,129,.4), transparent 70%); z-index: -1; animation: lo-pulse 3.4s ease-in-out infinite; }
@keyframes lo-pulse { 0%,100% { transform: scale(1); opacity: .65 } 50% { transform: scale(1.14); opacity: 1 } }
.lo-ring { position: absolute; width: 100%; height: 100%; animation: lo-spin 18s linear infinite; }
.lo-item { position: absolute; top: 50%; left: 50%; width: 92px; height: 92px; z-index: 4;
  transform: translate(-50%, -50%) rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
  transition: transform .8s cubic-bezier(.5,-.2,.3,1.3), opacity .35s; }
.lo-chip { width: 100%; height: 100%; border-radius: 22px; background: #fff; display: grid; place-items: center; padding: 9px;
  box-shadow: 0 12px 30px rgba(4,40,28,.28); animation: lo-spin-rev 18s linear infinite; }
.lo-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lo-chip__ini { font-weight: 800; font-size: 2rem; color: var(--primary-strong, #075c41); }
@keyframes lo-spin { to { transform: rotate(360deg) } }
@keyframes lo-spin-rev { to { transform: rotate(-360deg) } }

/* Camada do "coração abrindo + logo do Grupo surgindo" */
.lo-reveal { position: absolute; inset: 0; display: grid; place-items: center; z-index: 6; pointer-events: none; }
.lo-reveal > * { grid-area: 1 / 1; }
.lo-heart { width: 122px; opacity: 0; }
.lo-heart svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 10px 22px rgba(244,63,94,.4)); }
.lo-heart--l svg { clip-path: inset(0 50% 0 0); }
.lo-heart--r svg { clip-path: inset(0 0 0 50%); }

/* Fase JUNTAR: congela a órbita e junta os logos ao centro; o logo do Grupo continua visível */
.hero-orbit.gather .lo-ring, .hero-orbit.gather .lo-chip,
.hero-orbit.bloom .lo-ring, .hero-orbit.bloom .lo-chip { animation-play-state: paused; }
.hero-orbit.gather .lo-track, .hero-orbit.bloom .lo-track { opacity: 0; }
.hero-orbit.gather .lo-item { transform: translate(-50%,-50%) scale(.6); transition-delay: calc(var(--i) * .09s); z-index: calc(20 + var(--i)); }

/* Fase FLORESCER: o coração abre sobre o logo do Grupo e, JUNTO, os 4 logos já se redistribuem */
.hero-orbit.bloom .lo-item { transition-delay: calc(.3s + var(--i) * .09s); z-index: 4; }
.hero-orbit.bloom .lo-heart--l { animation: heart-l 1.5s cubic-bezier(.45,0,.2,1) forwards; }
.hero-orbit.bloom .lo-heart--r { animation: heart-r 1.5s cubic-bezier(.45,0,.2,1) forwards; }
.hero-orbit.bloom .lo-hub { animation: hub-pop 1.5s cubic-bezier(.34,1.56,.64,1); z-index: 5; }
@keyframes hub-pop { 0% { transform: scale(1) } 24% { transform: scale(1.24) } 44% { transform: scale(.96) } 62% { transform: scale(1.12) } 100% { transform: scale(1) } }
@keyframes heart-l { 0% { transform: scale(.15); opacity: 0 } 18% { transform: scale(1.16); opacity: 1 } 32% { transform: scale(.94) } 46% { transform: scale(1.1) } 60% { transform: translateX(0) rotate(0) scale(1); opacity: 1 } 100% { transform: translateX(-84px) rotate(-28deg) scale(.8); opacity: 0 } }
@keyframes heart-r { 0% { transform: scale(.15); opacity: 0 } 18% { transform: scale(1.16); opacity: 1 } 32% { transform: scale(.94) } 46% { transform: scale(1.1) } 60% { transform: translateX(0) rotate(0) scale(1); opacity: 1 } 100% { transform: translateX(84px) rotate(28deg) scale(.8); opacity: 0 } }

.logo-constellation { position: relative; width: min(440px, 88vw); aspect-ratio: 1 / .9; margin: 0 auto; }
.lc-core { position: absolute; inset: 0; margin: auto; width: 132px; height: 132px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--teal-500, #10b981), var(--sky-500, #0ea5e9), var(--teal-700, #075c41), var(--teal-500, #10b981));
  filter: blur(3px); opacity: .18; animation: lc-rotate 22s linear infinite; }
.lc-core::after { content: ""; position: absolute; inset: 26px; border-radius: 50%; background: var(--surface, #fff); opacity: .5; }
.lc-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.lc-lines path { fill: none; stroke: var(--primary-strong, #0b7a56); stroke-width: 1.4; stroke-dasharray: 5 8; opacity: .28; animation: lc-dash 3.5s linear infinite; }
@keyframes lc-dash { to { stroke-dashoffset: -26 } }
.lc-node { position: absolute; width: 110px; height: 110px; border-radius: 26px; background: #fff; display: grid; place-items: center; padding: 12px;
  box-shadow: 0 18px 44px rgba(15,42,34,.16); animation: lc-float 6s ease-in-out infinite; animation-delay: var(--d); z-index: 2; }
.lc-node img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lc-node--0 { top: 0; left: 50%; margin-left: -55px; }
.lc-node--1 { top: 50%; right: 0; margin-top: -55px; }
.lc-node--2 { bottom: 0; left: 50%; margin-left: -55px; }
.lc-node--3 { top: 50%; left: 0; margin-top: -55px; }
@keyframes lc-float { 0%,100% { translate: 0 0 } 50% { translate: 0 -13px } }
@keyframes lc-rotate { to { transform: rotate(360deg) } }

@media (max-width: 600px) { .hero-orbit { --r: 108px } .lo-hub { width: 96px; height: 96px; border-radius: 26px } .lo-hub svg { width: 52px; height: 52px } .lo-item { width: 74px; height: 74px } .lo-heart { width: 96px } .lc-node { width: 88px; height: 88px; border-radius: 22px } }
/* A rotação/flutuação dos logos é intencional (identidade da marca) e permanece mesmo com
   prefers-reduced-motion; desligamos apenas o "pulso" mais chamativo do hub. */
@media (prefers-reduced-motion: reduce) { .lo-hub::after { animation: none !important } }
