/* ================================================
   PERTENCER — Centro de Neurodesenvolvimento
   Identidade Visual oficial conforme Manual de Marca
   Cores: #DD1C75 | #0043E4 | #F96921 | #A688F8 | #FAD9E0 | #F6F1EE
   Tipografia: Recoleta (display) + Montserrat Alternates (corpo)
================================================ */

/* ── TOKENS ──────────────────────────────────── */
:root {
  /* Paleta oficial */
  --pink: #DD1C75;
  --pink-d: #B8145E;
  --pink-l: #FAD9E0;
  --blue: #0043E4;
  --blue-l: #E8EEFF;
  --orange: #F96921;
  --orange-l: #FEF0E9;
  --lavender: #A688F8;
  --lav-l: #EDE8FE;
  --cream: #F6F1EE;
  --white: #FFFFFF;
  --ink: #1A1523;
  --ink-s: #4A4360;
  --ink-xs: #8B82A0;

  --r: 24px;
  --max: 1180px;
  --f-display: 'Recoleta', 'Georgia', serif;
  --f-body: 'Montserrat Alternates', 'Mulish', sans-serif;
}

/* ── RESET ───────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
}

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background: var(--pink);
  color: #fff;
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ── UTILITY ─────────────────────────────────── */
.tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink-d);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.tag::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-bottom: 18px;
  color: var(--ink);
}

.section-head p {
  color: var(--ink-s);
  font-size: 1.05rem;
  line-height: 1.7;
}

section {
  padding: 110px 0;
}

/* Buttons */
.btn-p {
  background: var(--pink);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 32px -12px rgba(221, 28, 117, .55);
  transition: transform .22s, box-shadow .22s, background .22s;
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -12px rgba(221, 28, 117, .65);
  background: var(--pink-d);
}

.btn-g {
  border: 2px solid rgba(26, 21, 35, .15);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  transition: .2s;
}

.btn-g:hover {
  border-color: var(--ink);
  background: rgba(26, 21, 35, .04);
}

/* ── REVEAL ──────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.22, .68, 0, 1.1),
    transform .8s cubic-bezier(.22, .68, 0, 1.1);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv[data-delay="1"] {
  transition-delay: .1s;
}

.rv[data-delay="2"] {
  transition-delay: .2s;
}

.rv[data-delay="3"] {
  transition-delay: .3s;
}

.rv[data-delay="4"] {
  transition-delay: .4s;
}

.rv[data-delay="5"] {
  transition-delay: .5s;
}

.rv[data-delay="6"] {
  transition-delay: .6s;
}

/* ── HEADER ──────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(246, 241, 238, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 28, 117, .08);
  transition: box-shadow .3s;
}

header.scrolled {
  box-shadow: 0 6px 28px -8px rgba(26, 21, 35, .14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-txt {
  font-family: var(--f-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.logo-txt small {
  display: block;
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
}

nav ul li a {
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .01em;
  position: relative;
  padding-bottom: 4px;
  color: var(--ink-s);
  transition: color .2s;
}

nav ul li a:hover {
  color: var(--ink);
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width .25s ease;
  border-radius: 2px;
}

nav ul li a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, background .2s;
  box-shadow: 0 8px 20px -8px rgba(221, 28, 117, .45);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--pink-d);
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile Menu */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 35, .45);
  z-index: 300;
  opacity: 0;
  transition: opacity .3s;
}

.mob-overlay.open {
  display: block;
  opacity: 1;
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  z-index: 310;
  background: var(--white);
  padding: 30px 28px;
  transform: translateX(110%);
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-menu .close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

.mob-logo {
  height: 40px;
  margin-bottom: 32px;
}

.mob-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-menu ul li a {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 21, 35, .06);
  color: var(--ink);
}

