/* ===========================================================
   We Barra by Living — estilos do projeto
   Convertido do Figma (LP 2)
   =========================================================== */

:root {
  --cor-marrom: #403331;       /* marrom escuro principal */
  --cor-marrom-2: #403430;     /* marrom alternativo */
  --cor-bege: #ada389;         /* bege/dourado dos títulos */
  --cor-bege-claro: #cec3a6;
  --cor-dourado-1: #a9966a;    /* botão (gradiente) */
  --cor-dourado-2: #cdbb8a;
  --cor-fundo-bege: #d2cab7;   /* tom bege das seções claras */
  --texto-escuro: #403331;
  --fonte: 'brandon-grotesque';
  /* Escala de font-size em assets/css/fontes.css */
}

* { box-sizing: border-box; }

body {
  font-family: var(--fonte);
  margin: 0;
  color: var(--texto-escuro);
  overflow-x: hidden;
}

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

/* Container mais largo em telas grandes (evita o "miolo" estreito centralizado) */
@media (min-width: 1200px) {
  .container { max-width: 80vw; }
}

/* ---------- Tipografia utilitária ---------- */
.titulo {
  font-size: var(--fs-h2);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.4;
  margin: 0 0 1rem;
}
.subtitulo {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-weight: 600;
  color: var(--cor-bege);
}
.texto {
  font-size: var(--fs-body);
  line-height: 1.5;
  font-weight: 400;
}

