/* ============================================================
   ERIKA ESPÍNDOLA — SITE INSTITUCIONAL
   styles.css
   Paleta: bege/areia/marrom suave/nude/cinza quente
   Tipografia: Cormorant Garamond + Jost
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Nova paleta baseada na referência enviada */
  --cream:        #F7EEE7;
  --cream-dark:   #EAD9C8;
  --sand:         #C8AA8A;
  --sand-mid:     #B99470;
  --mocha:        #6F4E37;
  --mocha-dark:   #533725;
  --mocha-light:  #8A674D;
  --brown-soft:   #C8AA8A;
  --nude:         #F3E5DA;
  --warm-gray:    #7C6A5E;
  --warm-gray-lt: #D8D0CB;
  --text-dark:    #111111;
  --text-mid:     #111111;
  --text-light:   #2B2B2B;
  --white:        #ffffff;
  --overlay:      rgba(183,110,121,.06);
  --salmon-bg:    #F7EEE7;
  --white-ice:    #FAF9F8;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Espaçamentos */
  --section-v:    120px;
  --section-v-sm: 72px;
  --container:    1160px;
  --gutter:       clamp(20px, 4vw, 48px);

  /* Transições */
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --ease-out:     cubic-bezier(.16,1,.3,1);

  /* Sombras */
  --shadow-sm:    0 2px 16px rgba(183,110,121,.10);
  --shadow-md:    0 8px 40px rgba(183,110,121,.14);
  --shadow-lg:    0 20px 64px rgba(183,110,121,.16);

  /* Bordas */
  --radius-sm:    12px;
  --radius-md:    24px;
  --radius-xl:    60px;
  --radius-pill:  999px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}


html.cms-loading body {
  opacity: 0;
}

body {
  transition: opacity .18s ease;
}

body {
  font-family: var(--font-body);
  background: var(--salmon-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- UTILITY ---------------------------------------------- */
.container {
  width: min(var(--container), 100% - var(--gutter)*2);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-v);
  scroll-margin-top: 96px;
}

.section-label:empty { display: none; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--mocha);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.75;
}

/* ---- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .28s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--mocha);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(156,123,90,.3);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--mocha-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(156,123,90,.35);
}

.btn--outline {
  border: 1.5px solid var(--mocha);
  color: var(--mocha);
  background: transparent;
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--mocha);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--text-mid);
  background: transparent;
  padding-inline: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn--ghost:hover { color: var(--mocha); }

/* ---- REVEAL ANIMATIONS ------------------------------------ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- HEADER ----------------------------------------------- */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}

.header.scrolled {
  background: rgba(250,249,248,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 24px rgba(156,123,90,.10);
}

.header__inner {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .01em;
}

.logo-sub {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mocha);
}

.header__nav {
  margin-inline-start: auto;
}

.nav__list {
  display: flex;
  gap: 2px;
}

.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--text-mid);
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--mocha); background: var(--overlay); }

.header__cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: .8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px var(--gutter) 32px;
  background: rgba(250,249,248,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--sand);
}
.mobile-menu.open { display: flex; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  display: block;
  padding: 12px 4px;
  font-size: 1rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
  transition: color .2s;
}
.mobile-link:hover { color: var(--mocha); }

.mobile-cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ---- HERO ------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-block: 100px 60px;
  overflow: hidden;
}

.hero__bg-shape {
  position: absolute;
  inset-block-start: -80px;
  inset-inline-end: -120px;
  width: clamp(380px, 55vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 60% 40%, var(--nude) 0%, var(--sand) 50%, transparent 80%);
  border-radius: 44% 56% 62% 38% / 40% 50% 50% 60%;
  opacity: .6;
  pointer-events: none;
}

.hero__inner {
  width: min(var(--container), 100% - var(--gutter)*2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero__tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--mocha);
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-blob {
  position: absolute;
  inset: 12px;
  background: var(--sand);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: .7;
}

.hero__img {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 48% 52% / 56% 54% 46% 44%;
  box-shadow: var(--shadow-lg);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--mocha-light), transparent);
  margin-inline: auto;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%,100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ---- SOBRE MEU TRABALHO ---------------------------------- */
.trabalho {
  background: var(--white);
}

.trabalho__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 20px;
}

.trabalho__text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
}