.mob-wa {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 170px 0 110px;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

/* decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 28, 117, .12), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 136, 248, .14), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-l);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  margin-bottom: 22px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--pink);
}

.hero h1 .accent {
  color: var(--orange);
}

.hero .lead {
  font-size: 1.08rem;
  color: var(--ink-s);
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(221, 28, 117, .15);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--pink);
}

.hero-stats span {
  font-size: .8rem;
  color: var(--ink-xs);
  font-weight: 600;
}

/* Hero visual */
.hero-art {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-logo-big {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 40px 80px -24px rgba(221, 28, 117, .3),
    0 0 0 20px rgba(221, 28, 117, .06);
  background: var(--white);
}

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

/* floating chips */
.chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 48px -16px rgba(26, 21, 35, .2);
  animation: floatChip 4s ease-in-out infinite;
  z-index: 2;
}

.chip.c1 {
  bottom: 80px;
  left: 0;
  width: 200px;
  animation-delay: 0s;
}

.chip.c2 {
  top: 60px;
  left: 30px;
  width: 210px;
  animation-delay: 1.6s;
}

.chip.c3 {
  top: 10px;
  right: 20px;
  width: 170px;
  animation-delay: .8s;
}

@keyframes floatChip {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 8px;
}

.chip.c1 .chip-icon {
  background: var(--pink-l);
}

.chip.c2 .chip-icon {
  background: var(--orange-l);
}

.chip.c3 .chip-icon {
  background: var(--lav-l);
}

.chip h5 {
  font-size: .85rem;
  margin-bottom: 2px;
  color: var(--ink);
}

.chip p {
  font-size: .74rem;
  color: var(--ink-s);
}

/* ── SOBRE ───────────────────────────────────── */
.sobre {
  background: #fff;
}

.sobre-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.sobre-img-col {
  position: relative;
}

.sobre-main {
  width: 100%;
  height: 480px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 32px 64px -20px rgba(221, 28, 117, .2);
}

.sobre-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, var(--pink-l) 0%, var(--lav-l) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.img-ph svg {
  width: 64px;
  height: 64px;
  opacity: .35;
  color: var(--pink);
}

.img-ph span {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-xs);
}

.sobre-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--pink);
  color: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 16px 36px -10px rgba(221, 28, 117, .55);
}

.sobre-badge strong {
  font-family: var(--f-display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.sobre-badge span {
  font-size: .8rem;
  opacity: .9;
}

.sobre-logo {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, .2);
  background: var(--pink);

  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-logo img {
  width: 60%;
  height: 60%;
  object-fit: cover;
}

.quote-block {
  border-left: 4px solid var(--pink);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--f-display);
  font-size: 1.16rem;
  font-style: italic;
  color: var(--ink-s);
  line-height: 1.6;
}

.sobre-text p {
  color: var(--ink-s);
  margin-bottom: 14px;
  font-size: 1rem;
}

.sobre-text strong {
  color: var(--ink);
}

.founders {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(221, 28, 117, .12);
}

.founders-av {
  display: flex;
}

.founders-av div {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
}

.founders-av div:nth-child(1) {
  background: var(--pink);
}

.founders-av div:nth-child(2) {
  background: var(--blue);
}

.founders-av div:nth-child(3) {
  background: var(--orange);
}

.founders p {
  font-size: .86rem;
  color: var(--ink-s);
}

.founders p strong {
  color: var(--ink);
  display: block;
}

/* ── ÁREAS ───────────────────────────────────── */
.areas {
  background: var(--cream);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  border: 1.5px solid transparent;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative;
  overflow: hidden;
}

.area-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px -18px rgba(26, 21, 35, .16);
}

.area-color-bar {
  height: 4px;
  border-radius: 99px;
  margin-bottom: 22px;
  width: 44px;
  transition: width .3s;
}

.area-card:hover .area-color-bar {
  width: 72px;
}

.area-card:nth-child(1) .area-color-bar {
  background: var(--pink);
}

.area-card:nth-child(2) .area-color-bar {
  background: var(--blue);
}

.area-card:nth-child(3) .area-color-bar {
  background: var(--orange);
}

.area-card:nth-child(4) .area-color-bar {
  background: var(--lavender);
}

.area-card:nth-child(5) .area-color-bar {
  background: var(--pink);
}

.area-card:nth-child(6) .area-color-bar {
  background: var(--blue);
}

.area-card.area-full .area-color-bar {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--lavender));
}

