/* ============================================================================
   Café com Julie — Design System
   Paleta derivada do segmento (padaria artesanal / fermentação natural):
   creme (farinha) · terracota (casca) · trigo (dourado) · levain (verde) · marrom
   Tom: acolhedor + autoritativo.
   ========================================================================== */

:root {
  /* Cores */
  --cream:    #FBF6EE;   /* fundo principal — farinha/miolo */
  --cream-2:  #F2E9D9;   /* seções alternadas */
  --paper:    #FFFFFF;   /* cards */
  --crust:    #9F4220;   /* acento primário — casca/crosta de pão */
  --crust-2:  #7C2F13;   /* hover / pressionado */
  --wheat:    #D8A23C;   /* acento secundário — trigo dourado */
  --levain:   #6E7A52;   /* verde fermentação natural (uso pontual) */
  --bark:     #281F18;   /* seções escuras / rodapé / hero */
  --bark-2:   #3a2c20;
  --ink:      #2C231B;   /* títulos */
  --text:     #4A3D32;   /* corpo */
  --muted:    #6E6053;   /* meta / legendas — contraste AA sobre creme (~5.6:1) */
  --line:     #E7DBC7;   /* bordas */
  --line-2:   #d8c9b0;

  /* Tipografia */
  --font-display: "Vollkorn", Georgia, "Times New Roman", serif;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Medidas */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(40, 31, 24, .07);
  --shadow:    0 10px 30px rgba(40, 31, 24, .12);
  --shadow-lg: 0 20px 50px rgba(40, 31, 24, .18);
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--crust); text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Tipografia ---- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--crust);
  margin-bottom: .6rem;
}
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(48px, 8vw, 92px) 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--bark); color: #efe6d8; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head.center { margin-inline: auto; }
.section__lead { font-size: 1.1rem; color: var(--muted); margin-top: .4rem; }

/* ---- Botões ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 14px 26px; min-height: 48px;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  text-align: center;
}
.btn--primary { background: var(--crust); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--crust-2); transform: scale(1.02); box-shadow: var(--shadow); }
.btn--secondary { border: 2px solid currentColor; color: var(--crust); background: transparent; }
.btn--secondary:hover { background: var(--crust); color: #fff; border-color: var(--crust); }
.btn--ghost-light { border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--bark); border-color: #fff; }
.btn--sm { padding: 9px 16px; min-height: 40px; font-size: .92rem; }
.btn--lg { padding: 17px 34px; min-height: 56px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(251, 246, 238, .96); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.header__inner { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.brand__mark { font-size: 1.4rem; }
.brand--light, .brand--light .brand__name { color: #fff; }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 26px; }
.nav__link { color: var(--ink); font-weight: 600; position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--crust); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--crust); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.header__cta { flex-shrink: 0; }
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--crust); color: #fff;
  padding: 10px 16px; border-radius: 8px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Hamburguer */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; }
.nav-toggle span { display: block; height: 2.5px; width: 24px; margin-inline: auto; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }

