/* =====================================================
   MANUELA GOLEMBA — style.css
   Design: quente, acolhedor, sofisticado
   ===================================================== */

/* ===== TOKENS ===== */
:root {
  /* Paleta quente */
  --rose:        #C4907A;   /* terracota rosado — principal */
  --rose-dk:     #A8735F;   /* hover */
  --rose-lt:     #DDB8A8;   /* claro */
  --rose-bg:     #F9EDE8;   /* fundo suave */
  --rose-xlt:    #FDF5F2;   /* fundo ultra-suave */

  --cream:       #FBF7F2;   /* fundo geral */
  --cream-dk:    #F3EBE1;   /* seção alternada */
  --sand:        #E8DDD1;   /* borda / separador */

  --mauve:       #9B7B8B;   /* destaque secundário */
  --mauve-bg:    #F5EEF3;

  --text:        #2C1F1A;   /* texto escuro quente */
  --text-md:     #5C4037;   /* texto médio */
  --text-lt:     #9C7B72;   /* texto leve */

  --white:       #FFFFFF;
  --wa:          #25D366;

  /* Tipografia */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaços */
  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem; --s8: 2rem; --s10: 2.5rem;
  --s12: 3rem; --s16: 4rem; --s20: 5rem; --s24: 6rem; --s32: 8rem;

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

  /* Sombras */
  --sh-sm: 0 2px 8px rgba(44,31,26,.07);
  --sh-md: 0 6px 24px rgba(44,31,26,.10);
  --sh-lg: 0 16px 48px rgba(44,31,26,.13);
  --sh-rose: 0 8px 32px rgba(196,144,122,.28);

  --tr: .28s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
  --pad: clamp(1.25rem, 5vw, 2rem);
  --hh: 76px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hh); -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ===== UTILITÁRIOS ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s4);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--rose-lt);
  border-radius: 2px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: var(--s5);
}
.section-title em { font-style: italic; color: var(--rose); font-weight: 400; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-md);
  font-weight: 300;
  max-width: 52ch;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: clamp(var(--s12), 5vw, var(--s20)); }
.section-header .section-eyebrow { display: flex; justify-content: center; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: .9rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--tr);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--sh-rose);
}
.btn--primary:hover {
  background: var(--rose-dk);
  box-shadow: 0 12px 40px rgba(196,144,122,.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-md);
  border: 1.5px solid var(--sand);
}
.btn--ghost:hover {
  border-color: var(--rose-lt);
  color: var(--rose);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.btn--header {
  background: var(--rose);
  color: var(--white);
  padding: .65rem 1.5rem;
  font-size: .8rem;
  box-shadow: 0 4px 14px rgba(196,144,122,.3);
}
.btn--header:hover { background: var(--rose-dk); transform: translateY(-1px); }

.btn--lg { padding: 1.1rem 2.4rem; font-size: .95rem; }
.btn--sm { padding: .6rem 1.3rem; font-size: .78rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--hh);
  background: rgba(251,247,242,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.header.scrolled {
  border-color: var(--sand);
  box-shadow: 0 2px 20px rgba(44,31,26,.07);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.logo__mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--rose);
}
.logo__text { display: flex; flex-direction: column; gap: 1px; }
.logo__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}
.logo__cred {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-lt);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-md);
  transition: color var(--tr);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
  transition: width var(--tr);
}
.nav__link:hover, .nav__link.active { color: var(--rose); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Nav fora do header — desktop: overlay centralizado sobre o header */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hh);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
  pointer-events: none;
  background: transparent;
}
.nav__list { pointer-events: auto; }
.nav__close { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--hh);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Blobs decorativos */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: rgba(196,144,122,.12);
  top: -100px; right: -100px;
}
.hero__blob--2 {
  width: 350px; height: 350px;
  background: rgba(155,123,139,.09);
  bottom: -80px; left: 10%;
}
.hero__blob--3 {
  width: 250px; height: 250px;
  background: rgba(221,184,168,.18);
  top: 30%; right: 30%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: center;
  padding-top: clamp(var(--s16), 5vw, var(--s24));
  padding-bottom: clamp(var(--s16), 5vw, var(--s24));
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-bg);
  border: 1px solid var(--rose-lt);
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s6);
}
.dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--s6);
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--s10);
}

