/* =============================================
   JENNIFER CUNHA — Landing Page
   Consultora de Imagem, Estilo e Coloração
   ============================================= */

/* === VARIÁVEIS === */
:root {
  /* Paleta de marca */
  --taupe-dark:   #857B76;
  --taupe:        #9E9490;
  --greige:       #C4BAB2;
  --cream:        #F2EDE8;
  --cream-dark:   #E8E1DA;
  --ivory:        #FAFAF8;

  /* Texto */
  --text-dark:    #2C2926;
  --text-mid:     #6B6360;
  --text-light:   #9E9895;

  /* Tipografia */
  --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nav-h:        80px;
  --max-w:        1300px;
  --pad-x:        clamp(24px, 5vw, 80px);
  --section-pad:  clamp(80px, 10vw, 140px);

  /* Movimento */
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --t:            0.4s var(--ease);
  --t-slow:       0.7s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.65;
}

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

/* === CONTAINER === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === TIPOGRAFIA === */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.8rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }

em { font-style: italic; }

p {
  font-size: clamp(0.94rem, 1.4vw, 1.05rem);
  line-height: 1.78;
  color: var(--text-mid);
}

strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* === LABELS === */
.section-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 18px;
}

.section-label-light { color: var(--greige); }

.section-title { margin-bottom: 28px; }

.section-sub {
  max-width: 520px;
  margin-bottom: 0;
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-light {
  background: var(--cream);
  color: var(--text-dark);
  border-color: var(--cream);
}
.btn-light:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 237, 232, 0.38);
}
.btn-ghost-light:hover {
  background: rgba(242, 237, 232, 0.1);
  border-color: rgba(242, 237, 232, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--greige);
}
.btn-outline:hover {
  background: var(--taupe-dark);
  color: var(--cream);
  border-color: var(--taupe-dark);
}

.btn-dark {
  background: var(--taupe-dark);
  color: var(--cream);
  border-color: var(--taupe-dark);
}
.btn-dark:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  padding: 15px 34px;
  font-size: 0.78rem;
}
.btn-whatsapp:hover {
  background: #1fba58;
  border-color: #1fba58;
}

.btn-email {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 237, 232, 0.35);
  padding: 15px 34px;
  font-size: 0.78rem;
}
.btn-email:hover {
  background: rgba(242, 237, 232, 0.1);
  border-color: rgba(242, 237, 232, 0.65);
}

.btn-sm { padding: 9px 20px; font-size: 0.68rem; }

/* === ANIMAÇÕES DE SCROLL === */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal        { transform: translateY(36px); }
.reveal-left   { transform: translateX(-36px); }
.reveal-right  { transform: translateX(36px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* === NAVEGAÇÃO === */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* === LOGO NO NAV === */
.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  height: var(--nav-h);   /* nunca ultrapassa a altura do nav */
  overflow: hidden;
  text-decoration: none;
}

/* Estado escuro (hero): nome em texto branco elegante */
.logo-name-dark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #fff;
  white-space: nowrap;
  opacity: 1;
  transition: opacity var(--t);
  /* alinha verticalmente no centro do nav */
  display: flex;
  align-items: center;
  height: 100%;
}

/* Estado claro (scrollado): imagem logo_01 com multiply */
.logo-img-light {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 64px;    /* cabe dentro dos 80px do nav com folga */
  width: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

/* Transição ao rolar */
#nav.scrolled .logo-name-dark  { opacity: 0; }
#nav.scrolled .logo-img-light  { opacity: 1; }

/* Links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(20, 10, 5, 0.45);
  transition: color var(--t), text-shadow var(--t);
}

.nav-link:hover { color: var(--greige); }

#nav.scrolled .nav-link {
  color: var(--text-mid);
  text-shadow: none;
}

#nav.scrolled .nav-link:hover { color: var(--text-dark); }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  text-shadow: 0 1px 4px rgba(20, 10, 5, 0.35);
  transition: var(--t);
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

#nav.scrolled .nav-cta {
  border-color: var(--greige);
  color: var(--text-dark);
  text-shadow: none;
}

#nav.scrolled .nav-cta:hover {
  background: var(--taupe-dark);
  color: var(--cream);
  border-color: var(--taupe-dark);
}

#nav.scrolled {
  background: rgba(250, 250, 248, 0.96);
  box-shadow: 0 1px 0 rgba(44, 41, 38, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t);
}

#nav.scrolled .hamburger span { background: var(--text-dark); }

.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); }

/* Menu mobile */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--ivory);
  transition: max-height 0.4s var(--ease-out);
  border-top: 1px solid transparent;
}

.mobile-menu.open {
  max-height: 360px;
  border-top-color: rgba(44, 41, 38, 0.07);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad-x) 32px;
  gap: 0;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(44, 41, 38, 0.06);
  transition: color var(--t);
}

