/* Identidade visual: ajuste estas variáveis para personalizar a marca. */
:root {
  --gold:#E4BD8C;
  --wine:#9B1A1E;
  --black:#000000;
  --white:#FFFFFF;
  --ink:#202020;
  --text:#535353;
  --muted:#f7f7f7;
  --line:#e5e5e5;
  --serif:'Playfair Display',Georgia,serif;
  --sans:Inter,Arial,sans-serif;
  --header-height:90px;
  --radius:12px;
  --shadow:0 12px 36px #00000008}

* {
  box-sizing:border-box}
html {
  scroll-behavior:smooth;
  scroll-padding-top:110px}
body {
  margin:0;
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  background:var(--white)}
body.menu-open {
  overflow:hidden}
a {
  color:inherit;
  text-decoration:none}
button,input,select,textarea {
  font:inherit}
button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent}
button {
  cursor:pointer}
img {
  display:block;
  max-width:100%;
  height:auto}
svg {
  width:22px;
  height:22px;
  flex-shrink:0;
  stroke-width:1.6}
h1,h2,h3,p,figure {
  margin:0}
h1,h2,h3 {
  font-family:var(--serif);
  font-weight:500;
  line-height:1.17}
h1 {
  font-size:clamp(2.5rem,3.05vw,3.45rem);
  letter-spacing:-.035em}
h2 {
  font-size:clamp(2rem,3.1vw,2.85rem);
  letter-spacing:-.035em}
h3 {
  font-size:1.5rem;
  letter-spacing:-.015em}
em {
  font-weight:400;
  color:var(--wine)}
p {
  color:var(--text);
  margin-top:20px}
p+p {
  margin-top:16px}
:focus-visible {
  outline:3px solid var(--wine);
  outline-offset:5px}
.container {
  width:min(1200px,calc(100% - 96px));
  margin-inline:auto}
.section {
  padding:100px 0}
.split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:76px;
  align-items:center}
.section-heading {
  max-width:800px;
  margin:0 auto 50px;
  text-align:center}
.section-intro {
  display:flex;
  gap:72px;
  align-items:center;
  margin-bottom:48px}
.section-intro h2 {
  flex:1}
.section-intro p {
  flex:1;
  margin:0;
  max-width:510px}
.muted {
  background:var(--muted)}
.center {
  text-align:center;
  margin-top:45px}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-height:52px;
  padding:14px 22px;
  border-radius:6px;
  border:1px solid var(--wine);
  background:var(--wine);
  color:var(--white);
  font-size:.875rem;
  font-weight:600;
  line-height:1.5;
  text-align:center;
  transition:background .2s,transform .2s}
.button:hover {
  background:#7a1417;
  transform:translateY(-2px)}
.button-light {
  background:var(--gold);
  border-color:var(--gold);
  color:var(--black)}
.button-light:hover {
  background:var(--white);
  border-color:var(--white)}
.text-link {
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:var(--wine);
  font-size:.875rem;
  font-weight:600;
  line-height:1.5;
  min-height:44px}
.text-link:hover {
  text-decoration:underline;
  text-underline-offset:5px}
.skip-link {
  position:fixed;
  top:-80px;
  left:12px;
  background:var(--white);
  padding:12px;
  z-index:200}
.skip-link:focus {
  top:12px}

/* Cabeçalho e navegação */
.header {
  height:var(--header-height);
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:30;
  background:var(--white);
  transition:box-shadow .25s,background .25s}
