/* ═══════════════════════════════════════════════════
   style.css — Espaço Psicopedagógico Franciane Pinho
   Redesign Premium v2.0
═══════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────── */
:root {
  /* Paleta oficial Franciane Pinho */
  --berry:       #993366;   /* primária — magenta/berry */
  --berry-dark:  #7A2752;   /* hover/darker */
  --berry-light: #C3768A;   /* rosa suave */
  --teal:        #1BBDC3;   /* secundária — teal vibrante */
  --teal-dark:   #149DA3;   /* hover/darker */
  --teal-pale:   #D6F2F3;   /* fundo suave teal */
  --amber:       #FAAE54;   /* accent — âmbar/laranja */
  --coral:       #F37F70;   /* accent — coral */
  --rose:        #C3768A;   /* accent — rosa */
  --bg:          #E8EBEF;   /* fundo geral */
  --bg-card:     #FFFFFF;
  --navy:        #2D1435;   /* navy escuro com tom berry */
  --navy-mid:    #3D2048;
  --text:        #2D1435;
  --text-mid:    #5A4060;
  --text-light:  #8A7090;
  --white:       #FFFFFF;
  --wa:          #25D366;
  --wa-dark:     #128C7E;

  /* Typography */
  --font-script: 'Dancing Script', cursive;        /* Buttershine → Dancing Script */
  --font-head:   'Josefin Sans', system-ui, sans-serif;  /* Caviar Dreams → Josefin Sans */
  --font-body:   'Josefin Sans', system-ui, sans-serif;

  /* Spacing */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(153,51,102,.08);
  --shadow-md:    0 8px 32px rgba(153,51,102,.14);
  --shadow-lg:    0 20px 60px rgba(153,51,102,.18);
  --shadow-teal:  0 8px 32px rgba(27,189,195,.28);
  --shadow-berry: 0 8px 32px rgba(153,51,102,.3);
  --shadow-amber: 0 8px 32px rgba(250,174,84,.35);

  /* Layout */
  --container-max: 1200px;
  --header-h:      76px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
figure { margin: 0; }

/* ── Container ─────────────────────────────────── */
.container {
  width: min(var(--container-max), 100% - 2 * var(--sp-4));
  margin-inline: auto;
}

/* ── Scroll animations ──────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate].is-visible   { opacity: 1; transform: none; }

/* ── Section shared ─────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(27,189,195,.1);
  padding: .3rem .85rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-2);
}
.section-eyebrow--light {
  color: var(--teal-pale);
  background: rgba(27,189,195,.15);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--berry);
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 52ch;
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 40px rgba(27,189,195,.5);
}

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

.btn--gold {
  background: var(--amber);
  color: var(--berry);
  font-weight: 700;
  box-shadow: var(--shadow-amber);
}
.btn--gold:hover {
  background: #FBB96A;
  box-shadow: 0 12px 40px rgba(250,174,84,.6);
}


/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,147,150,.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 24px rgba(13,27,62,.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.header__logo-mark {
  flex-shrink: 0;
}
.header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.header__brand strong {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--berry);
}
.header__brand small {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Nav */
.nav__list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .85rem;
  color: var(--text-mid);
  padding: .5rem .9rem;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--teal);
  background: rgba(10,147,150,.07);
}

.nav__link--cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  font-weight: 600;
}
.nav__link--cta:hover {
  background: #0A8085 !important;
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(27,189,195,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(250,174,84,.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(195,118,138,.15) 0%, transparent 35%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(27,189,195,.2);
  top: -150px; right: -100px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: rgba(250,174,84,.14);
  bottom: -80px; left: 20%;
  animation: orb-drift 16s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: rgba(195,118,138,.18);
  top: 30%; left: -50px;
  animation: orb-drift 10s ease-in-out infinite 3s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -30px); }
  66%       { transform: translate(-15px, 20px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  padding-block: var(--sp-12);
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--berry);
  background: rgba(153,51,102,.08);
  border: 1px solid rgba(153,51,102,.22);
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--berry);
  line-height: 1.08;
  letter-spacing: .02em;
  margin-bottom: var(--sp-3);
}
.hero__title em {
  font-style: normal;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.2em;
  color: var(--amber);
  letter-spacing: 0;
  position: relative;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 46ch;
  margin-bottom: var(--sp-4);
  line-height: 1.75;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
  justify-content: center;
}