.trabalho__text strong { color: var(--text-dark); }

.trabalho__modality {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.modality-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.modality-icon {
  width: 44px;
  height: 44px;
  background: var(--nude);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mocha);
  flex-shrink: 0;
}

.modality-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modality-item strong {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.modality-item span {
  font-size: .82rem;
  color: var(--text-light);
}

.trabalho__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trabalho__card {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  transition: box-shadow .3s, transform .3s;
}

.trabalho__card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.trabalho__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--mocha-dark);
  margin-bottom: 8px;
}
.trabalho__card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- ATENDIMENTOS ---------------------------------------- */
.atendimentos {
  background: var(--cream-dark);
}

.atend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.atend-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}

.atend-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--brown-soft);
}

.atend-card__icon {
  width: 52px;
  height: 52px;
  background: var(--nude);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mocha);
  margin-bottom: 18px;
  transition: background .3s;
}

.atend-card:hover .atend-card__icon {
  background: var(--mocha);
  color: var(--white);
}

.atend-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.atend-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- PSICOLOGIA JUNGUIANA -------------------------------- */
.junguiana {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.junguiana__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 15% 50%, var(--nude) 0%, transparent 70%);
  pointer-events: none;
  opacity: .5;
}

.junguiana__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  position: relative;
}

.junguiana__image {
  display: flex;
  justify-content: center;
}

.junguiana__image img {
  width: min(370px, 100%);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 50% 50% 48% 52% / 44% 46% 54% 56%;
  box-shadow: var(--shadow-md);
}

.junguiana__text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
}
.junguiana__text strong { color: var(--text-dark); }

.jung-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.jung-pillar {
  padding: 9px 20px;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--mocha-dark);
  background: var(--cream);
  transition: all .25s;
}

.jung-pillar:hover {
  background: var(--mocha);
  color: var(--white);
  border-color: var(--mocha);
}

/* ---- ESPAÇO ---------------------------------------------- */
.espaco {
  background: var(--cream-dark);
}

.espaco__gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.espaco__main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform .5s var(--ease);
}

.espaco__main img:hover { transform: scale(1.02); }

.espaco__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.espaco__side-img img {
  width: 100%;
  height: 266px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease);
}

.espaco__side-img img:hover { transform: scale(1.025); }

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

.espaco__value {
  padding-top: 20px;
}

.espaco__value-line {
  width: 36px;
  height: 2px;
  background: var(--mocha);
  border-radius: 2px;
  margin-bottom: 16px;
}

.espaco__value h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.espaco__value p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- PROCESSO / TIMELINE --------------------------------- */
.processo {
  background: var(--white);
}

.timeline {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--mocha-light), var(--sand), transparent);
}

.timeline__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.timeline__item:last-child { border-bottom: none; }

.timeline__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mocha);
  width: 56px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
  position: relative;
  z-index: 1;
  background: var(--white);
}

.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.timeline__content p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- HORÁRIOS E VALORES ---------------------------------- */
.horarios {
  background: var(--cream-dark);
}

.horarios__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.horarios__schedule {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand-mid);
  font-size: .9rem;
}
.schedule-row:last-child { border-bottom: none; }

.schedule-label {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .1em;
}

.schedule-value {
  color: var(--text-dark);
  font-weight: 400;
}

.horarios__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.valor-card {
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
}

.valor-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.valor-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.valor-divider {
  height: 1px;
  background: var(--sand);
  margin-block: 18px;
}

.valor-cta-text {
  font-size: .82rem !important;
  color: var(--mocha) !important;
  font-weight: 500;
}

.pagamento {
  padding: 20px 24px;
  background: var(--nude);
  border-radius: var(--radius-md);
}

.pagamento__label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pagamento__methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pagamento__methods span {
  padding: 6px 16px;
  background: var(--white);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 500;
  color: var(--mocha-dark);
  border: 1px solid var(--sand-mid);
}

/* ---- EXPERIÊNCIA ----------------------------------------- */
.experiencia {
  background: var(--white);
}

.experiencia__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.experiencia__image {
  position: relative;
}

.experiencia__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.experiencia__image-frame {
  position: absolute;
  inset: -12px;
  border: 1.5px solid var(--sand-mid);
  border-radius: calc(var(--radius-md) + 12px);
  z-index: 0;
}