.area-card:nth-child(1):hover {
  border-color: rgba(221, 28, 117, .2);
}

.area-card:nth-child(2):hover {
  border-color: rgba(0, 67, 228, .2);
}

.area-card:nth-child(3):hover {
  border-color: rgba(249, 105, 33, .2);
}

.area-card:nth-child(4):hover {
  border-color: rgba(166, 136, 248, .2);
}

.area-card:nth-child(5):hover {
  border-color: rgba(221, 28, 117, .2);
}

.area-card:nth-child(6):hover {
  border-color: rgba(0, 67, 228, .2);
}

.area-card.area-full:hover {
  border-color: rgba(221, 28, 117, .25);
}

.area-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.area-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.area-card p {
  font-size: .87rem;
  color: var(--ink-s);
  line-height: 1.65;
}

.area-full {
  grid-column: 1/-1;
}

.area-full .area-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.area-full .area-card .area-icon {
  font-size: 2.2rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.area-full .area-card>div .area-color-bar {
  margin-bottom: 12px;
}

/* ── EQUIPE ──────────────────────────────────── */
.equipe {
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  border: 1.5px solid rgba(221, 28, 117, .08);
  transition: transform .25s, box-shadow .25s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(221, 28, 117, .18);
}

.team-photo {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-photo-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(155deg, var(--pink-l), var(--lav-l));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-photo-ph svg {
  width: 52px;
  height: 52px;
  opacity: .4;
  color: var(--pink);
}

.team-photo-ph span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-xs);
}

.team-spec-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  color: #fff;
}

.team-card:nth-child(1) .team-spec-tag {
  background: var(--pink);
}

.team-card:nth-child(2) .team-spec-tag {
  background: var(--blue);
}

.team-card:nth-child(3) .team-spec-tag {
  background: var(--lavender);
}

.team-card:nth-child(4) .team-spec-tag {
  background: var(--orange);
}

.team-card:nth-child(5) .team-spec-tag {
  background: var(--pink);
}

.team-card:nth-child(6) .team-spec-tag {
  background: var(--blue);
}

.team-card:nth-child(7) .team-spec-tag {
  background: var(--lavender);
}

.team-card:nth-child(8) .team-spec-tag {
  background: var(--orange);
}

.team-info {
  padding: 22px 22px 24px;
}

.team-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-info .cref {
  font-size: .78rem;
  color: var(--ink-xs);
  margin-bottom: 10px;
}

.team-info p {
  font-size: .85rem;
  color: var(--ink-s);
  line-height: 1.6;
}

.team-note {
  margin-top: 40px;
  background: var(--pink-l);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.team-note svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--pink);
}

.team-note p {
  font-size: .9rem;
  color: var(--ink-s);
}

/* ── DIFERENCIAIS ────────────────────────────── */
.diferenciais {
  background: var(--cream);
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dif-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  border: 1.5px solid transparent;
  transition: background .3s, border-color .3s, transform .25s;
}

.dif-card:hover {
  transform: translateY(-4px);
}

.dif-card:nth-child(odd):hover {
  background: var(--pink-l);
  border-color: rgba(221, 28, 117, .15);
}

.dif-card:nth-child(even):hover {
  background: var(--lav-l);
  border-color: rgba(166, 136, 248, .2);
}

.dif-num {
  font-family: var(--f-display);
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.dif-card:nth-child(1) .dif-num,
.dif-card:nth-child(3) .dif-num,
.dif-card:nth-child(5) .dif-num,
.dif-card:nth-child(7) .dif-num {
  color: var(--pink);
  opacity: .7;
}

.dif-card:nth-child(2) .dif-num,
.dif-card:nth-child(4) .dif-num,
.dif-card:nth-child(6) .dif-num,
.dif-card:nth-child(8) .dif-num {
  color: var(--lavender);
  opacity: .8;
}

.dif-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.dif-card p {
  font-size: .85rem;
  color: var(--ink-s);
  line-height: 1.6;
}

/* ── MISSÃO VISÃO VALORES ────────────────────── */
.mvv {
  background: linear-gradient(155deg, #1A1523 0%, #0D0B14 100%);
  color: #EDE8F8;
  position: relative;
  overflow: hidden;
}

.mvv::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(221, 28, 117, .08);
  pointer-events: none;
}

.mvv::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(166, 136, 248, .08);
  pointer-events: none;
}