.hero__ctas {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero__photo-ring {
  position: absolute;
  inset: -16px;
  border: 1.5px solid var(--rose-lt);
  border-radius: 50% 46% 50% 46%;
  opacity: .6;
  animation: ring-rotate 18s linear infinite;
}
@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}
.hero__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 10/12;
  object-fit: cover;
  border-radius: 50% 44% 50% 44%;
  display: block;
  background: var(--rose-bg);
  position: relative;
  z-index: 1;
  box-shadow: var(--sh-lg);
}
.hero__photo-deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px; height: 120px;
  color: var(--rose-bg);
  z-index: 0;
  opacity: .8;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-lt);
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--rose-lt), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .4; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--s5);
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--s6) var(--pad);
}
.section-divider__line {
  flex: 1;
  height: 1px;
  background: var(--sand);
}
.section-divider__symbol {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--rose-lt);
  flex-shrink: 0;
  user-select: none;
}

/* ===== SOBRE ===== */
.sobre {
  padding: clamp(var(--s20), 8vw, var(--s32)) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.sobre__bg-circle {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose-xlt) 0%, transparent 70%);
  pointer-events: none;
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s12), 7vw, var(--s24));
  align-items: center;
}

.sobre__photo-col { position: relative; }
.sobre__photo-wrap { position: relative; }
.sobre__photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 0;
  display: block;
  background: var(--rose-bg);
  box-shadow: var(--sh-lg);
}
.sobre__photo-accent {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 70%; height: 70%;
  background: var(--rose-bg);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  z-index: -1;
}

.sobre__text-col p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: var(--s4);
}

/* ===== PARA QUEM ===== */
.para-quem {
  padding: clamp(var(--s20), 8vw, var(--s32)) 0;
  background: var(--cream-dk);
}

.pq__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.pq__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  border: 1.5px solid var(--sand);
  transition: all var(--tr);
  position: relative;
  overflow: hidden;
}
.pq__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.pq__card:hover {
  border-color: var(--rose-lt);
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}
.pq__card:hover::after { transform: scaleX(1); }

.pq__card-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--rose-bg);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
}

.pq__card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s3);
}

.pq__card p {
  font-size: .875rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.7;
  margin-bottom: var(--s4);
}

.pq__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.pq__card-tags span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rose);
  background: var(--rose-xlt);
  border: 1px solid var(--rose-bg);
  padding: .2rem .7rem;
  border-radius: var(--r-full);
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: clamp(var(--s20), 8vw, var(--s32)) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.servicos__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,144,122,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(155,123,139,.04) 0%, transparent 50%);
  pointer-events: none;
}

.srv__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--sand);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--sand);
}

.srv__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s8);
  align-items: start;
  padding: clamp(var(--s8), 3vw, var(--s12)) clamp(var(--s8), 3vw, var(--s12));
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  transition: background var(--tr);
  position: relative;
}
.srv__item:last-child { border-bottom: none; }
.srv__item:hover { background: var(--rose-xlt); }

.srv__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
  padding-top: var(--s2);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.srv__content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s3);
  line-height: 1.2;
}
.srv__content p {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: var(--s5);
  max-width: 60ch;
}
.srv__content ul {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.srv__content ul li {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-lt);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.srv__content ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rose-lt);
  border-radius: 50%;
  flex-shrink: 0;
}

.srv__icon {
  color: var(--sand);
  flex-shrink: 0;
  padding-top: var(--s2);
}