.hero__tags {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tag {
  font-size: .75rem;
  font-weight: 500;
  color: var(--berry);
  background: rgba(153,51,102,.08);
  border: 1px solid rgba(153,51,102,.2);
  padding: .3rem .8rem;
  border-radius: var(--r-full);
}

/* Hero Photo */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-ring {
  position: relative;
  width: 360px;
  height: 360px;
}

.hero__photo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(27,189,195,.35) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}

.hero__photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(27,189,195,.55);
  box-shadow: 0 0 0 8px rgba(27,189,195,.1), var(--shadow-lg);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Orbit decorations */
.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(27,189,195,.35);
  animation: orbit-spin 15s linear infinite;
}
.hero__orbit--1 {
  inset: -40px;
  animation-duration: 20s;
}
.hero__orbit--2 {
  inset: -20px;
  animation-duration: 12s;
  animation-direction: reverse;
}
.hero__orbit--3 {
  inset: -60px;
  animation-duration: 28s;
}
.hero__orbit--4 {
  inset: -80px;
  animation-duration: 18s;
  animation-direction: reverse;
}

.hero__orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px; height: 60px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  margin: 0 auto;
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


/* ════════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════════ */
.servicos {
  background: var(--bg);
  padding-block: var(--sp-16);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

/* Service Card */
.scard {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid rgba(13,27,62,.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  perspective: 1000px;
  text-align: center;
  align-items: center;
}
.scard:hover {
  transform: translateY(-6px) rotateX(1deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27,189,195,.2);
}

.scard--featured {
  background: linear-gradient(135deg, #2D1435 0%, #993366 100%);
  border-color: rgba(10,147,150,.25);
  color: var(--white);
}
.scard--featured .scard__title { color: var(--white); }
.scard--featured .scard__text  { color: rgba(255,255,255,.7); }
.scard--featured .scard__list li {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.1);
}
.scard--featured .scard__cta {
  color: var(--gold);
  background: rgba(233,196,106,.1);
  border-color: rgba(233,196,106,.25);
}
.scard--featured .scard__cta:hover {
  background: rgba(233,196,106,.2);
}

.scard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.scard__icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scard__icon--teal  { background: rgba(27,189,195,.1);  color: var(--teal); }
.scard__icon--gold  { background: rgba(250,174,84,.12); color: var(--amber); }
.scard__icon--coral { background: rgba(243,127,112,.1); color: var(--coral); }
.scard__icon--vr    { background: rgba(195,118,138,.12);color: var(--berry); }

.scard__number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(13,27,62,.06);
  line-height: 1;
}
.scard--featured .scard__number { color: rgba(255,255,255,.08); }

.scard__badge-new {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--berry);
  background: var(--gold);
  padding: .25rem .7rem;
  border-radius: var(--r-full);
}

.scard__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--berry);
  line-height: 1.3;
}

.scard__text {
  color: var(--text-mid);
  font-size: .92rem;
  line-height: 1.65;
  flex: 1;
}

.scard__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.scard__list li {
  font-size: .85rem;
  color: var(--text-mid);
  padding: .35rem .6rem;
  border-left: 2px solid rgba(27,189,195,.3);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(27,189,195,.04);
}

.scard__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--berry);
  background: rgba(153,51,102,.07);
  border: 1px solid rgba(153,51,102,.15);
  padding: .6rem 1.1rem;
  border-radius: var(--r-full);
  width: fit-content;
  transition: background var(--transition), gap var(--transition);
}
.scard__cta:hover {
  background: rgba(153,51,102,.14);
  gap: .8rem;
}