.mobile-menu a:hover { color: var(--text-dark); }
.mobile-menu li:last-child a { border-bottom: none; }

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--taupe-dark);
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 64px) var(--pad-x) 80px;
  max-width: 660px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--greige);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.9s 0.25s var(--ease-out) forwards;
}

.eyebrow-sep { opacity: 0.45; }

.hero-title {
  color: var(--cream);
  margin-bottom: 26px;
  opacity: 0;
  animation: fade-up 0.9s 0.45s var(--ease-out) forwards;
}

.hero-title em { color: var(--greige); }

.hero-sub {
  color: rgba(242, 237, 232, 0.62);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.9s 0.65s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 0.85s var(--ease-out) forwards;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  animation: img-settle 1.4s 0.1s var(--ease-out) forwards;
}

@keyframes img-settle {
  to { transform: scale(1); }
}

.hero-badge {
  position: absolute;
  bottom: 36px;
  left: 32px;
  background: rgba(30, 27, 25, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  border: 1px solid rgba(242, 237, 232, 0.14);
  opacity: 0;
  animation: fade-up 0.9s 1.1s var(--ease-out) forwards;
}

.hero-badge span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
}

.badge-sep {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--greige);
  line-height: 1.2;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === FILOSOFIA === */
.philosophy {
  background: var(--cream);
  padding: clamp(64px, 8vw, 96px) var(--pad-x);
}

.philosophy-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.philosophy-line {
  flex: 1;
  height: 1px;
  background: var(--greige);
  opacity: 0.45;
  min-width: 0;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  text-align: center;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  flex: 0 1 620px;
  quotes: none;
}

.philosophy-cite {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 16px;
  font-family: var(--font-sans);
  font-weight: 300;
}

/* === SEÇÕES === */
.section {
  padding: var(--section-pad) 0;
}

/* === SOBRE A CONSULTORIA === */
.section-consultoria { background: var(--ivory); }

.consultoria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.consultoria-text .text-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

/* Visuals stack */
.visuals-stack {
  position: relative;
  height: clamp(440px, 50vw, 600px);
}

.visual-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  height: 84%;
  overflow: hidden;
}

.visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.visual-main:hover img { transform: scale(1.04); }

.visual-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46%;
  height: 54%;
  overflow: hidden;
  border: 5px solid var(--ivory);
  box-shadow: 0 8px 32px rgba(44, 41, 38, 0.14);
}

.visual-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* === SOBRE MIM === */
.section-sobre { background: var(--cream); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.sobre-image-frame {
  height: clamp(480px, 55vw, 660px);
  overflow: hidden;
  position: relative;
}

.sobre-image-frame::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 56%;
  height: 56%;
  border: 1px solid var(--greige);
  z-index: 0;
  pointer-events: none;
}

.sobre-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sobre-role {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 32px;
  font-weight: 400;
}

.sobre-text p { margin-bottom: 18px; }
.sobre-text p:last-of-type { margin-bottom: 0; }

.sobre-links { margin-top: 36px; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  border-bottom: 1px solid var(--greige);
  padding-bottom: 3px;
  transition: color var(--t), border-color var(--t);
}

.social-link:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* === MARCA INTERSTITIAL === */
.brand-interstitial {
  background: var(--cream);
  padding: clamp(56px, 8vw, 96px) var(--pad-x);
  overflow: hidden;
  position: relative;
}

/* Detalhe decorativo de fundo */
.brand-interstitial::before,
.brand-interstitial::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(133, 123, 118, 0.07);
  pointer-events: none;
}
.brand-interstitial::before {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
}
.brand-interstitial::after {
  width: 320px; height: 320px;
  bottom: -120px; right: -60px;
}

.brand-interstitial-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-rule {
  flex: 1;
  height: 1px;
  background: var(--greige);
  min-width: 0;
  opacity: 0.5;
}

.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* logo_01 (fundo creme) coincide com o fundo creme desta seção */
.brand-logo-img {
  height: clamp(90px, 14vw, 160px);
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  font-family: var(--font-sans);
  font-weight: 300;
  margin: 0;
}

/* === SERVIÇOS === */
.section-servicos { background: var(--ivory); }

.section-header {
  text-align: center;
  margin-bottom: 68px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* Pacote destaque */
.service-featured {
  background: var(--taupe-dark);
  padding: clamp(36px, 5vw, 60px);
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}

.service-featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(242, 237, 232, 0.04) 100%);
  pointer-events: none;
}

.service-featured-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--greige);
  border: 1px solid rgba(196, 186, 178, 0.36);
  padding: 6px 16px;
  margin-bottom: 28px;
}

.service-featured-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.service-featured-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: rgba(196, 186, 178, 0.18);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  user-select: none;
}

.service-featured-body h3 {
  color: var(--cream);
  margin-bottom: 16px;
}

.service-featured-body p {
  color: rgba(242, 237, 232, 0.62);
  max-width: 560px;
  margin-bottom: 12px;
}