.experiencia__text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1rem;
}
.experiencia__text strong { color: var(--text-dark); }

.exp-divider {
  width: 48px;
  height: 2px;
  background: var(--mocha);
  border-radius: 2px;
  margin-block: 28px;
}

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

.faq__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--sand-mid);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  transition: color .25s;
}
.faq__question:hover { color: var(--mocha); }
.faq__question[aria-expanded="true"] { color: var(--mocha); }

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all .3s;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 10px; }

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--mocha);
  border-color: var(--mocha);
  color: var(--white);
}
.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: rotate(90deg);
}

.faq__answer {
  padding-bottom: 22px;
}
.faq__answer p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
}

/* ---- CONTATO --------------------------------------------- */
.contato {
  background: var(--white);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contato__card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
  margin-bottom: 16px;
  transition: box-shadow .3s;
}
.contato__card:hover { box-shadow: var(--shadow-sm); }

.contato__icon {
  width: 48px;
  height: 48px;
  background: var(--nude);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mocha);
  flex-shrink: 0;
}

.contato__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contato__card p {
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.contato__link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--mocha);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Formulário */
.contato__form {
  padding: 36px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
}

.contato__form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-sub {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-gray-lt); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mocha-light);
  box-shadow: 0 0 0 3px rgba(156,123,90,.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239c7b5a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-group input.error,
.form-group select.error { border-color: #c0392b; }

.form-error {
  display: block;
  font-size: .75rem;
  color: #c0392b;
  margin-top: 4px;
  min-height: 16px;
}

.form-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-btn:disabled {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--text-light);
  text-align: center;
}

.form-status.is-error { color: #c0392b; }
.form-status.is-success { color: #587348; }

/* ---- FOOTER ---------------------------------------------- */
.footer {
  background: var(--text-dark);
  color: rgba(247,243,238,.75);
  padding-block: 64px 36px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('assets/img/espaco-consultorio.jpg') left center / 33.3% auto,
    url('assets/img/espaco-jardim.jpg') center center / 33.3% auto,
    url('assets/img/espaco-sala.jpg') right center / 33.3% auto;
  background-repeat: no-repeat;
  opacity: 0.09;
  filter: grayscale(40%);
  pointer-events: none;
  z-index: 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer__crp { font-size: .8rem; color: var(--mocha-light); margin-bottom: 6px; }
.footer__tagline { font-size: .8rem; margin-bottom: 4px; }
.footer__reach { font-size: .78rem; }

.footer__nav {
  display: flex;
  gap: 40px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: .82rem;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--mocha-light); }

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--cream);
  transition: all .25s;
}
.footer__wa:hover {
  background: var(--mocha);
  border-color: var(--mocha);
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__ethics {
  font-size: .75rem;
  color: rgba(247,243,238,.45);
  max-width: 480px;
  line-height: 1.65;
}
.footer__ethics strong { color: rgba(247,243,238,.7); }

.footer__copy {
  font-size: .72rem;
  color: rgba(247,243,238,.3);
  flex-shrink: 0;
}

.footer__credits {
  text-align: right;
  flex-shrink: 0;
}

.footer__dev {
  margin-top: 4px;
  font-size: .62rem;
  color: rgba(247,243,238,.22);
}

/* ---- CMS DYNAMIC BLOCKS ---------------------------------- */
.cms-blocks {
  background: var(--cream);
}

.cms-blocks__inner {
  display: grid;
  gap: 24px;
}

.cms-block {
  max-width: 860px;
  margin-inline: auto;
  color: var(--text-mid);
}

.cms-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.cms-block p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.cms-block img {
  width: 100%;
  border-radius: var(--radius-md);
}

.cms-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.cms-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
}

.cms-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cms-update-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px 11px 16px;
  border-radius: 999px;
  background: rgba(45, 37, 32, .94);
  color: var(--cream);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
  font-size: .82rem;
  backdrop-filter: blur(10px);
}

.cms-update-banner button {
  flex-shrink: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--text-dark);
  font-size: .78rem;
  font-weight: 500;
}

@media (min-width: 901px) and (pointer: fine) {
  .cms-update-banner { display: none; }
}