.header.scrolled {
  background:#ffffffed;
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 #0000000f}
.header-inner {
  width:min(1360px,calc(100% - 64px));
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px}
.brand {
  display:inline-flex;
  flex-direction:column;
  line-height:1.1;
  flex-shrink:0}
.brand-name {
  font-family:var(--serif);
  font-size:1.7rem;
  letter-spacing:-1px}
.brand-dot {
  color:var(--wine)}
.brand-sub {
  font-size:.625rem;
  letter-spacing:2px;
  margin-top:9px}
.header nav {
  display:flex;
  gap:22px;
  align-items:center}
.header nav>a:not(.button) {
  font-size:.875rem;
  white-space:nowrap;
  position:relative;
  padding-block:12px}
.header nav>a[aria-current] {
  color:var(--wine)}
.header nav>a[aria-current]:after {
  content:'';
  position:absolute;
  bottom:3px;
  left:0;
  right:0;
  height:2px;
  background:var(--gold)}
.header-cta {
  font-size:.8125rem;
  padding-inline:17px}
.menu-toggle {
  display:none}

/* Banner: texto na área livre à esquerda, fotografia à direita. */
.hero {
  position:relative;
  margin-top:var(--header-height);
  isolation:isolate;
  min-height:650px;
  display:flex;
  align-items:center;
  overflow:hidden}
.hero-image {
  position:absolute;
  inset:0;
  z-index:-1}
.hero-image img {
  height:100%;
  width:100%;
  object-fit:cover;
  object-position:center}
.hero-inner {
  padding-block:56px}
.hero-copy {
  width:51%;
  max-width:620px}
.hero-copy p {
  font-size:.9375rem;
  line-height:1.65;
  max-width:540px}
.hero-copy h1 em {
  display:block}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px 22px;
  margin-top:26px}
.hero-location {
  display:flex;
  gap:8px;
  align-items:center;
  font-size:.8125rem!important;
  margin-top:22px!important}
.hero-location svg {
  width:17px;
  height:17px}
.positioning {
  background:var(--wine);
  color:var(--white)}
.positioning-inner {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding-block:26px;
  gap:28px}
.positioning-inner>div {
  display:flex;
  gap:13px;
  align-items:center;
  font-size:.875rem}
.positioning svg {
  color:var(--gold);
  width:26px;
  height:26px}

.clarity-panel {
  border:1px solid var(--line);
  border-top:3px solid var(--gold);
  border-radius:var(--radius);
  padding:40px;
  box-shadow:var(--shadow)}
.clarity-panel h3 {
  font-size:2.5rem}
.check-list,.credentials {
  list-style:none;
  padding:0;
  margin:28px 0}
.check-list li {
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:17px 0}
.check-list svg,.credentials svg {
  color:var(--wine);
  width:18px;
  height:18px;
  margin-top:5px}
.problem-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px}
.problem {
  background:var(--white);
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  transition:transform .25s}
.problem:hover {
  transform:translateY(-4px)}
.problem svg {
  color:var(--wine);
  width:30px;
  height:30px}
.problem p {
  margin-top:18px;
  color:var(--ink)}
.section-closing {
  display:flex;
  gap:50px;
  align-items:center;
  justify-content:space-between;
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line)}
.section-closing p {
  margin:0;
  max-width:600px}
.section-closing .button {
  max-width:360px;
  flex-shrink:0}

/* Soluções: seis cards e uma faixa inteira para o livro. */
.services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px}
.service {
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  transition:transform .25s,box-shadow .25s}
.service:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow)}
.service-icon {
  margin-bottom:25px;
  color:var(--wine)}
.service-icon svg {
  width:32px;
  height:32px}
.service-body {
  display:flex;
  flex-direction:column;
  flex:1}
.service h3 {
  font-size:1.7rem}
.service p {
  margin:18px 0 24px;
  font-size:.9375rem}
.service .text-link {
  margin-top:auto;
  justify-content:space-between;
  gap:12px}
.service-feature {
  background:var(--wine);
  border-color:var(--wine);
  color:var(--white)}
.service-feature p {
  color:var(--white)}
.service-feature .text-link,.service-feature .service-icon {
  color:var(--gold)}