.mvv .tag {
  color: #DD1C75;
}

.mvv .section-head p {
  color: #A89EC0;
}

.mvv .section-head h2 {
  color: #fff;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.mvv-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 34px;
  backdrop-filter: blur(4px);
  transition: background .3s;
}

.mvv-card:hover {
  background: rgba(221, 28, 117, .08);
  border-color: rgba(221, 28, 117, .25);
}

.mvv-card h3 {
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 14px;
}

.mvv-card p {
  color: #D4CDE8;
  font-size: .97rem;
  line-height: 1.7;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.valor {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 20px 16px;
  transition: background .3s, transform .25s;
}

.valor:hover {
  background: rgba(166, 136, 248, .15);
  transform: translateY(-3px);
}

.valor-ico {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.valor strong {
  display: block;
  color: #fff;
  font-family: var(--f-display);
  font-size: .98rem;
  margin-bottom: 6px;
}

.valor span {
  font-size: .8rem;
  color: #A89EC0;
  line-height: 1.5;
}

/* ── DEPOIMENTOS ─────────────────────────────── */
.depoimentos {
  background: #fff;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dep-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 30px 24px;
  border: 1.5px solid rgba(221, 28, 117, .08);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.dep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(221, 28, 117, .15);
}

.dep-card::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 5rem;
  color: var(--pink);
  opacity: .2;
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
}

.dep-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.dep-stars span {
  color: #F96921;
  font-size: 1rem;
}

.dep-card p {
  font-size: .91rem;
  color: var(--ink-s);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}

.dep-card:nth-child(1) .dep-av {
  background: var(--pink);
}

.dep-card:nth-child(2) .dep-av {
  background: var(--blue);
}

.dep-card:nth-child(3) .dep-av {
  background: var(--orange);
}

.dep-author strong {
  font-size: .9rem;
  display: block;
}

.dep-author span {
  font-size: .78rem;
  color: var(--ink-xs);
}

/* ── FAQ ─────────────────────────────────────── */
.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(221, 28, 117, .08);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  gap: 14px;
  font-weight: 700;
  font-size: .94rem;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--f-body);
  text-align: left;
  color: var(--ink);
  transition: background .2s;
}

.faq-q:hover {
  background: rgba(221, 28, 117, .03);
}