/* ===== CTA MID ===== */
.cta-mid {
  padding: clamp(var(--s20), 8vw, var(--s24)) 0;
  background: var(--rose-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-mid__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-mid__shape--1 {
  width: 400px; height: 400px;
  background: rgba(196,144,122,.1);
  top: -150px; left: -100px;
}
.cta-mid__shape--2 {
  width: 300px; height: 300px;
  background: rgba(155,123,139,.08);
  bottom: -100px; right: -60px;
}

.cta-mid__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.cta-mid__icon {
  width: 72px; height: 72px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s6);
  box-shadow: var(--sh-rose);
}

.cta-mid h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: var(--s5);
}
.cta-mid h2 em { font-style: italic; color: var(--rose); font-weight: 400; }

.cta-mid p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-md);
  max-width: 52ch;
  margin: 0 auto var(--s8);
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: clamp(var(--s20), 8vw, var(--s32)) 0;
  background: var(--white);
}

.dif__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.dif__item {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  position: relative;
  transition: all var(--tr);
  border: 1.5px solid transparent;
}
.dif__item:hover {
  background: var(--white);
  border-color: var(--rose-lt);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.dif__line {
  position: absolute;
  top: var(--s8);
  left: 0;
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), var(--mauve));
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  opacity: 0;
  transition: opacity var(--tr);
}
.dif__item:hover .dif__line { opacity: 1; }

.dif__icon {
  width: 52px; height: 52px;
  background: var(--rose-bg);
  color: var(--rose);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  transition: background var(--tr);
}
.dif__item:hover .dif__icon { background: var(--rose); color: var(--white); }

.dif__item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s3);
}
.dif__item p {
  font-size: .875rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.72;
}

/* ===== ABORDAGEM ===== */
.abordagem {
  padding: clamp(var(--s20), 8vw, var(--s32)) 0;
  background: linear-gradient(160deg, var(--cream-dk) 0%, var(--cream) 100%);
}
.abordagem__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(var(--s12), 7vw, var(--s24));
  align-items: center;
}

.abordagem__visual { position: relative; }
.abordagem__photo-wrap { position: relative; }
.abordagem__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: 0 var(--r-xl) var(--r-xl) var(--r-xl);
  display: block;
  background: var(--rose-bg);
  box-shadow: var(--sh-lg);
}
.abordagem__photo-bg {
  position: absolute;
  top: -16px; left: -16px;
  width: 60%; height: 60%;
  background: var(--rose-bg);
  border-radius: var(--r-xl) 0 0 0;
  z-index: -1;
}

.abordagem__approach-tags {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s5);
}
.approach-tag {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
  text-align: center;
  box-shadow: var(--sh-sm);
}
.approach-tag strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: var(--s1);
}
.approach-tag span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-lt);
  line-height: 1.3;
}

.abordagem__intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: var(--s8);
}

.abordagem__steps { display: flex; flex-direction: column; gap: var(--s6); }

.step {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
}
.step__marker {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-bg);
  border: 1.5px solid var(--rose-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: .02em;
  margin-top: 2px;
  transition: all var(--tr);
}
.step:hover .step__marker {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.step__body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s2);
}
.step__body p {
  font-size: .875rem;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.72;
}

/* ===== CONTATO ===== */
.contato {
  padding: clamp(var(--s20), 8vw, var(--s32)) 0;
  background: var(--cream);
  position: relative;
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s12), 7vw, var(--s24));
  align-items: start;
}

.contato__info p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-md);
  margin-bottom: var(--s8);
  max-width: 44ch;
}

.contato__canais { display: flex; flex-direction: column; gap: var(--s3); }

.canal {
  display: flex;
  align-items: center;
  gap: var(--s4);
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
  transition: all var(--tr);
}
.canal:hover {
  border-color: var(--rose-lt);
  box-shadow: var(--sh-sm);
  transform: translateX(4px);
}