.service-book {
  grid-column:1/-1;
  flex-direction:row;
  align-items:center;
  gap:34px;
  background:#e4bd8c26;
  border-color:#e4bd8c70}
.service-book .service-icon {
  margin:0}
.service-book .service-icon svg {
  width:48px;
  height:48px}
.service-book .service-body {
  display:grid;
  grid-template-columns:1fr auto;
  column-gap:35px;
  align-items:center}
.service-book h3 {
  grid-column:1}
.service-book p {
  margin-bottom:0;
  grid-column:1;
  max-width:800px}
.service-book .text-link {
  grid-column:2;
  grid-row:1/3;
  margin:0}

.about {
  background:var(--muted)}
.portrait {
  position:relative;
  align-self:center}
.portrait img {
  width:100%;
  border-radius:var(--radius)}
.portrait figcaption {
  background:var(--white);
  box-shadow:var(--shadow);
  padding:20px 28px;
  margin:-34px 22px 0;
  position:relative;
  border-left:3px solid var(--gold);
  font-family:var(--serif);
  font-size:1.65rem;
  border-radius:4px}
.portrait figcaption span {
  display:block;
  font-family:var(--sans);
  font-size:.8125rem;
  color:var(--text);
  margin-top:5px}
.credentials {
  margin:24px 0}
.credentials li {
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:.875rem;
  margin:10px 0}
.difference-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px}
.difference svg {
  color:var(--wine);
  width:38px;
  height:38px;
  margin-bottom:22px}
.difference h3 {
  font-size:1.5rem}
.difference p {
  font-size:.9375rem}
.audience {
  background:var(--black);
  color:var(--white)}
.audience em {
  color:var(--gold)}
.audience .button {
  margin-top:30px}
.audience-list article {
  border-bottom:1px solid #ffffff2b;
  padding:22px 0}
.audience-list article:first-child {
  padding-top:0}
.audience-list article:last-child {
  border:0;
  padding-bottom:0}
.audience-list h3 {
  font-size:1.45rem}
.audience p {
  color:#d0d0d0;
  margin-top:9px}
.timeline {
  list-style:none;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin:0;
  padding:0}
.timeline li {
  position:relative}
.timeline li:before {
  content:'';
  position:absolute;
  top:24px;
  left:0;
  right:-30px;
  height:1px;
  background:var(--line);
  z-index:-1}
.timeline li:last-child:before {
  right:0}
.step-number {
  display:flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  background:var(--white);
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--wine);
  font-size:1.125rem;
  margin-bottom:24px}
.timeline h3 {
  font-size:1.4rem}
.timeline p {
  font-size:.9375rem}
.editorial {
  padding:55px 0;
  border-block:1px solid var(--line);
  text-align:center}
.editorial h2 {
  font-size:2rem}
.editorial p {
  max-width:720px;
  margin:20px auto 0}
.faq-layout {
  display:grid;
  grid-template-columns:1fr 1.7fr;
  gap:90px}
.faq-layout .text-link {
  margin-top:28px}
.faq-item {
  border-bottom:1px solid var(--line)}
.faq-item:first-child {
  border-top:1px solid var(--line)}
.faq-toggle {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  text-align:left;
  width:100%;
  background:none;
  border:0;
  padding:23px 0;
  color:var(--ink);
  font-family:var(--sans);
  font-size:1rem;
  font-weight:500;
  line-height:1.55}
.faq-sign {
  color:var(--wine);
  font-size:1.5rem;
  min-width:20px}
.faq-panel {
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .3s}
.faq-panel[hidden] {
  display:none}
.faq-panel>div {
  overflow:hidden;
  min-height:0}
.faq-panel.open {
  grid-template-rows:1fr}
.faq-panel p {
  margin:0 34px 23px 0;
  font-size:.9375rem}
.final-cta {
  background:var(--wine);
  padding:85px 0;
  color:var(--white);
  text-align:center}
.final-cta h2 {
  max-width:890px;
  margin:auto;
  font-size:clamp(2rem,3.4vw,3.2rem)}
.final-cta em {
  color:var(--gold)}
.final-cta p {
  max-width:740px;
  margin:24px auto 0;
  color:var(--white)}