/* ════════════════════════════════════════════════
   NESPLORA
════════════════════════════════════════════════ */
.nesplora {
  position: relative;
  padding-block: var(--sp-16);
  overflow: hidden;
}

.nesplora__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.nesplora__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,189,195,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,189,195,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.nesplora__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.nesplora__orb--1 {
  width: 600px; height: 600px;
  background: rgba(27,189,195,.15);
  top: -200px; right: -100px;
}
.nesplora__orb--2 {
  width: 400px; height: 400px;
  background: rgba(250,174,84,.1);
  bottom: -150px; left: 0;
}

.nesplora__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  text-align: center;
}

.nesplora__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.nesplora__title-accent {
  color: var(--berry);
  position: relative;
}
.nesplora__title-accent::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--amber), transparent);
  border-radius: var(--r-full);
}

.nesplora__desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  max-width: 48ch;
  margin-inline: auto;
}
.nesplora__desc strong { color: var(--teal); }

.nesplora__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.nesplora__feat {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  text-align: left;
}

.nesplora__feat-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(153,51,102,.07);
  border: 1px solid rgba(153,51,102,.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nesplora__feat strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.nesplora__feat p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Nesplora Visual */
.nesplora__visual {
  display: flex;
  justify-content: center;
}

.nesplora__device {
  width: 100%;
  max-width: 480px;
}

.nesplora__screen {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(10,147,150,.3);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: 0 0 0 1px rgba(10,147,150,.1), 0 40px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.nesplora__screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(10,147,150,.6), transparent);
}

.nesplora__screen-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.nesplora__illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(10,147,150,.3));
}

.nesplora__stats-overlay {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.nesplora__stat-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(153,51,102,.07);
  border: 1px solid rgba(153,51,102,.18);
  padding: .4rem .8rem;
  border-radius: var(--r-full);
}


/* ════════════════════════════════════════════════
   SOBRE MIM
════════════════════════════════════════════════ */
.sobre {
  background: var(--white);
  padding-block: var(--sp-16);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.sobre__photo-wrap {
  position: relative;
  max-width: 420px;
}
.sobre__photo-accent {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--teal-pale), rgba(233,196,106,.2));
  border-radius: var(--r-xl);
  z-index: 0;
}
.sobre__photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  object-position: top center;
}
.sobre__photo-card {
  position: absolute;
  z-index: 2;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.2rem;
  border-radius: var(--r-lg);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.sobre__lead {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--berry);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
  text-align: center;
}

.sobre__content-col {
  text-align: center;
}

.sobre__content-col p {
  color: var(--text-mid);
  margin-bottom: var(--sp-2);
  font-size: .97rem;
  text-align: center;
}

.sobre__credentials {
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.cred-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  text-align: left;
}
.cred-item__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(10,147,150,.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.cred-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--berry);
  margin-bottom: .15rem;
}
.cred-item span {
  font-size: .83rem;
  color: var(--text-light);
}


/* ════════════════════════════════════════════════
   NÚMEROS / STATS
════════════════════════════════════════════════ */
.numeros {
  background: #ffffff;
  padding-block: var(--sp-12);
  position: relative;
  overflow: hidden;
}
.numeros::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(153,51,102,.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(27,189,195,.03) 0%, transparent 35%);
}

.numeros__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-4);
}

.numeros__item {
  text-align: center;
}
.numeros__value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--berry);
  line-height: 1;
}
.numeros__plus {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-left: .1em;
}
.numeros__label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-top: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.numeros__divider {
  width: 1px;
  height: 60px;
  background: rgba(153,51,102,.15);
  border-radius: var(--r-full);
}


/* ════════════════════════════════════════════════
   COMO FUNCIONA
════════════════════════════════════════════════ */
.processo {
  background: var(--bg);
  padding-block: var(--sp-16);
}