/* ---------- Botão padrão (gradiente dourado) ---------- */
.btn-we {
  position: relative;            /* p/ o brilho */
  overflow: hidden;              /* recorta o feixe dentro do botão */
  display: inline-block;
  background: url('../img/bg-btn.png') center center / cover no-repeat;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  font-weight: 500;
  font-size: var(--fs-small);
  padding: 11px 28px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: filter .2s ease;
  cursor: pointer;
}
/* brilho diagonal que cruza o botão ao passar o mouse (shine sweep) */
.btn-we::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
              transparent 0%,
              rgba(255, 255, 255, .45) 50%,
              transparent 100%);
  transform: skewX(-20deg);
  transition: left .7s ease;
  pointer-events: none;
}
.btn-we:hover::after { left: 140%; }
.btn-we:hover { filter: brightness(1.08); color: #fff; }
.btn-we--block { width: 100%; text-align: center; }

/* ---------- Endereço com pin ---------- */
.endereco {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: var(--fs-small);
  font-weight: 400;
}
.endereco::before {
  content: "";
  width: 22px; height: 22px;
  background: url("../img/pin.png") center/contain no-repeat;
}

section { position: relative; }
/* compensa a navbar fixa ao pular para uma âncora (#localizacao, #plantas, etc.) */
section[id] { scroll-margin-top: 100px; }

/* ===========================================================
   HOME / HERO
   =========================================================== */
.hero { color: #fff; }

/* ----- Navbar fixa que acompanha a rolagem -----
   Transparente sobre o hero no topo; ao descer 50px o JS adiciona
   .scrolled e ela ganha fundo sólido. position:fixed não ocupa espaço
   no fluxo, por isso o .hero__top abaixo recebe um padding-top de
   compensação para o conteúdo não subir. */
.hero .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
/* efeito glassmorphism: mesmo marrom, porém translúcido + vidro fosco
   Ativa ao rolar (.scrolled) E também quando o menu mobile está aberto,
   para o menu não ficar transparente/ilegível no topo da página. */
.hero .navbar.scrolled,
.hero .navbar:has(.navbar-collapse.show) {
  background: rgba(64, 51, 49, .55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .2);
}

/* Bloco superior — no desktop recebe a foto de fundo;
   no mobile recebe o bg-heromobile (logo + texto). */
.hero__top {
  display: flex;
  flex-direction: column;
  min-height: 85vh;
  padding-top: 0;   /* celular: hambúrguer flutua, sem faixa no topo */
}
/* a partir do tablet o logo aparece dentro da navbar (mais alta) — compensa o espaço */
@media (min-width: 768px) {
  .hero__top { padding-top: 88px; }
}
/* mobile-first: fundo bg-heromobile (logo + texto) */
.hero__top.bg-heromobile {
  background: linear-gradient(rgba(64,51,49,.35), rgba(64,51,49,.35)),
              url("../img/bg-heromobile.png") center/cover no-repeat;
}
/* desktop: foto do prédio cobre o bloco todo */
@media (min-width: 992px) {
  .hero__top.bg-heromobile {
    background: linear-gradient(to bottom, rgba(64, 51, 49, 0.603), rgba(64,51,49,.25)),
                url("../img/hero-bg.png") center/cover no-repeat;
  }
}

/* Botão hambúrguer — chip de vidro discreto, sem borda dura nem anel de foco */
.navbar-toggler {
  border: 0;
  padding: .4rem .55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background .2s ease;
}
.navbar-toggler:hover { background: rgba(255, 255, 255, .18); }
.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: none;
  outline: none;
}
/* ícone (3 traços) um pouco mais fino/elegante */
.navbar-toggler .navbar-toggler-icon {
  width: 1.3em;
  height: 1.3em;
}

.hero__logo { width: clamp(150px, 14vw, 230px); transition: width .3s ease; }
/* desktop: ao rolar (navbar .scrolled) a logo encolhe para 80px */
@media (min-width: 992px) {
  .hero .navbar.scrolled .hero__logo { width: 80px; }
}

.hero__menu { gap: 1.4rem; }
.hero__menu .nav-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--fs-small);
  font-weight: 500;
 
  white-space: nowrap;
}
 

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.4;
  max-width: 640px;
  margin: 0 0 1.5rem;
}
/* botão e, abaixo dele, o endereço */
.hero__cta-group {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

/* ----- bloco de mídia (só mobile): foto + botão + endereço ----- */
.hero__media { background: #fff; }
.hero__photo { width: 100%; height: auto; object-fit: cover; }
.hero__media .hero__cta-group {
  align-items: stretch;
  padding: 2rem 0 2.5rem;
}
.hero__media .endereco { color: var(--cor-marrom); justify-content: center; }

/* Regras mobile do hero estão em assets/css/mobile.css */

/* ===========================================================
   CONTATO / FORM (bloco bege)
   =========================================================== */
.contato { background: var(--cor-fundo-bege); padding: 5rem 0; }
.contato__title {
  font-size: var(--fs-h2);
  color: var(--cor-marrom);
}
.contato .texto { color: var(--cor-marrom); margin-bottom: 1.5rem; }
.contato__planta strong { display: block; letter-spacing: 3px; text-transform: uppercase; }

.form-card {
  background: var(--cor-marrom);
  color: #fff;
  padding: 3rem;
  border-radius: 2px;
}
.form-card label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: var(--fs-small);
  color: #A19979;
  margin-bottom: .4rem;
}
.form-card input {
  width: 100%;
  background: rgba(255,255,255,.3);
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 8px 15px;
  margin-bottom: 1.4rem;
  outline: none;
}
.form-card input::placeholder { color: rgba(255,255,255,.6); }

/* ===========================================================
   VIDEO
   =========================================================== */
.video {
  min-height: 600px;
  height: 60vh;
  background: 
              url("../img/video-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video__play {
  display: inline-block;
  transition: transform .2s ease;
}
.video__play img { display: block; max-width: 105px; height: auto; }
.video__play:hover { transform: scale(1.06); }

/* ===========================================================
   LOCALIZAÇÃO (band "encontramos não apenas um endereço")
   =========================================================== */
.localizacao {
  background: linear-gradient(rgba(64,51,49,.35), rgba(64,51,49,.35)),
              url("../img/endereco-bg.png") center/cover no-repeat;
  color: #fff;
  
min-height: 600px;
height: 80vh;
}

.localizacao .container {

  display: flex;
  justify-content: space-between;
  align-items: start;
flex-direction: column;
height: 100%;

}

.localizacao__title {
  font-size: var(--fs-h2);
  max-width: 660px;
  line-height: 1.6;
}

/* ===========================================================
   GALERIA COM DADOS (endereço + distâncias)
   =========================================================== */
.dados { 

  
   background-image: url('../img/bg-endereco.png');
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;

  overflow: hidden;

}
.dados__title {
  text-align: center;
  color: #fff;
  font-size: var(--fs-h2);

  margin: 0 auto 3rem;
}

/* ----- Carrossel (Slick) com card central mais alto ----- */
.dados-slider { padding: 2.5rem 0; }
.dados-slide { padding: 0; }
/* centraliza os slides verticalmente na faixa */
.dados-slider .slick-track { display: flex; align-items: center; }

.loc-card {
  position: relative;
  height: clamp(330px, 27vw, 420px);   /* laterais mais baixos */
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin: 0;
   
  transition: height .45s ease, opacity .45s ease;
}
.slick-center .loc-card {
  height: clamp(420px, 33vw, 520px);   /* ativo mais alto */
  opacity: 1;
  z-index: 3;
}

.loc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(64,51,49,.62);
}
.loc-card__overlay {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
.loc-card h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: var(--fs-h3);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.loc-list { list-style: none; margin: 0; padding: 0; }
.loc-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .35rem 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: var(--fs-body);
  font-weight: 300 !important;
}
.loc-ico { width: 16px; height: auto; filter: brightness(0) invert(1); }

/* setas do Slick — imagem seta.png, embaixo do carrossel */
.dados-slider .slick-prev,
.dados-slider .slick-next {
  position: absolute;
  top: auto;
  bottom: -8px;
  width: 56px;
  height: 16px;
  transform: none;
  background: url('../img/seta.png') center/contain no-repeat;
  z-index: 4;
}
.dados-slider .slick-prev:before,
.dados-slider .slick-next:before { content: none; }
.dados-slider .slick-prev { left: calc(50% - 75px); right: auto; }
.dados-slider .slick-next { left: calc(50% + 20px); right: auto; transform: scaleX(-1); }
.dados-slider .slick-prev:hover,
.dados-slider .slick-next:hover { opacity: .75; }

/* ===========================================================
   GALERIA EXPERIÊNCIA (grid escuro)
   =========================================================== */
.experiencia { background: var(--cor-marrom-2); color: #fff; padding: 6rem 0; }
.experiencia__title {
  text-align: center;
  color: var(--cor-bege);
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}
.experiencia__sub {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.galeria-grid > a { display: block; overflow: hidden; border-radius: 2px; height: 100%; }
.galeria-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.galeria-grid > a:hover img { transform: scale(1.04); transition: transform .4s ease; }

@media (min-width: 768px) {
  .galeria-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}

/* Desktop: mosaico exato — 4 colunas à esquerda + coluna alta à direita */
@media (min-width: 992px) {
  .galeria-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(12, clamp(52px, 5.2vw, 78px));
    grid-auto-rows: auto;
  }
  /* linha 1 */
  .galeria-grid > :nth-child(1) { grid-area: 1 / 1 / 4 / 2; }
  .galeria-grid > :nth-child(2) { grid-area: 1 / 2 / 4 / 3; }
  .galeria-grid > :nth-child(3) { grid-area: 1 / 3 / 4 / 4; }
  .galeria-grid > :nth-child(4) { grid-area: 1 / 4 / 4 / 5; }
  /* coluna alta direita (topo) */
  .galeria-grid > :nth-child(5) { grid-area: 1 / 5 / 5 / 6; }
  /* linha 2 */
  .galeria-grid > :nth-child(6) { grid-area: 4 / 1 / 7 / 3; }   /* largo */
  .galeria-grid > :nth-child(7) { grid-area: 4 / 3 / 7 / 4; }
  .galeria-grid > :nth-child(8) { grid-area: 4 / 4 / 7 / 5; }
  /* coluna alta direita (meio) */
  .galeria-grid > :nth-child(9) { grid-area: 5 / 5 / 9 / 6; }
  /* linha 3 */
  .galeria-grid > :nth-child(10) { grid-area: 7 / 1 / 10 / 2; }
  .galeria-grid > :nth-child(11) { grid-area: 7 / 2 / 10 / 4; } /* largo */
  .galeria-grid > :nth-child(12) { grid-area: 7 / 4 / 10 / 5; }
  /* coluna alta direita (base) */
  .galeria-grid > :nth-child(13) { grid-area: 9 / 5 / 13 / 6; }
  /* linha 4 */
  .galeria-grid > :nth-child(14) { grid-area: 10 / 1 / 13 / 2; }
  .galeria-grid > :nth-child(15) { grid-area: 10 / 2 / 13 / 3; }
  .galeria-grid > :nth-child(16) { grid-area: 10 / 3 / 13 / 5; } /* largo */
}

/* ===========================================================
   PLANTAS
   =========================================================== */
.plantas {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url("../img/plantas-bg.png") center/cover no-repeat;
  color: #fff;
  padding: 1rem 0;

  min-height: 400px;
  height: 50vh;

}
.plantas__title { font-size: var(--fs-h2); max-width: 620px; }
.plantas__quartos {
   
  letter-spacing: 3px;
  
  margin: 1.5rem 0;
}

 
.plantas__quartos span { display: block; }

/* ===========================================================
   FACILIDADES
   =========================================================== */
.facilidades { 
   background:   url('../img/bg-w-grande.png'),linear-gradient( #403331 , #403331);
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

   color: #fff;
   padding: 6rem 0; }
.facilidades__title { color: #e2e6cd; font-size: var(--fs-h2); max-width: 480px; }
.facilidades__intro { max-width: 760px; margin-bottom: 3rem; line-height: 1.5; }

/* ----- Accordion (Bootstrap) com visual da marca ----- */
/* a imagem cobre o item INTEIRO: ao expandir, revela mais da foto atrás do texto */
.fac-accordion .accordion-item {
  border: none;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2px;
  background-color: var(--cor-marrom);
}
/* item ativo (com collapse aberto) — altura fixa + texto no topo, legenda embaixo */
.fac-accordion .accordion-item:has(.accordion-collapse.show) {
  height: 203px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.fac-accordion .accordion-item:has(.accordion-collapse.show) .accordion-body {
  padding-bottom: 1.8rem;
}
/* cada item tem sua própria imagem de fundo */
.fac-accordion .accordion-item:nth-child(1) {
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
              url("../img/facilidades/shuttle.png") center/cover no-repeat;
}
.fac-accordion .accordion-item:nth-child(2) {
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
              url("../img/facilidades/balsa.png") center/cover no-repeat;
}
.fac-accordion .accordion-item:nth-child(3) {
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
              url("../img/facilidades/centraldeencomendas.png") center/cover no-repeat;
}
.fac-accordion .accordion-item:nth-child(4) {
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
              url("../img/facilidades/facilidades.png") center/cover no-repeat;
}
.fac-accordion .accordion-item:nth-child(5) {
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
              url("../img/facilidades/poolbar.png") center/cover no-repeat;
}
.fac-accordion .accordion-item:nth-child(6) {
  background: linear-gradient(rgb(0 0 0 / 60%), rgb(0 0 0 / 60%)),
              url("../img/facilidades/pranchario.png") center/cover no-repeat;
}
/* título e corpo transparentes — deixam a imagem do item aparecer */
.fac-accordion .accordion-button {
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  font-size: var(--fs-h3);
  padding: 1.3rem 1.8rem;
  box-shadow: none;
}
.fac-accordion .accordion-button:not(.collapsed) { color: #fff; background: transparent; }
.fac-accordion .accordion-button:focus { box-shadow: none; outline: none; }
/* seta branca */
.fac-accordion .accordion-button::after { filter: brightness(0) invert(1); }
.fac-accordion .accordion-body {
  background: transparent;
  color: #fff;
  padding: 0 1.8rem 1.4rem;
  font-size: var(--fs-body);
  line-height: 1.5;
}

/* ===========================================================
   SEU APARTAMENTO (Preference Living)
   =========================================================== */
.apartamento {
  background-image: url('../img/bg-apartamento.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.apartamento__title { font-size: var(--fs-h3);   }
.apartamento__topo { margin-bottom: 3rem; }
.apartamento__logo { display: inline-block; max-width: 220px; width: 100%; }
.apartamento__intro { line-height: 1.5; margin: 0; }

.pref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.pref-item__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .4rem;
}
.pref-item__icon { width: 18px; height: auto; flex: 0 0 auto; }
.pref-item h4 {
  color: var(--cor-bege);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: clamp(11px, 1.2vw, 13px);
  margin: 0;
  font-weight: 500 !important;
}
.pref-item p { margin: 0; font-size: var(--fs-body);   }

/* ===========================================================
   LIVING (institucional)
   =========================================================== */
.living { background: var(--cor-marrom); color: #fff; padding: 5rem 0; }
.living__bloco {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}
/* coluna fixa do logo — mantém todos no mesmo tamanho e alinhados */
.living__logo {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
}
.living__logo img { max-height: 60px; max-width: 100%; width: auto; }
.living__txt { flex: 1; }
.living__txt p { line-height: 1.5; margin: 0; }

/* mobile: logo em cima, texto embaixo */
@media (max-width: 767.98px) {
  .living__bloco { flex-direction: column; gap: 1rem; }
  .living__logo { flex: none; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: linear-gradient(rgba(64,51,49,.65), rgba(64,51,49,.65)),
              url("../img/bg-footer.png") center/cover no-repeat;
  color: #fff;
  padding: 3.5rem 0;
}
/* desktop: tudo em uma linha */
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer__band { flex: 0 1 760px; max-width: 760px; height: auto; }
.footer__assinatura {
  flex: 0 0 auto;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 8px !important;
  white-space: nowrap;
}

/* mobile: empilha e centraliza */
@media (max-width: 767.98px) {
  .footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* ===========================================================
   PRELOADER
   =========================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cor-marrom);
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader__logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: .45; transform: scale(.97); }
  50%      { opacity: 1;   transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__logo { animation: none; }
}

/* ===========================================================
   AOS — deixa o movimento mais suave
   O padrão sobe 100px (salto). Reduzimos para um deslize curto.
   =========================================================== */
[data-aos="fade-up"] {
  transform: translate3d(0, 24px, 0);
}

/* ===========================================================
   AVISO DE COOKIES (LGPD) — barra de vidro condizente com a marca
   =========================================================== */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(160%);
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  width: min(940px, calc(100% - 2rem));
  padding: 1rem 1.4rem;
  color: #fff;
  background: rgba(64, 51, 49, .82);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
  opacity: 0;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1), opacity .5s ease;
}
.cookie-consent.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-consent__text {
  margin: 0;
  font-size: var(--fs-small);
  letter-spacing: .5px;
  line-height: 1.5;
}
.cookie-consent__text a { color: var(--cor-bege-claro); text-decoration: underline; }
.cookie-consent__text a:hover { color: #fff; }
.cookie-consent__btn {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: var(--fs-small);
  color: #fff;
  background: url('../img/bg-btn.png') center/cover no-repeat;
  border: none;
  border-radius: 2px;
  padding: 10px 26px;
  cursor: pointer;
  transition: filter .2s ease;
}
.cookie-consent__btn:hover { filter: brightness(1.08); }

@media (max-width: 767.98px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    gap: .9rem;
    bottom: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .cookie-consent__text { padding: 0 .5rem; }
}

/* Estilos responsivos (mobile/tablet) em assets/css/mobile.css */
 .hero__top {
        padding-top: unset;
    }