.cta-actions {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  margin-top:30px}
.final-cta .text-link {
  color:var(--white)}
.final-cta :focus-visible,.audience :focus-visible,.footer :focus-visible {
  outline-color:var(--gold)}

/* Contato: demonstração local sem envio de dados. */
.contact-layout {
  align-items:start}
.contact-links {
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:30px}
.contact-link {
  display:flex;
  align-items:center;
  gap:12px;
  overflow-wrap:anywhere}
.contact-link svg {
  color:var(--wine)}
.location-block {
  display:flex;
  gap:15px;
  align-items:flex-start;
  border-top:1px solid var(--line);
  margin-top:32px;
  padding-top:25px}
.location-block p {
  margin:0}
.location-block svg {
  color:var(--wine);
  margin-top:5px}
.contact-form {
  padding:32px;
  background:var(--muted);
  border:1px solid var(--line);
  border-radius:var(--radius)}
.form-note {
  font-size:.875rem;
  margin:0 0 23px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line)}
.field {
  margin-bottom:17px}
.field>label {
  display:block;
  font-size:.875rem;
  font-weight:500;
  margin-bottom:7px}
.field>label span {
  font-weight:400}
.field input:not([type=checkbox]),.field select,.field textarea {
  display:block;
  width:100%;
  border:1px solid #c6c6c6;
  border-radius:5px;
  background:var(--white);
  padding:12px;
  color:var(--ink);
  min-height:48px}
.field textarea {
  resize:vertical}
.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px}
.check-label {
  display:flex!important;
  gap:10px;
  align-items:flex-start;
  line-height:1.5}
.check-label input {
  width:18px;
  height:18px;
  flex-shrink:0;
  accent-color:var(--wine);
  margin-top:3px}
.field-error {
  display:block;
  font-size:.875rem;
  color:var(--wine)}
[aria-invalid=true] {
  border-color:var(--wine)!important}
#form-status:empty {
  display:none}
#form-status {
  padding:15px;
  border-left:3px solid var(--wine);
  background:var(--white);
  font-size:.875rem}
.contact-form>.text-link {
  display:flex;
  margin-top:15px}
.footer {
  background:var(--black);
  color:var(--white);
  padding:60px 0 90px}
.footer-grid {
  display:grid;
  grid-template-columns:1.1fr .7fr 1.4fr 1.1fr;
  gap:32px}
.footer h3 {
  font-family:var(--sans);
  font-size:.875rem;
  margin-bottom:22px;
  font-weight:600;
  color:var(--gold)}