/* Drawer mobile */
.drawer-overlay { position: fixed; inset: 0; background: rgba(40,31,24,.5); z-index: 110; opacity: 0; transition: opacity .3s; }
.drawer-overlay.is-visible { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(82%, 340px);
  background: var(--cream); z-index: 120; padding: 80px 28px 28px;
  transform: translateX(100%); transition: transform .3s var(--ease); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close { position: absolute; top: 16px; right: 18px; font-size: 2rem; line-height: 1; color: var(--ink); width: 44px; height: 44px; }
.drawer__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.drawer__list a { display: block; padding: 12px 4px; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.drawer__list a.is-active { color: var(--crust); }

/* ---- HERO (home) — foto full-bleed + Ken Burns + overlay ---- */
.hero {
  position: relative; overflow: hidden; color: #f6eee1;
  min-height: clamp(560px, 90vh, 840px); display: flex; align-items: center;
  background: #1c140e;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(98deg, rgba(24,16,10,.94) 0%, rgba(24,16,10,.78) 36%, rgba(36,24,15,.42) 68%, rgba(36,24,15,.22) 100%),
    radial-gradient(120% 80% at 80% 110%, rgba(159,66,32,.35), transparent 60%);
}
.hero__overlay::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.4px);
  background-size: 24px 24px; opacity: .6;
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(96px, 16vh, 150px) clamp(48px, 8vh, 80px); }
.hero__content { max-width: 660px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  padding: 8px 16px; border-radius: 999px; font-size: .85rem; font-weight: 700; color: #fff;
  backdrop-filter: blur(4px);
}
.hero__badge .icon { width: 1.05em; height: 1.05em; color: var(--wheat); }
.hero__title { color: #fff; max-width: 17ch; margin-top: 1.1rem; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__sub { font-size: 1.2rem; color: #ede2d0; max-width: 50ch; margin-top: 1.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1.5%); }
}
/* entrada animada do conteúdo do hero */
.hero__content > * { opacity: 0; transform: translateY(22px); animation: heroIn .9s var(--ease) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .10s; }
.hero__content > *:nth-child(2) { animation-delay: .22s; }
.hero__content > *:nth-child(3) { animation-delay: .34s; }
.hero__content > *:nth-child(4) { animation-delay: .46s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---- Page hero (internas) ---- */
.page-hero {
  background: linear-gradient(135deg, #2c2017, var(--crust-2));
  color: #f4ebdd; padding: calc(var(--header-h) + 46px) 0 50px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.4px); background-size: 22px 22px; opacity: .5;
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: #e9ddca; max-width: 56ch; margin: .8rem auto 0; position: relative; }

/* ---- Breadcrumb ---- */
.breadcrumb { background: var(--cream-2); border-bottom: 1px solid var(--line); }
.breadcrumb__inner { padding: 12px 20px; font-size: .88rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--crust); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ---- Barra de credenciais ---- */
.creds { background: var(--bark); color: #efe6d8; }
.creds__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 36px 0; text-align: center; }
.cred__icon { font-size: 1.7rem; }
.cred__num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--wheat); line-height: 1.1; margin-top: 4px; }
.cred__label { font-size: .92rem; color: #cdbfac; }

/* ---- About split ---- */
.about-split { display: grid; gap: 36px; align-items: center; }
.about-split__media, .media-ph {
  border-radius: var(--radius); background: linear-gradient(135deg, var(--cream-2), #e7d6bb);
  aspect-ratio: 4/3; display: grid; place-items: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); color: var(--crust);
}
.media-ph span { font-size: 4rem; }
.media-ph small { color: var(--muted); font-size: .72rem; margin-top: 6px; }

/* ---- Cards (serviços / diferenciais) ---- */
.cards { display: grid; grid-template-columns: 1fr; gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 2rem; margin-bottom: 12px; }
.card__title { margin-bottom: 8px; }
.card__text { color: var(--muted); flex: 1; }
.card .link-arrow { margin-top: 16px; }
.link-arrow { font-weight: 700; color: var(--crust); display: inline-flex; gap: 4px; align-items: center; }
.link-arrow:hover { color: var(--crust-2); }

/* Diferenciais */
.feats { display: grid; grid-template-columns: 1fr; gap: 22px; }
.feat { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feat__icon { font-size: 1.7rem; background: var(--cream-2); width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.feat h3 { margin-bottom: 6px; }
.feat p { color: var(--muted); }

/* ---- Depoimentos ---- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 22px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--wheat); letter-spacing: 2px; margin-bottom: 10px; }
.quote__text { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; color: var(--ink); margin-bottom: 14px; }
.quote__author { font-weight: 700; color: var(--crust); }
.quote__author small { display: block; font-weight: 400; color: var(--muted); }

/* ---- Logo bar clientes ---- */
.logos { overflow: hidden; }
.logos__track { display: flex; gap: 28px; width: max-content; animation: marquee 28s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logo-ph {
  flex-shrink: 0; width: 160px; height: 70px; border: 1px dashed var(--line-2); border-radius: 10px;
  display: grid; place-items: center; color: var(--muted); font-weight: 700; filter: grayscale(1); opacity: .7; font-size: .9rem; background: var(--paper);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(120deg, var(--crust), var(--crust-2)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe9dc; max-width: 52ch; margin: .6rem auto 1.6rem; font-size: 1.1rem; }

/* ---- Blog / Post cards ---- */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16/10; background: linear-gradient(135deg, #e7d6bb, var(--cream-2)); display: grid; place-items: center; }
.post-card__emoji { font-size: 3rem; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 1.2rem; margin: 10px 0 8px; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--crust); }
.post-card__excerpt { color: var(--muted); flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--muted); margin: 12px 0; }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 999px; }
.badge--cat { background: var(--cream-2); color: var(--crust); border: 1px solid var(--line); align-self: flex-start; }

/* Filtros */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { border: 1px solid var(--line-2); padding: 8px 18px; border-radius: 999px; font-weight: 600; color: var(--text); background: var(--paper); transition: .18s var(--ease); }
.chip:hover { border-color: var(--crust); color: var(--crust); }
.chip.is-active { background: var(--crust); color: #fff; border-color: var(--crust); }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--paper); overflow: hidden; }
.faq__question { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.faq__icon { transition: transform .25s var(--ease); color: var(--crust); flex-shrink: 0; font-size: 1.4rem; }
.faq__item.is-open .faq__icon { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__answer-inner { padding: 0 22px 20px; color: var(--text); }
.faq__item.is-open .faq__answer { max-height: 320px; }

/* ---- Página de SERVIÇOS ---- */
.svc-layout { display: grid; gap: 36px; }
.svc-nav { display: none; }
.svc-nav__sticky { position: sticky; top: calc(var(--header-h) + 20px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.svc-nav__sticky h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.svc-nav__sticky a { display: block; padding: 7px 0; color: var(--text); font-weight: 600; border-bottom: 1px solid var(--line); }
.svc-nav__sticky a:last-child { border-bottom: none; }
.svc-nav__sticky a:hover { color: var(--crust); }

.svc-block { padding: 40px 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 20px); }
.svc-block:last-child { border-bottom: none; }
.svc-block__grid { display: grid; gap: 26px; align-items: start; }
.svc-block h2 { display: flex; align-items: center; gap: 12px; }
.svc-block h2 .svc-emoji { font-size: 1.6rem; }
.svc-block h3 { margin: 22px 0 8px; font-size: 1.12rem; color: var(--crust-2); }
.snippet { background: var(--cream-2); border-left: 4px solid var(--crust); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 6px 0 4px; font-size: 1.05rem; }
.svc-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ---- SOBRE ---- */
.mvv { display: grid; grid-template-columns: 1fr; gap: 22px; }
.mvv .card h3 { color: var(--crust); }
.values { display: grid; grid-template-columns: 1fr; gap: 16px; }
.value { display: flex; gap: 12px; align-items: flex-start; }
.value__icon { font-size: 1.3rem; }
.team { display: grid; grid-template-columns: 1fr; gap: 22px; }
.team-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow-sm); }
.avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--crust), var(--wheat)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin: 0 auto 16px; }
.team-card h3 { margin-bottom: 2px; }
.team-card .role { color: var(--crust); font-weight: 700; font-size: .92rem; margin-bottom: 10px; }
.numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; text-align: center; }
.number__value { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3rem); font-weight: 700; color: var(--wheat); line-height: 1; }
.number__label { color: #cdbfac; margin-top: 6px; }

/* ---- ARTIGO ---- */
.article-layout { display: grid; gap: 40px; }
.article { max-width: 760px; }
.article__title { margin: 12px 0 10px; }
.article__meta { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.article__cover { aspect-ratio: 16/8; background: linear-gradient(135deg, #e7d6bb, var(--cream-2)); border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 28px; }
.article__cover span { font-size: 4rem; }
.toc { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 30px; }
.toc__title { font-weight: 700; color: var(--ink); margin-bottom: 8px; font-family: var(--font-display); }
.toc ol { padding-left: 18px; color: var(--crust); }
.toc li { margin-bottom: 4px; }
.article__body h2 { margin: 32px 0 12px; }
.article__body h3 { margin: 22px 0 8px; color: var(--crust-2); }
.article__body p { font-size: 1.08rem; }
.article__body blockquote { border-left: 4px solid var(--wheat); padding: 8px 0 8px 20px; margin: 20px 0; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.cta-box { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin: 34px 0; text-align: center; }
.cta-box h2 { margin-bottom: 8px; font-size: 1.4rem; }
.cta-box p { color: var(--muted); margin-bottom: 18px; }
.article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag { font-size: .82rem; background: var(--cream-2); color: var(--muted); padding: 4px 12px; border-radius: 999px; border: 1px solid var(--line); }
.side-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.side-list li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.side-list li:last-child { border-bottom: none; }
.side-card--cta { background: var(--bark); color: #efe6d8; }
.side-card--cta h3 { color: #fff; }

/* ---- CONTATO ---- */
.contact-layout { display: grid; gap: 36px; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.field { position: relative; margin-bottom: 22px; }
.field label { position: absolute; left: 14px; top: 14px; color: var(--muted); pointer-events: none; transition: .16s var(--ease); background: var(--paper); padding: 0 4px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: var(--paper); min-height: 50px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--crust); box-shadow: 0 0 0 3px rgba(159,66,32,.12); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px; font-size: .76rem; color: var(--crust); font-weight: 700;
}
.field--select label { top: -9px; font-size: .76rem; color: var(--crust); font-weight: 700; }
.req { color: var(--crust); }
#form-feedback { background: #eaf2e2; border: 1px solid var(--levain); color: #3f4a2c; padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; }

.info-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-item:last-of-type { border-bottom: none; }
.info-item .ico { font-size: 1.3rem; }
.info-item h3 { font-size: 1rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: var(--text); font-size: .96rem; }
.map-ph { margin-top: 24px; aspect-ratio: 16/7; border-radius: var(--radius); background: repeating-linear-gradient(45deg, #ece1cd, #ece1cd 14px, #e7d6bb 14px, #e7d6bb 28px); display: grid; place-items: center; color: var(--crust-2); text-align: center; border: 1px solid var(--line); }

/* ---- Aviso de placeholder ---- */
.placeholder-note { background: #fff7e6; border: 1px solid var(--wheat); border-left: 5px solid var(--wheat); border-radius: var(--radius-sm); padding: 18px 22px; margin: 0 0 8px; color: #6b5618; font-size: .95rem; }
.placeholder-note strong { color: #5a4710; }
.placeholder-note ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.placeholder-note li { margin-bottom: 3px; }

/* ---- Footer ---- */
.site-footer { background: var(--bark); color: #cdbfac; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 56px 20px 36px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__tagline { color: #cdbfac; max-width: 34ch; }
.footer__social { margin-top: 12px; }
.footer__social a { color: var(--wheat); font-weight: 700; }
.footer__title { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__col ul li { margin-bottom: 9px; }
.footer__col a { color: #cdbfac; }
.footer__col a:hover { color: var(--wheat); }
.footer__contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px; display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: space-between; font-size: .85rem; color: #9c8e7d; }

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--crust); color: #fff;
  font-size: 1.3rem; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: .25s var(--ease);
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--crust-2); }

/* ---- Fade-in ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-in.is-shown { opacity: 1; transform: none; }

/* ---- Utilidades de grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 22px; }

/* ============================================================================
   RESPONSIVO
   ========================================================================== */
@media (min-width: 640px) {
  .creds__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feats { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .svc-block__grid { grid-template-columns: 3fr 2fr; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .about-split { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }
  .svc-layout { grid-template-columns: 240px 1fr; }
  .svc-nav { display: block; }
  .contact-layout { grid-template-columns: 3fr 2fr; }
  .article-layout { grid-template-columns: 1fr 320px; }
}

/* Header: troca nav por hamburguer em telas menores */
@media (max-width: 1023px) {
  .nav { display: none; }
  .header__cta .header__cta-label { display: none; }
  .header__cta { margin-left: auto; }
  .nav-toggle { display: flex; }
}

/* Movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .logos__track { animation: none; }
  .hero__bg { animation: none; transform: scale(1.08); }
  .reveal, .fade-in, .hero__content > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================================
   MELHORIAS VISUAIS — ícones SVG, fotos, micro-interações, reveal
   ========================================================================== */

/* ---- Ícones SVG ---- */
.icon { width: 1.3em; height: 1.3em; display: inline-block; vertical-align: -0.18em; flex-shrink: 0; }
.icon--xs { width: 1em; height: 1em; vertical-align: -0.12em; }
.icon--lg { width: 1.6em; height: 1.6em; }
.icon--xl { width: 2.6em; height: 2.6em; }

/* ---- Barra de progresso de scroll ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--crust), var(--wheat));
  transform: scaleX(0); transform-origin: left; will-change: transform;
}

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-shown { opacity: 1; transform: none; }

/* ---- Imagens / molduras ---- */
.img-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-2); }
.img-frame img, .about-split__media img, .svc-media img, .post-card__media img, .article__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform .8s var(--ease); }
.img-zoom:hover img { transform: scale(1.06); }

/* hover-zoom nas fotos dos cards de post (hover do card inteiro) */
.post-card__media { overflow: hidden; }
.post-card__media img { transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }

/* moldura decorativa offset (toque artesanal) */
.img-frame--deco::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.5);
  border-radius: calc(var(--radius) - 6px); pointer-events: none; mix-blend-mode: overlay;
}

/* about media vira foto real */
.about-split__media { aspect-ratio: 4/3; padding: 0; border: none; overflow: hidden; position: relative; }
.about-split__media::after {
  content: ""; position: absolute; left: -14px; bottom: -14px; width: 96px; height: 96px;
  background: var(--wheat); border-radius: 18px; z-index: -1;
}

/* ---- Chips de ícone (serviços / diferenciais / credenciais) ---- */
svg.card__icon {
  width: 56px; height: 56px; padding: 14px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--cream-2), #ecdcc2);
  color: var(--crust); border-radius: 16px; box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.card:hover svg.card__icon { transform: rotate(-6deg) scale(1.05); background: var(--crust); color: #fff; }

svg.feat__icon { width: 56px; height: 56px; padding: 15px; background: var(--cream-2); color: var(--crust); border-radius: 16px; }

svg.cred__icon { width: 34px; height: 34px; color: var(--wheat); }

svg.svc-emoji { width: 30px; height: 30px; color: var(--crust); vertical-align: -4px; }

svg.value__icon { width: 22px; height: 22px; color: var(--crust); }

/* info de contato com ícone em chip */
.info-item .ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--paper); color: var(--crust); box-shadow: var(--shadow-sm); }
.info-item .ico .icon { width: 22px; height: 22px; }

/* estrelas e aspas dos depoimentos */
.quote__stars { display: inline-flex; gap: 2px; }
.quote__stars .icon { width: 18px; height: 18px; color: var(--wheat); }
.quote { position: relative; }
.quote__qmark { position: absolute; top: 14px; right: 18px; }
.quote__qmark .icon { width: 40px; height: 40px; color: var(--line-2); }

/* link com seta que desliza no hover */
.link-arrow { gap: 6px; }
.link-arrow .icon { transition: transform .22s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* FAQ: chevron SVG */
.faq__icon { display: inline-flex; }
.faq__icon .icon { width: 22px; height: 22px; }

/* botão WhatsApp do header com ícone */
.header__cta .icon { width: 18px; height: 18px; }

/* footer com ícones */
.footer__contact .icon { width: 17px; height: 17px; color: var(--wheat); margin-top: 3px; }
.brand__mark.icon, svg.brand__mark { width: 26px; height: 26px; color: var(--crust); }
.brand--light svg.brand__mark { color: var(--wheat); }

/* Header transparente sobre o hero (topo da página): texto claro p/ legibilidade.
   Ao rolar (.is-scrolled), volta a cor escura sobre o fundo creme. */
.brand__name { white-space: nowrap; }
.brand__name--short { display: none; }
.site-header:not(.is-scrolled) .brand__name { color: #fff; }
.site-header:not(.is-scrolled) svg.brand__mark { color: var(--wheat); }
.site-header:not(.is-scrolled) .nav__link { color: rgba(255,255,255,.92); }
.site-header:not(.is-scrolled) .nav__link::after { background: #fff; }
.site-header:not(.is-scrolled) .nav__link:hover,
.site-header:not(.is-scrolled) .nav__link.is-active { color: #fff; }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
@media (max-width: 600px) {
  .brand__name--full { display: none; }
  .brand__name--short { display: inline; }
}

/* ---- Serviços: media como foto ---- */
.svc-media { aspect-ratio: 4/3; border: none; padding: 0; overflow: hidden; position: relative; box-shadow: var(--shadow); border-radius: var(--radius); }
.svc-block:nth-child(even) .svc-block__grid { direction: rtl; }
.svc-block:nth-child(even) .svc-block__grid > * { direction: ltr; }

/* ---- CTA band com textura de fundo ---- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .18; }
.cta-band .container { position: relative; z-index: 1; }

/* ---- Café da manhã do mundo (cards de cultura) ---- */
.world-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.world-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); border-top: 3px solid var(--wheat); }
.world-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
svg.world-card__icon { width: 30px; height: 30px; color: var(--crust); margin-bottom: 10px; }
.world-card h3 { margin-bottom: 6px; }
.world-card p { color: var(--muted); margin: 0; }
@media (min-width: 640px) { .world-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .world-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Botão primário com brilho no hover ---- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn--primary:hover::after { left: 130%; }

/* ---- Divisor "torn paper" entre hero e conteúdo (sutil) ---- */
.creds { position: relative; }

/* ---- Logo bar: chips mais elegantes ---- */
.logo-ph { font-style: normal; letter-spacing: .02em; }

/* ---- Responsivo: ajustes adicionais ---- */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .section__head .btn, .center .btn { width: auto; }
  .svc-cta .btn { width: 100%; }
}
@media (min-width: 481px) {
  .hero__actions .btn { width: auto; }
}

/* ---- Botão flutuante de WhatsApp ---- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  display: inline-flex; align-items: center;
  height: 56px; width: 56px; padding: 0; overflow: hidden;
  background: #25D366; color: #fff; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  white-space: nowrap; transition: width .3s var(--ease), background .2s var(--ease);
}
.wa-fab .icon { width: 28px; height: 28px; margin: 0 14px; flex-shrink: 0; }
.wa-fab__label { font-weight: 700; opacity: 0; transition: opacity .2s var(--ease); padding-right: 18px; }
.wa-fab:hover { width: 215px; background: #1ebe5b; color: #fff; }
.wa-fab:hover .wa-fab__label { opacity: 1; }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (hover: none) { .wa-fab:hover { width: 56px; } .wa-fab:hover .wa-fab__label { opacity: 0; } }

/* botão voltar-ao-topo acima do FAB */
.scroll-top { bottom: 86px; }

/* scrollspy — item ativo na navegação de serviços */
.svc-nav__sticky a.is-active { color: var(--crust); font-weight: 700; }

/* ---- Reduced motion: zera os novos efeitos ---- */
@media (prefers-reduced-motion: reduce) {
  .img-zoom:hover img { transform: none; }
  .btn--primary::after { display: none; }
  .card:hover svg.card__icon { transform: none; }
  .scroll-progress { transition: none; }
  .wa-fab::after { animation: none; }
}