.faq-q.open {
  color: var(--pink-d);
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(221, 28, 117, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .3s, background .3s, border-color .3s;
  color: var(--ink-s);
}

.faq-q.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a.open {
  max-height: 300px;
}

.faq-a p {
  padding: 0 22px 20px;
  font-size: .89rem;
  color: var(--ink-s);
  line-height: 1.7;
}

/* ── CTA STRIP ───────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--pink) 0%, #9B0E51 100%);
  padding: 76px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}

.cta-strip h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-strip p {
  color: rgba(255, 255, 255, .88);
  margin-bottom: 34px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-strip .btn-p {
  background: #fff;
  color: var(--pink-d);
  box-shadow: 0 18px 36px -10px rgba(0, 0, 0, .25);
  position: relative;
  z-index: 1;
}

.cta-strip .btn-p:hover {
  background: var(--cream);
}

/* ── CONTATO ─────────────────────────────────── */
.contato {
  background: #fff;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.info-block h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.info-block .sub {
  color: var(--ink-s);
  margin-bottom: 16px;
  font-size: .95rem;
}

.info-row {
  display: flex;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(221, 28, 117, .08);
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-ic {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--pink-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-row h5 {
  font-size: .88rem;
  margin-bottom: 3px;
}

.info-row a,
.info-row p {
  font-size: .86rem;
  color: var(--ink-s);
}

.info-row a:hover {
  color: var(--pink);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(221, 28, 117, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  transition: .2s;
}

.socials a:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.map-wrap {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(221, 28, 117, .1);
  height: 200px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form */
.cform {
  background: var(--cream);
  border-radius: var(--r);
  padding: 38px;
  border: 1.5px solid rgba(221, 28, 117, .1);
}

.cform h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.cform .sub {
  color: var(--ink-s);
  font-size: .9rem;
  margin-bottom: 26px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: .04em;
  color: var(--ink-s);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 13px;
  font-size: .93rem;
  border: 1.5px solid rgba(26, 21, 35, .1);
  font-family: var(--f-body);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(221, 28, 117, .12);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.cform .submit {
  width: 100%;
  padding: 16px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .96rem;
  cursor: pointer;
  transition: .25s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 30px -10px rgba(221, 28, 117, .5);
}

.cform .submit:hover {
  background: var(--pink-d);
}

.cform .fn {
  font-size: .74rem;
  color: var(--ink-xs);
  text-align: center;
  margin-top: 12px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: linear-gradient(160deg, #1A1523 0%, #0D0B14 100%);
  color: #C8C0DC;
  padding: 64px 0 28px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.foot-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.foot-logo-img {
  height: 40px;
}

.foot-logo-txt {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: #fff;
}

.foot-desc {
  font-size: .86rem;
  color: #8B82A0;
  max-width: 270px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.foot-soc {
  display: flex;
  gap: 10px;
}

.foot-soc a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8C0DC;
  transition: .2s;
}

.foot-soc a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.foot-col h5 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #665E7A;
  margin-bottom: 16px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-size: .86rem;
  color: #C8C0DC;
  transition: .15s;
}

.foot-col a:hover {
  color: var(--pink);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .76rem;
  color: #665E7A;
}

.foot-bottom a {
  color: #8B82A0;
}

.foot-bottom a:hover {
  color: var(--pink);
}

/* ── WA FLOAT ────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 190;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, .6);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.12);
  animation-play-state: paused;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 10px 28px -6px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .4);
  }

  60% {
    box-shadow: 0 10px 28px -6px rgba(37, 211, 102, .5), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media(max-width:1020px) {

  nav ul,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    height: 360px;
    margin-top: 30px;
  }

  .hero-logo-big {
    width: 280px;
    height: 280px;
  }

  .chip.c2 {
    display: none;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .sobre-badge {
    bottom: -14px;
    right: 0;
  }

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

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

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

  .mvv-grid {
    grid-template-columns: 1fr;
  }

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

  .dep-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: 136px 0 72px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-art {
    height: 280px;
  }

  .hero-logo-big {
    width: 210px;
    height: 210px;
    right: -10px;
  }

  .chip.c1 {
    left: -8px;
    width: 175px;
  }

  .chip.c3 {
    display: none;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .dif-grid {
    grid-template-columns: 1fr;
  }

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

  .field-row {
    grid-template-columns: 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }
}

/* ================================================
   GALERIA DE ATENDIMENTOS
================================================ */
.galeria {
  background: var(--cream);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gal-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-tall {
  grid-row: span 2;
}

.gal-wide {
  grid-column: span 2;
}

.gal-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(26, 21, 35, .75));
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.gal-item:hover .gal-label {
  transform: translateY(0);
}

@media(max-width:768px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gal-tall {
    grid-row: span 1;
  }

  .gal-wide {
    grid-column: span 2;
  }

  .gal-label {
    transform: translateY(0);
  }
}

@media(max-width:480px) {
  .galeria-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gal-wide,
  .gal-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ================================================
   DEPOIMENTOS REAIS (prints do Instagram)
================================================ */
.dep-real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.dep-real-card {
  background: #1A1A1A;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .25s, box-shadow .25s;
}

.dep-real-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -14px rgba(221, 28, 117, .25);
}

.dep-real-card img {
  width: 100%;
  height: auto;
  display: block;
}

.dep-more {
  text-align: center;
  margin-top: 8px;
}

.dep-more .btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media(max-width:900px) {
  .dep-real-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .dep-real-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Thumbnails nos cards de área ─────────────── */
.area-thumb {
  width: 100%;
  height: 230px;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 14px;
}

.area-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.area-card:hover .area-thumb img {
  transform: scale(1.05);
}

/* ── Garantia de object-fit nas fotos de equipe ─ */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}