.footer p,.footer a:not(.brand) {
  font-size:.875rem;
  color:#d5d5d5}
.footer a:not(.brand) {
  display:block;
  margin-bottom:10px;
  overflow-wrap:anywhere}
.footer a svg {
  display:none}
.footer a:hover {
  text-decoration:underline}
.footer .brand-dot {
  color:var(--gold)}
.footer .footer-motto {
  color:var(--gold)}
.footer-bottom {
  border-top:1px solid #ffffff24;
  margin-top:42px;
  padding-top:24px;
  font-size:.8125rem;
  color:#c4c4c4}
.whatsapp-float {
  position:fixed;
  right:24px;
  bottom:22px;
  z-index:25;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:50px;
  background:var(--wine);
  color:var(--white);
  box-shadow:0 3px 18px #00000020;
  font-size:.875rem;
  font-weight:600}
.whatsapp-float>svg:first-child {
  width:23px;
  height:23px}
.whatsapp-float .lucide {
  display:none}
.back-top {
  position:fixed;
  bottom:88px;
  right:25px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:50%;
  width:44px;
  height:44px;
  z-index:24;
  color:var(--wine);
  display:flex;
  align-items:center;
  justify-content:center}
.back-top[hidden] {
  display:none}
.reveal {
  transition:opacity .65s,transform .65s}
.reveal.waiting {
  opacity:0;
  transform:translateY(20px)}

@media(min-width:1700px) {
  .hero-inner {
  padding-block:65px}
.hero {
  min-height:690px}
.hero-image img {
  object-fit:cover}
.hero-copy {
  max-width:610px}
}

@media(max-width:1190px) {
  .header nav {
  gap:14px}
.header nav>a:not(.button) {
  font-size:.8125rem}
.header-cta {
  display:none}
.hero-copy {
  width:53%}
.split {
  gap:40px}
.container {
  width:calc(100% - 64px)}
.hero {
  min-height:670px}
.hero-image img {
  object-position:57% center}
.hero-copy h1 {
  font-size:2.7rem}
.services-grid {
  gap:16px}
.service {
  padding:25px}
.footer-grid {
  grid-template-columns:1fr 1fr}
.faq-layout {
  gap:50px}
}

@media(max-width:900px) {
  :root {
  --header-height:78px}
.header-inner {
  width:calc(100% - 40px)}
.header nav {
  position:fixed;
  top:var(--header-height);
  left:0;
  right:0;
  bottom:0;
  background:var(--white);
  flex-direction:column;
  align-items:stretch;
  padding:24px 28px 90px;
  gap:4px;
  overflow:auto;
  visibility:hidden;
  opacity:0;
  transform:translateY(-10px);
  transition:opacity .2s,transform .2s,visibility .2s}
.header nav.is-open {
  visibility:visible;
  opacity:1;
  transform:none}
.header nav>a:not(.button) {
  font-size:1.1rem;
  padding:13px}
.header-cta {
  display:inline-flex;
  margin-top:16px}
.menu-toggle {
  display:flex;
  gap:8px;
  align-items:center;
  border:0;
  background:none;
  color:var(--wine);
  padding:10px}
.menu-toggle span {
  font-size:.875rem}
.hero-copy h1 {
  font-size:2.35rem}
.hero-copy p {
  font-size:.875rem}
.hero {
  min-height:700px}
.hero-copy {
  width:55%}
.hero-image img {
  object-position:56% center}
.positioning-inner {
  grid-template-columns:1fr 1fr;
  gap:22px}
.section {
  padding:72px 0}
.split {
  gap:32px}
.section-intro {
  gap:35px}
.problem-grid {
  grid-template-columns:1fr 1fr}
.services-grid {
  grid-template-columns:1fr 1fr}
.service-book .service-body {
  display:flex}
.service-book .text-link {
  margin-top:20px;
  align-self:flex-start}
.difference-grid {
  grid-template-columns:1fr 1fr}
.timeline {
  grid-template-columns:1fr 1fr;
  gap:32px}
.timeline li:before {
  display:none}
.section-closing {
  flex-direction:column;
  align-items:flex-start;
  gap:22px}
.clarity-panel {
  padding:26px}
.clarity-panel h3 {
  font-size:2rem}
.about-inner {
  grid-template-columns:.85fr 1fr;
  align-items:start}
.contact-layout,.faq-layout {
  grid-template-columns:1fr}
.faq-layout {
  gap:34px}
}

@media(max-width:700px) {
  .container {
  width:calc(100% - 40px)}
.brand-name {
  font-size:1.5rem}
.brand-sub {
  font-size:.625rem;
  letter-spacing:1.4px}
.hero {
  display:block;
  min-height:0;
  overflow:visible;
  background:var(--white)}
.hero-inner {
  padding:30px 0 28px}
.hero-copy {
  width:100%;
  max-width:none}
.hero h1 {
  font-size:clamp(2rem,7.6vw,2.65rem)}
.hero-copy p {
  font-size:1rem;
  max-width:none}
.hero-copy p:first-of-type {
  margin-top:22px}
.hero-actions {
  gap:12px;
  align-items:stretch;
  flex-direction:column}
.hero-actions .text-link {
  justify-content:center}
.hero-location {
  font-size:.8125rem!important;
  line-height:1.5}
.hero-image {
  position:relative;
  display:block;
  inset:auto;
  z-index:0;
  width:100%;
  height:auto;
  aspect-ratio:1080/1300;
  max-height:600px;
  overflow:hidden}
.hero-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center bottom}
.hero {
  display:flex;
  flex-direction:column}
.hero-inner {
  order:-1}
.positioning-inner {
  padding-block:24px;
  gap:24px 15px}
.positioning-inner>div {
  font-size:.8125rem;
  gap:9px;
  line-height:1.5}
.positioning svg {
  width:22px;
  height:22px}
.section {
  padding:58px 0}
.split,.about-inner {
  grid-template-columns:1fr;
  gap:32px}
.section-heading {
  text-align:left;
  margin-bottom:30px}
.section-intro {
  display:block;
  margin-bottom:30px}
.section-intro p {
  margin-top:20px}
.problem-grid,.services-grid {
  grid-template-columns:1fr}
.problem {
  padding:24px;
  display:flex;
  gap:18px;
  align-items:flex-start}
.problem p {
  margin:0}
.problem svg {
  width:25px;
  height:25px}
.service {
  padding:28px}
.service-book {
  grid-column:auto;
  display:block}
.service-book .service-icon {
  margin-bottom:20px}
.service h3 {
  font-size:1.65rem}
.section-closing .button {
  max-width:100%;
  width:100%}
.portrait img {
  max-height:550px;
  object-fit:cover;
  object-position:top}
.difference-grid {
  gap:28px 22px}
.difference h3 {
  font-size:1.25rem}
.difference p {
  font-size:.875rem;
  margin-top:13px}
.difference svg {
  width:30px;
  height:30px;
  margin-bottom:16px}
.audience h2 {
  max-width:420px}
.timeline {
  display:block;
  border-left:1px solid var(--gold);
  margin-left:24px}
.timeline li {
  padding:0 0 34px 36px}
.timeline li:last-child {
  padding-bottom:0}
.step-number {
  position:absolute;
  left:-25px;
  top:0;
  margin:0}
.timeline h3 {
  padding-top:12px}
.timeline p {
  margin-top:14px}
.center .button {
  width:100%}
.editorial {
  padding:38px 0}
.editorial h2 {
  font-size:1.65rem}
.editorial p {
  font-size:.9375rem}
.faq-layout {
  gap:24px}
.faq-toggle {
  padding:22px 0}
.final-cta {
  padding:60px 0;
  text-align:left}
.cta-actions {
  flex-direction:column;
  gap:14px;
  align-items:stretch}
.cta-actions>.text-link {
  justify-content:center}
.contact-form {
  padding:23px}
.form-row {
  grid-template-columns:1fr;
  gap:0}
.contact-form>.button {
  width:100%}
.footer-grid {
  grid-template-columns:1fr;
  gap:32px}
.footer {
  padding-top:45px;
  padding-bottom:100px}
.footer h3 {
  margin-bottom:16px}
.footer-bottom {
  line-height:1.7}
.whatsapp-float {
  right:16px;
  bottom:max(16px,env(safe-area-inset-bottom));
  width:54px;
  height:54px;
  justify-content:center;
  padding:0}
.whatsapp-float>span {
  display:none}
.back-top {
  right:21px;
  bottom:84px}
.contact-link {
  font-size:.9375rem}
}

@media(prefers-reduced-motion:reduce) {
  html {
  scroll-behavior:auto}
*,*:before,*:after {
  animation:none!important;
  transition:none!important}
.reveal.waiting {
  opacity:1;
  transform:none}
}


/* Logo oficial dourada: proporção original preservada em todas as telas. */
:root { --header-height: 106px; }
.header .brand { background: var(--wine); padding: 4px 12px; border-radius: 6px; }
.brand-logo { display: block; width: 164px; height: auto; object-fit: contain; }
.footer .brand-logo { width: 235px; max-width: 100%; }
@media (max-width: 900px) {
  :root { --header-height: 94px; }
  .header .brand-logo { width: 145px; }
}