/* ---- WHATSAPP FLOAT -------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  padding: 7px 14px;
  background: var(--text-dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .25s, transform .25s;
}

.wa-float:hover .wa-float__tooltip,
.wa-float:focus-visible .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RESPONSIVE ------------------------------------------ */

/* Tablet */
@media (max-width: 900px) {
  :root { --section-v: 88px; }

  .header__nav,
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
  }
  .hero__image-wrap { order: -1; }
  .hero__img { width: min(320px, 75vw); }
  .hero__actions { justify-content: center; }
  .hero__bg-shape { inset-inline-end: -200px; opacity: .4; }

  .trabalho__grid,
  .junguiana__inner,
  .horarios__inner,
  .experiencia__inner,
  .contato__inner {
    grid-template-columns: 1fr;
  }

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

  .espaco__gallery {
    grid-template-columns: 1fr;
  }
  .espaco__side { flex-direction: row; }
  .espaco__side-img img { height: 200px; }
  .espaco__values { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .footer__credits { text-align: left; }

  .horarios__inner { gap: 40px; }
  .experiencia__inner { gap: 40px; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --section-v: 64px; }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }

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

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

  .espaco__gallery { gap: 14px; }
  .espaco__side { flex-direction: column; }
  .espaco__side-img img { height: 220px; }
  .espaco__values { grid-template-columns: 1fr 1fr; gap: 16px; }

  .timeline::before { display: none; }
  .timeline__item { gap: 20px; }
  .timeline__num { font-size: 1.2rem; width: 40px; }

  .contato__form { padding: 24px 20px; }

  .footer__nav { flex-direction: column; gap: 24px; }

  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

/* Focus accessibility */
:focus-visible {
  outline: 2px solid var(--mocha);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ajustes Espaço Erika v2 */
.cms-two-col { align-items: center; }
.cms-image-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--radius-xl); display: block; }
.cms-services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 52px; }
.cms-services-grid .service-card:last-child { grid-column: 1 / -1; }
.service-card p + p { margin-top: 16px; color: var(--text-mid); }
.cms-oficinas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.cms-diferenciais { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.cms-diferenciais li { position: relative; padding-left: 28px; color: var(--text-mid); line-height: 1.75; }
.cms-diferenciais li::before { content: ''; position: absolute; left: 0; top: .82em; width: 10px; height: 10px; border-radius: 50%; background: var(--mocha); opacity: .7; }
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; background: var(--mocha); color: #fff; padding: 14px 20px; border-radius: 999px; box-shadow: 0 14px 35px rgba(0,0,0,.18); font-size: 14px; letter-spacing: .03em; }
.wa-float:hover { background: var(--mocha-dark); transform: translateY(-2px); }
@media (max-width: 900px) { .cms-services-grid, .cms-oficinas-grid { grid-template-columns: 1fr; } .cms-services-grid .service-card:last-child { grid-column: auto; } .cms-image-card img { min-height: 320px; } }


/* Ajustes finais de legibilidade e destaque — v3 */
.atendimentos,
.junguiana,
.processo,
.horarios,
.contato {
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 168, 130, .18), transparent 34%),
    linear-gradient(180deg, #f4eee7 0%, #efe6dc 100%);
}

.atendimentos .section-title,
.junguiana .section-title,
.processo .section-title,
.horarios .section-title,
.contato .section-title,
.contato .section-sub {
  max-width: 920px;
}

.atendimentos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.atend-card,
.trabalho__card.service-card,
.horario-card,
.timeline__item,
.contato__card,
.contato__form {
  background: rgba(255, 252, 248, .88);
  border: 1px solid rgba(156, 123, 90, .24);
  box-shadow: 0 18px 48px rgba(74, 53, 36, .07);
}

.atend-card,
.trabalho__card.service-card,
.horario-card {
  min-height: 150px;
}

.atend-card h3,
.trabalho__card.service-card h3,
.horario-card h3,
.timeline__item h3,
.contato__card h3,
.contato__form h3 {
  color: var(--mocha-dark);
}

.atend-card p,
.trabalho__card.service-card p,
.horario-card p,
.timeline__item p,
.contato__card p {
  color: var(--text-mid);
}

.processo .timeline {
  gap: 16px;
  margin-top: 44px;
}

.processo .timeline::before { display: none; }