.service-featured-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px !important;
  opacity: 0.85;
}

.service-featured-detail {
  font-size: 0.78rem !important;
  color: rgba(196, 186, 178, 0.52) !important;
  letter-spacing: 0.04em;
  margin-bottom: 20px !important;
}

.service-featured-body .btn {
  margin-top: 4px;
}

.service-featured-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.price-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--greige);
}

.price-value {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Acordeão */
.services-accordion {
  border-top: 1px solid rgba(44, 41, 38, 0.08);
  margin-bottom: 64px;
}

.accordion-item {
  border-bottom: 1px solid rgba(44, 41, 38, 0.08);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  transition: opacity var(--t);
}

.accordion-trigger:hover { opacity: 0.65; }

.acc-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--greige);
  font-weight: 300;
  width: 26px;
  flex-shrink: 0;
  user-select: none;
}

.acc-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.acc-arrow {
  color: var(--greige);
  transition: transform var(--t);
  flex-shrink: 0;
  display: flex;
}

.accordion-trigger[aria-expanded="true"] .acc-arrow {
  transform: rotate(180deg);
}

/* Corpo do acordeão — grid trick para animação suave */
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s var(--ease-out);
  overflow: hidden;
}

.accordion-body.open {
  grid-template-rows: 1fr;
}

.accordion-body-inner {
  overflow: hidden;
}

/* Layout interno: imagem + texto lado a lado */
.acc-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding: 4px 0 32px clamp(40px, 5vw, 46px);
  align-items: start;
}

.acc-service-img {
  width: 200px;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.acc-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}

.accordion-item:hover .acc-service-img img {
  transform: scale(1.04);
}

.acc-text p { margin-bottom: 14px; }
.acc-text p:last-of-type { margin-bottom: 0; }

.acc-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(44, 41, 38, 0.06);
  flex-wrap: wrap;
}

.acc-detail {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

.acc-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-left: auto;
}

.acc-cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  border-bottom: 1px solid var(--greige);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}

.acc-cta:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.services-footer {
  text-align: center;
}

.services-footer p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--text-mid);
}

/* === CONTATO === */
.section-contato {
  background: var(--taupe-dark);
  position: relative;
  overflow: hidden;
}

.section-contato::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(196, 186, 178, 0.07);
  pointer-events: none;
}

.contato-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* logo-hero.png tem fundo taupe coincidente com o fundo desta seção */
.contato-brand {
  margin-bottom: 40px;
}

.contato-brand-img {
  height: clamp(100px, 14vw, 160px);
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.contato-title { color: var(--cream); }

.contato-sub {
  color: rgba(242, 237, 232, 0.62);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-bottom: 48px;
}

.contato-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-info {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 186, 178, 0.5);
}

/* === FOOTER === */
.footer {
  background: var(--text-dark);
  padding: 72px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 250, 248, 0.07);
  margin-bottom: 36px;
}

/* Selo da logo no footer — caixa creme para a imagem ser visível sobre o fundo escuro */
.footer-logo-seal {
  width: 76px;
  height: 76px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(158, 152, 149, 0.38);
  margin-top: 4px;
}

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

.footer-nav a {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--t);
}

.footer-nav a:hover { color: var(--cream); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-social,
.footer-email,
.footer-phone {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}

.footer-social:hover,
.footer-email:hover,
.footer-phone:hover {
  color: var(--cream);
}

.footer-copy {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(158, 152, 149, 0.35);
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
  z-index: 90;
  transition: transform var(--t), box-shadow var(--t);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.52);
}

/* === RESPONSIVO === */
@media (max-width: 1080px) {
  .consultoria-grid,
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .consultoria-visuals { order: -1; }

  .visuals-stack { height: 380px; }

  .sobre-image { order: -1; }

  .sobre-image-frame { height: 460px; }

  .service-featured-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: calc(var(--nav-h) + 48px) var(--pad-x) 48px;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-image-wrap {
    height: 72vw;
    min-height: 300px;
  }

  .hero-badge {
    bottom: 18px;
    left: 18px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .philosophy-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .philosophy-line { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-contact {
    grid-column: auto;
    align-items: flex-start;
  }

  .section-header { margin-bottom: 48px; }

  /* Interstitial: esconde linhas laterais, centraliza */
  .brand-interstitial-inner {
    flex-direction: column;
    gap: 20px;
  }
  .brand-rule { display: none; }

  /* Acordeão: empilha imagem acima do texto no mobile */
  .acc-layout {
    grid-template-columns: 1fr;
    padding-left: clamp(20px, 4vw, 32px);
  }

  .acc-service-img {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contato-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .acc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .acc-price { margin-left: 0; }
}

/* Acessibilidade: foco visível */
:focus-visible {
  outline: 2px solid var(--taupe);
  outline-offset: 3px;
}

/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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