.processo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
}

.pstep {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-3);
  position: relative;
  border: 1px solid rgba(13,27,62,.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pstep:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pstep__number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pstep__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(10,147,150,.1), rgba(10,147,150,.05));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: var(--sp-2);
  border: 1px solid rgba(10,147,150,.15);
}

.pstep__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--berry);
  margin-bottom: var(--sp-1);
}

.pstep__text {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.pstep__connector {
  position: absolute;
  top: 52px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, var(--teal-pale), transparent);
  z-index: 1;
}


/* ════════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════════ */
.contato {
  position: relative;
  padding-block: var(--sp-16);
  overflow: hidden;
}

.contato__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.contato__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10,147,150,.12) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.contato__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.contato__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
  text-align: center;
}

.contato__desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 44ch;
  margin-bottom: var(--sp-4);
  line-height: 1.75;
  text-align: center;
  margin-inline: auto;
}

.btn--whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--wa);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
  border-radius: var(--r-full);
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn--whatsapp-lg:hover {
  transform: translateY(-3px);
  background: var(--wa-dark);
  box-shadow: 0 16px 48px rgba(37,211,102,.5);
}

.contato__whatsapp-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}

/* Contact info card */
.contato__info-card {
  background: #f9f5f7;
  border: 1px solid rgba(153,51,102,.12);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
}

.contato__card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--berry);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(153,51,102,.12);
}

.contato__item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(153,51,102,.07);
}
.contato__item:last-child { border-bottom: none; }

.contato__item-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(153,51,102,.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--berry);
}

.contato__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: .2rem;
}
.contato__item span,
.contato__item a {
  font-size: .9rem;
  color: var(--text-mid);
}
.contato__item a:hover { color: var(--berry-dark); }


/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: #f9f5f7;
  border-top: 1px solid rgba(153,51,102,.12);
  padding: var(--sp-4) 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-head);
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.35;
}
.site-footer__brand small { font-size: .72rem; opacity: .75; }

.site-footer__copy {
  font-size: .8rem;
  color: var(--text-light);
}

.site-footer__credit {
  font-size: .75rem;
  color: var(--berry-light);
  letter-spacing: .05em;
}


/* ════════════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: var(--r-full);
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,.7);
  animation: none;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.08); }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicos__grid        { grid-template-columns: 1fr 1fr; }
  .processo__steps       { grid-template-columns: repeat(2, 1fr); }
  .pstep__connector      { display: none; }
  .numeros__grid         {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .numeros__divider      { display: none; }
  .numeros__item         { padding: var(--sp-2); }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — Tablet M (≤ 900px)
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: var(--sp-8);
  }
  .hero__visual  { order: -1; }
  .hero__desc    { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__tags    { justify-content: center; }
  .hero__badge   { margin-inline: auto; }
  .hero__photo-ring { width: 280px; height: 280px; }

  .nesplora__inner  { grid-template-columns: 1fr; }
  .nesplora__visual { order: -1; }

  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__photo-col { display: flex; justify-content: center; }
  .sobre__photo-wrap { max-width: 320px; }

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


/* ════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --header-h: 68px; }

  .hero__title         { font-size: 2.2rem; }
  .hero__photo-ring    { width: 230px; height: 230px; }
  .hero__actions       { flex-direction: column; align-items: center; }

  /* Hamburger */
  .nav__toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: var(--sp-3) var(--sp-4);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(10,147,150,.1);
  }
  .site-nav.open  { display: block; }
  .nav__list      { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .nav__link      { font-size: .95rem; width: 100%; }

  .servicos__grid  { grid-template-columns: 1fr; }
  .processo__steps { grid-template-columns: 1fr; }

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

  .section-title   { font-size: 1.75rem; }

  .site-footer__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__credit { display: none; }
}


/* ════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__orbit { animation: none; }
}