.canal__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.canal__icon--wa    { background: rgba(37,211,102,.12);  color: #16a34a; }
.canal__icon--email { background: var(--rose-xlt);        color: var(--rose); }
.canal__icon--ig    { background: rgba(225,48,108,.1);   color: #db2777; }

.canal__text { flex: 1; }

.canal__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 1px;
}
.canal__value {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

.canal__arrow {
  color: var(--rose-lt);
  flex-shrink: 0;
  transition: color var(--tr), transform var(--tr);
}
.canal:hover .canal__arrow {
  color: var(--rose);
  transform: translateX(3px);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(var(--s8), 4vw, var(--s12));
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--sand);
}
.form-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s2);
}
.form-card__sub {
  font-size: .85rem;
  color: var(--text-lt);
  margin-bottom: var(--s8);
}

.form { display: flex; flex-direction: column; gap: var(--s5); }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.form__row:first-child,
.form__row:last-of-type { grid-template-columns: 1fr; }

.form__group { display: flex; flex-direction: column; gap: var(--s2); }

.form__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.form__label span { color: var(--rose); }

.form__input {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-md);
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
  line-height: 1.5;
}
.form__input::placeholder { color: var(--text-lt); }
.form__input:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196,144,122,.15);
}
.form__input.error { border-color: #e06060; }
.form__textarea { resize: vertical; min-height: 110px; }

.form__error {
  font-size: .75rem;
  color: #c04040;
  font-weight: 600;
  min-height: 1rem;
}

.form .btn--primary { margin-top: var(--s2); }
#submitBtn.loading { opacity: .7; pointer-events: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  position: relative;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(var(--s8), 4vw, var(--s16));
  padding: clamp(var(--s16), 5vw, var(--s24)) 0;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.footer__logo-mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--rose-lt);
  user-select: none;
}
.footer__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.footer__cred {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.footer__brand p {
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 34ch;
  margin-bottom: var(--s6);
}

.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--s5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer__col ul a {
  font-size: .875rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: var(--s5) 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer__bottom a {
  color: rgba(255,255,255,.55);
  transition: color var(--tr);
}
.footer__bottom a:hover { color: var(--white); }

/* ===== WhatsApp FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 99;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--tr), box-shadow var(--tr);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* ===== ANIMAÇÕES SCROLL ===== */
/* Animação ativada apenas quando JS carrega (.js-ready no body) */
.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .65s cubic-bezier(.4,0,.2,1),
    transform .65s cubic-bezier(.4,0,.2,1);
}
.js-ready [data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: .1s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="400"] { transition-delay: .4s; }
[data-delay="550"] { transition-delay: .55s; }

/* ===== RESPONSIVO ===== */

/* Tablet largo */
@media (max-width: 1100px) {
  .pq__grid { grid-template-columns: repeat(2, 1fr); }
  .dif__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Tablet */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { order: -1; max-width: 380px; margin-inline: auto; width: 100%; }

  .sobre__inner,
  .abordagem__inner { grid-template-columns: 1fr; }
  .sobre__photo-col { display: flex; flex-direction: column; align-items: center; }
  .sobre__photo { margin-inline: auto; }

  .srv__item { grid-template-columns: 60px 1fr; }
  .srv__icon { display: none; }

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

  .abordagem__visual { max-width: 420px; margin-inline: auto; width: 100%; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --hh: 66px; }

  /* Nav mobile — full screen */
  .nav {
    height: 100dvh;
    pointer-events: none;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: var(--s8);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 200;
    padding: var(--s16) var(--pad) var(--s12);
  }
  .nav.open { transform: translateX(0); pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: center; gap: var(--s8); }
  .nav__link { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
  .btn--header { display: none; }
  .hamburger { display: flex; }

  /* Botão fechar nav */
  .nav__close {
    position: absolute;
    top: var(--s5);
    right: var(--s5);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background var(--tr);
  }
  .nav__close:hover { background: var(--rose-bg); color: var(--rose); }

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

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

  .srv__item {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }
  .srv__num { font-size: 1.8rem; }

  .form__row { grid-template-columns: 1fr; }
  .footer__inner {
    grid-template-columns: 1fr;
    padding-inline: var(--s8);
  }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__bottom .container { padding-inline: var(--s8); }

  .hero__scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .approach-tag { padding: var(--s3) var(--s4); }

  .form-card { padding: var(--s6); }
  .wa-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