.processo .timeline__item {
  display: grid;
  grid-template-columns: 62px 220px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(156, 123, 90, .24);
}

.processo .timeline__num {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nude);
  color: var(--mocha-dark);
  padding: 0;
}

.processo .timeline__item h3 { margin: 0; }
.processo .timeline__item p { margin: 0; line-height: 1.7; }

.contato {
  background:
    radial-gradient(circle at 85% 18%, rgba(156, 123, 90, .15), transparent 34%),
    linear-gradient(180deg, #f5efe8 0%, #eadfD3 100%);
}

.contato__inner { margin-top: 42px; }

.contato__card {
  padding: 28px;
  background: rgba(255, 252, 248, .94);
}

.contato__icon {
  background: var(--mocha);
  color: var(--white);
}

.contato__link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--mocha);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(122, 92, 62, .18);
}

.contato__link:hover { background: var(--mocha-dark); }

.contato__form {
  background: rgba(250, 249, 248, .98);
  box-shadow: 0 24px 70px rgba(74, 53, 36, .10);
}

@media (max-width: 900px) {
  .atendimentos__grid,
  .processo .timeline__item {
    grid-template-columns: 1fr;
  }
  .processo .timeline__item { gap: 12px; }
}


/* Ajuste visual v4 — mais contraste, cards mais fortes e topo destacado */
.header {
  background: rgba(250, 249, 248, .97);
  border-bottom: 1px solid rgba(183, 110, 121, .12);
  box-shadow: 0 2px 20px rgba(74, 53, 36, .07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header.scrolled {
  background: rgba(250, 249, 248, .99);
  box-shadow: 0 4px 28px rgba(74, 53, 36, .10);
}
.logo-name { color: var(--text-dark); font-weight: 600; }
.logo-sub { color: var(--mocha); font-weight: 500; }
.nav__link { color: var(--text-dark); font-size: .88rem; font-weight: 500; }
.nav__link:hover { color: var(--white); background: var(--mocha); }
.header__cta.btn--outline {
  background: var(--mocha);
  color: var(--white);
  border-color: var(--mocha);
  box-shadow: 0 8px 22px rgba(122, 92, 62, .18);
}
.header__cta.btn--outline:hover { background: var(--mocha-dark); border-color: var(--mocha-dark); }

.atend-card,
.trabalho__card.service-card,
.horario-card,
.timeline__item,
.contato__card {
  background: linear-gradient(145deg, #a78360 0%, #927050 100%) !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  box-shadow: 0 20px 54px rgba(74, 53, 36, .18) !important;
}

.atend-card h3,
.trabalho__card.service-card h3,
.horario-card h3,
.timeline__item h3,
.contato__card h3 {
  color: #fffaf4 !important;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 500;
}

.atend-card p,
.trabalho__card.service-card p,
.trabalho__card.service-card p + p,
.horario-card p,
.timeline__item p,
.contato__card p {
  color: rgba(255, 250, 244, .92) !important;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.78;
}

.trabalho__card.service-card strong,
.horario-card strong,
.atend-card strong,
.timeline__item strong,
.contato__card strong {
  color: #ffffff;
  font-weight: 600;
}

.processo .timeline__num,
.contato__icon {
  background: rgba(255, 250, 244, .22) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 1rem;
  font-weight: 600;
}

.contato__link {
  background: #fffaf4 !important;
  color: var(--mocha-dark) !important;
  font-size: .95rem;
  font-weight: 600;
}
.contato__link:hover { background: #f0e3d6 !important; color: var(--mocha-dark) !important; }

.contato__form {
  background: linear-gradient(180deg, #ead8c6 0%, #dfc5aa 100%) !important;
  border-color: rgba(122, 92, 62, .24) !important;
}
.contato__form h3 { font-size: clamp(1.55rem, 2vw, 2rem); color: var(--mocha-dark); }
.contato__form .form-sub,
.contato__form label { color: #5a3f2b; font-size: .9rem; }
.contato__form input,
.contato__form select,
.contato__form textarea {
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(255, 252, 248, .98);
}

.section-title { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.section-sub { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: #3a2e2a; }

.footer__dev {
    margin-top: 10px;
    font-size: .72rem;
    color: #ffffff;
    text-shadow:
        0 0 4px rgba(255,255,255,0.25),
        0 0 10px rgba(255,255,255,0.10);
}

.footer__dev a {
    color: #ffffff;
    text-decoration: underline;
    text-shadow:
        0 0 4px rgba(255,255,255,0.25),
        0 0 10px rgba(255,255,255,0.10);
}

.footer__dev a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
  .nav__link { font-size: 1rem; }
  .atend-card p,
  .trabalho__card.service-card p,
  .horario-card p,
  .timeline__item p,
  .contato__card p { font-size: 1rem; }
}


/* Ajuste visual v5 — cards em bege claro, menores e galeria do espaço restaurada */
.trabalho__grid.cms-two-col {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
}
.cms-space-gallery {
  margin-top: 0;
}
#sobre .espaco__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, .9fr);
  gap: 18px;
}
#sobre .espaco__main img {
  min-height: 430px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 58px rgba(74, 53, 36, .12);
}
#sobre .espaco__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#sobre .espaco__side-img img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(74, 53, 36, .10);
}

.atend-card,
.trabalho__card.service-card,
.horario-card,
.timeline__item,
.contato__card {
  background: #ffffff !important;
  border: 1px solid rgba(183, 110, 121, .15) !important;
  box-shadow: 0 8px 28px rgba(74, 53, 36, .08) !important;
}
.atend-card,
.trabalho__card.service-card,
.horario-card {
  min-height: auto !important;
  padding: clamp(22px, 2.3vw, 30px) !important;
}
.atendimentos__grid,
.cms-services-grid,
.cms-oficinas-grid {
  gap: 18px !important;
}
.atendimentos__grid { margin-top: 34px !important; }
.cms-services-grid { margin-top: 36px !important; }
.cms-oficinas-grid { margin-top: 34px !important; }

.atend-card h3,
.trabalho__card.service-card h3,
.horario-card h3,
.timeline__item h3,
.contato__card h3 {
  color: #1a1a1a !important;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem) !important;
  line-height: 1.28 !important;
}
.atend-card p,
.trabalho__card.service-card p,
.trabalho__card.service-card p + p,
.horario-card p,
.timeline__item p,
.contato__card p {
  color: #3a3a3a !important;
  font-size: clamp(1rem, 1.08vw, 1.08rem) !important;
  line-height: 1.68 !important;
}
.trabalho__card.service-card strong,
.horario-card strong,
.atend-card strong,
.timeline__item strong,
.contato__card strong {
  color: #1a1a1a !important;
}
.processo .timeline { gap: 12px !important; margin-top: 32px !important; }
.processo .timeline__item {
  padding: 18px 24px !important;
  grid-template-columns: 52px 190px 1fr !important;
}
.processo .timeline__num,
.contato__icon {
  background: var(--mocha) !important;
  color: #fff !important;
  border-color: rgba(122, 92, 62, .15) !important;
}
.contato__card { padding: 22px !important; }
.contato__link {
  background: var(--mocha) !important;
  color: #fff !important;
}
.contato__link:hover { background: var(--mocha-dark) !important; color: #fff !important; }

@media (max-width: 980px) {
  .trabalho__grid.cms-two-col { grid-template-columns: 1fr; }
  #sobre .espaco__gallery { grid-template-columns: 1fr; }
  #sobre .espaco__side { flex-direction: row; }
  #sobre .espaco__main img { min-height: 320px; }
  #sobre .espaco__side-img img { height: 190px; }
  .processo .timeline__item { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  #sobre .espaco__side { flex-direction: column; }
  #sobre .espaco__side-img img { height: 210px; }
  .atend-card, .trabalho__card.service-card, .horario-card { padding: 20px !important; }
}


/* Ajuste v12 — hero com logo transparente e sem foto antiga */
.header__logo { gap: 0; }
.header__logo .logo-sub { display: none !important; }
.hero__tag { display: none !important; }
.hero__bg-shape,
.hero__image-blob {
  display: none !important;
}
.hero__logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: clamp(360px, 52vw, 620px);
  padding: 10px 0;
}

.hero__portrait-mini {
  position: absolute;
  top: clamp(-54px, -4vw, -28px);
  right: clamp(-78px, -5vw, -44px);
  z-index: 2;
  width: clamp(70px, 7vw, 104px);
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 2px solid rgba(200, 170, 138, .55);
  box-shadow: 0 18px 42px rgba(83, 55, 37, .18);
}

.hero__brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(500px, 92%);
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
@media (max-width: 900px) {
  .hero__logo-wrap { order: -1; min-height: auto; padding: 0; }
  .hero__brand-logo { width: min(350px, 80vw); }
  .hero__portrait-mini {
    top: 0;
    right: max(0px, calc(50% - 170px));
    width: clamp(70px, 18vw, 96px);
    border-radius: 14px;
  }
}


/* Ajuste v13 — paleta café com leite / brown solicitada */
:root {
  --cafe-leite: #C8AA8A;
  --brown-site: #6F4E37;
  --brown-site-dark: #533725;
  --cream: #F7EEE7;
  --cream-dark: #EAD9C8;
  --sand: #C8AA8A;
  --sand-mid: #B99470;
  --mocha: #6F4E37;
  --mocha-dark: #533725;
  --mocha-light: #8A674D;
  --brown-soft: #C8AA8A;
  --nude: #F3E5DA;
  --text-dark: #111111;
  --text-mid: #111111;
  --text-light: #2B2B2B;
  --white-glow: #FFFFF7;
}

body,
.section-title,
.section-title em,
.section-sub,
.section-label,
.nav__link,
.mobile-menu a,
.espaco__text,
.espaco__text p,
.trabalho__text,
.trabalho__text p,
.processo__text,
.processo__text p,
.legal-body,
.legal-body p,
.legal-body li {
color: #111111 !important;
}

.footer,
.footer p,
.footer span,
.footer a,
.footer__tagline,
.footer__reach,
.footer__ethics,
.footer__copy,
.footer__nav a,
.footer__dev,
.footer__dev a {
color: #ffffff !important;
text-shadow:
0 0 4px rgba(255,255,255,0.25),
0 0 10px rgba(255,255,255,0.10);
}


.header,
.header.scrolled {
  background: var(--brown-site) !important;
  box-shadow: 0 2px 22px rgba(83, 55, 37, .22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.logo-name,
.nav__link,
.header__cta,
.hamburger span {
  color: var(--white-glow) !important;
}
.hamburger span { background: var(--white-glow) !important; }
.nav__link::after { background: var(--white-glow) !important; }

.hero__title {
  color: var(--cafe-leite) !important;
}
.hero__sub,
.hero__actions .btn--ghost {
  color: #111111 !important;
}

.btn--primary,
.btn--outline,
.mobile-cta,
.form-btn,
.contato__link,
.whatsapp-float,
.header__cta.btn--outline {
  background: var(--brown-site) !important;
  border-color: var(--brown-site) !important;
  color: var(--white-glow) !important;
  box-shadow: 0 6px 24px rgba(83, 55, 37, .24) !important;
}
.btn--primary:hover,
.btn--outline:hover,
.form-btn:hover,
.contato__link:hover,
.header__cta.btn--outline:hover {
  background: var(--brown-site-dark) !important;
  border-color: var(--brown-site-dark) !important;
  color: var(--white-glow) !important;
}

.atend-card,
.trabalho__card,
.trabalho__card.service-card,
.horario-card,
.valor-card,
.timeline__item,
.contato__card,
.cms-image-card,
.espaco__main,
.espaco__side-img {
  background: #E2D0BE !important;
  border-color: rgba(83, 55, 37, .18) !important;
  box-shadow: 0 10px 32px rgba(83, 55, 37, .14) !important;
}

.atend-card h3,
.trabalho__card h3,
.trabalho__card.service-card h3,
.horario-card h3,
.valor-card h3,
.timeline__item h3,
.contato__card h3,
.atend-card p,
.trabalho__card p,
.trabalho__card.service-card p,
.trabalho__card.service-card p + p,
.horario-card p,
.valor-card p,
.timeline__item p,
.contato__card p,
.atend-card strong,
.trabalho__card strong,
.horario-card strong,
.valor-card strong,
.timeline__item strong,
.contato__card strong {
  color: #533725 !important;
  text-shadow: none !important;
}
.atend-card__icon,
.processo .timeline__num,
.contato__icon {
  background: var(--brown-site) !important;
  color: var(--white-glow) !important;
  border-color: rgba(255,255,255,.2) !important;
}

.hero__brand-logo {
  filter: none !important;
}

.hero__logo-quote {
  max-width: min(520px, 88vw);
  margin: 18px auto 0;
  color: var(--brown-site) !important;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.espaco__thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 10px;
  margin-top: 14px;
  overflow: visible;
}

.espaco__thumbs img,
.espaco-video-card {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(83, 55, 37, .16);
  box-shadow: 0 8px 22px rgba(83, 55, 37, .12);
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease, border-color .28s ease;
}

.espaco__thumbs img,
.espaco-video-card video {
  object-fit: cover;
}

.espaco-video-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #E2D0BE;
  cursor: pointer;
}

.espaco-video-card::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(83, 55, 37, .78);
  box-shadow: 0 8px 18px rgba(83, 55, 37, .22);
  opacity: .92;
  transition: opacity .24s ease, transform .24s ease;
}

.espaco-video-card::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-38%, -50%);
  border-left: 8px solid #FFFFF7;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: .95;
  transition: opacity .24s ease;
}

.espaco-video-card video {
  width: 100%;
  height: 100%;
  display: block;
}

.espaco__thumbs img:hover,
.espaco__thumbs img:focus-visible,
.espaco-video-card:hover,
.espaco-video-card:focus-visible {
  transform: translateY(-6px) scale(1.45);
  border-color: rgba(83, 55, 37, .42);
  box-shadow: 0 16px 34px rgba(83, 55, 37, .22);
  filter: saturate(1.08) contrast(1.03);
  z-index: 5;
}

.espaco-video-card:hover::before,
.espaco-video-card:hover::after,
.espaco-video-card:focus-visible::before,
.espaco-video-card:focus-visible::after {
  opacity: 0;
}

@media (max-width: 980px) {
  .espaco__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .espaco__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .espaco__thumbs img:hover,
  .espaco__thumbs img:focus-visible {
    transform: translateY(-4px) scale(1.12);
  }
}

/* Ajuste v14 - depoimentos, contato compacto e mapa */
.depoimentos {
  background:
    radial-gradient(circle at 16% 18%, rgba(196, 168, 130, .16), transparent 32%),
    linear-gradient(180deg, #f4eee7 0%, #efe6dc 100%);
}

.depoimentos .section-title,
.depoimentos .section-sub {
  max-width: 920px;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.depoimento-card {
  min-height: 100%;
  padding: clamp(20px, 2.2vw, 26px);
  background: #E2D0BE;
  border: 1px solid rgba(83, 55, 37, .18);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 32px rgba(83, 55, 37, .14);
}

.depoimento-card__initial {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brown-site);
  color: var(--white-glow);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.depoimento-card p {
  margin: 0;
  color: #533725;
  font-size: clamp(.96rem, 1vw, 1.03rem);
  line-height: 1.68;
  text-shadow: none;
}

.contato__inner {
  grid-template-columns: minmax(260px, 360px) minmax(340px, 520px) !important;
  justify-content: center;
  gap: clamp(24px, 4vw, 42px) !important;
}

.contato__info {
  width: 100%;
}

.contato__card {
  padding: 18px 20px !important;
  margin-bottom: 14px;
}

.contato__card h3 {
  font-size: clamp(1.08rem, 1.25vw, 1.22rem) !important;
}

.contato__card p {
  font-size: .96rem !important;
  line-height: 1.58 !important;
  margin-bottom: 8px;
}

.contato__form {
  width: 100%;
  max-width: 520px;
  padding: clamp(24px, 3vw, 30px) !important;
}

.contato__form .form-sub {
  margin-bottom: 20px;
}

.contato__form .form-group {
  margin-bottom: 14px;
}

.contato__location {
  display: block;
}

.contato__location p + p {
  margin-top: -2px;
}

.contato__map {
  display: block;
  width: 100%;
  height: 210px;
  margin-top: 16px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(83, 55, 37, .12);
}

@media (max-width: 1100px) {
  .depoimentos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .contato__inner {
    grid-template-columns: minmax(0, 620px) !important;
  }

  .contato__form {
    max-width: none;
  }
}

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

  .depoimento-card,
  .contato__card {
    padding: 20px !important;
  }

  .contato__map {
    height: 180px;
  }
}
