:root{
  --bg: #0b0c0e;
  --bg-2: #0f1114;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --gold: #d1b066;

  --header-row: 65px;
  --logo-nudge: -7px; 

  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius: 18px;

  --container: 1150px;
  --header-h: 108px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: auto; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

/* Ensure the HTML `hidden` attribute works */
[hidden]{
  display: none !important;
}


html.scroll-locked,
body.scroll-locked{
  overflow: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .95em;
  color: rgba(11,12,14,.82);
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-block{
  margin-top: 65px;  
}

.skip-link{
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translateY(-130%);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  color: #111;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); }

.muted{ color: var(--muted); }
.small{ font-size: 13px; }
.tiny{ font-size: 12px; }
.maxw{ max-width: 72ch; }

/* Header */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;

  /* agora é sempre branco */
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(0,0,0,.06);

  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  padding-top: 23px;
}

/* podes manter a classe, mas já não é necessária */
.site-header.is-scrolled{
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0,0,0,.06);
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: flex-start; /* <- sobe */
  gap: 18px;
  justify-content: space-between;
}

/* logo */
.brand{
  display: inline-flex;
  align-items: center;
  height: var(--header-row);
}

.brand img{
  display: block;
  transform: translateY(var(--logo-nudge));
}

.brand-logo{
  height: var(--header-row);
  width: auto;

}

/* nav (agora preto) */
.site-nav{
  display: flex;
  flex: 1;
  gap: 55px;
  align-items: center;
  justify-content: center;
  height: var(--header-row);
  line-height: 1;
  font-size: 16px;
  font-weight: 400;

  color: rgba(11,12,14,.78);
}

/* links */
.nav-link{
  height: var(--header-row);
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 1;

  color: rgba(11,12,14,.78);
  opacity: .9;
  transition: color .2s ease, opacity .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible{
  opacity: 1;
 color: #0b0c0e;
}

.nav-link.is-active{
  opacity: 1;
  font-weight: 450;
  color: #000000;
}

/* toggle (mobile) */
.nav-toggle{
  border-color: rgba(0,0,0,.14);
  background: rgba(255,255,255,.65);
}

.nav-toggle-bar{
  background: rgba(11,12,14,.86);
}


/* Mobile nav */
.nav-toggle{
  display: none;
  width: 46px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle-bar{
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: rgba(255,255,255,.86);
  border-radius: 99px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-backdrop{
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 40;
}

body.nav-open .nav-backdrop{ display: block; }
body.nav-open .nav-backdrop[hidden]{ display: block; }

@media (max-width: 980px){
  .nav-toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .site-nav{
    position: fixed;
    top: calc(var(--header-h) + 12px);
    right: 16px;
    width: min(360px, calc(100% - 32px));
    background: rgba(6,6,6,.86);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    z-index: 60;
    box-shadow: var(--shadow);
  }
  body.nav-open .site-nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link{ width: 100%; padding: 10px 10px; border-radius: 12px; }
  .nav-link:hover{ background: rgba(255,255,255,.06); }

/* Menu mobile em fundo branco após o início */
.site-header.is-scrolled .site-nav{
  background: rgba(255,255,255,.96);
  border-color: rgba(0,0,0,.12);
  color: rgba(11,12,14,.86);
}
.site-header.is-scrolled .nav-link{ color: rgba(11,12,14,.86); }
.site-header.is-scrolled .nav-link:hover{ background: rgba(0,0,0,.04); }
  .brand{ min-width: auto; }
}

/* Hero */
.hero{
  min-height: 100vh;
  position: relative;
  padding-top: var(--header-h);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #0b0c0e;
  background-image: image-set(
    url("../assets/img/NDE_5517.JPG") type("image/jpeg") 1x
  );
  transform: scale(1.01);
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events:none;
  background: rgba(46,55,66,.55);

  filter: blur(0.6px);
  transform: translateZ(0);
  pointer-events: none;
  z-index: 1;
}

.hero-inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;     /* <- era center */
  padding: 220px 0 96px;        /* <- baixa este 1º valor para subir mais */
}
.hero-copy{
  max-width: 750px;
}
.hero-title{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  font-size: clamp(38px, 5.8vw, 74px);
  color: rgb(255, 255, 255);
  text-shadow: 0 14px 30px rgba(0,0,0,.45);
}

.hero-actions{
  display: flex;
  gap: 22px;
  align-items: center;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--gold);
  color: rgba(15,15,15,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.btn-primary:hover{ filter: brightness(1.03); }

.hero .btn-primary{
  background: rgba(255,255,255,.98);
  color: rgba(15,15,15,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.hero .btn-primary:hover{ background: rgba(255,255,255,1); }
.btn-secondary{
  background: transparent;
  border-color: rgba(0,0,0,.18);
  color: rgba(11,12,14,.86);
}
.btn-secondary:hover{ background: rgba(0,0,0,.04); }

.hero .btn-secondary{
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
}
.hero .btn-secondary:hover{ background: rgba(255,255,255,.06); }
.btn-link{
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  opacity: .92;
  transition: opacity .18s ease;
}
.btn-link:hover{ opacity: 1; }

.section{
  padding: clamp(56px, 6vw, 86px) 0;
  background: #ffffff;
  color: rgba(11,12,14,.92);

  /* Light theme tokens for content sections */
  --text: rgba(11,12,14,.92);
  --muted: rgba(11,12,14,.62);
  --border: rgba(11,12,14,.12);
  --surface: rgba(0,0,0,.03);
  --surface-2: rgba(0,0,0,.06);
  --shadow: 0 12px 40px rgba(0,0,0,.14);
}
.section-alt{
  /* Mantém o fundo sempre branco após o início */
  background: #ffffff;
}
.section-head{
  margin-bottom: 26px;
}
.eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(209,176,102,.92);
}
.section h2{
  margin: 0 0 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(26px, 3.2vw, 38px);
}

/* About grid */
.about-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.about-text{
  padding: 18px 0;
}
.feature-list{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.feature-list li{
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(209,176,102,.92);
  margin-top: 8px;
  box-shadow: 0 0 0 3px rgba(209,176,102,.14);
}

.mini-cards{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 12px 12px 10px;
}

.mini-k{
  font-size: 12px;
  color: var(--muted);
}

.mini-v{
  font-weight: 700;
  margin-top: 3px;
  color: rgba(12, 12, 12, 0.884);
  transition: color .25s ease;
}

.mini-v a{
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

.mini-v a:hover{
  color: #000000;
  text-decoration: none;
}

.mini-v a:hover{
  text-decoration: none;
}

/* Video */
.video-card{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.video-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.video-title{ font-weight: 800; letter-spacing: -.01em; }
.video-actions{ display: inline-flex; gap: 8px; }
.icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.02);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.icon-btn:hover{ background: rgba(0,0,0,.05); }
.icon-btn:hover{ background: rgba(255,255,255,.06); }
.video-wrap{
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:transparent;
}
.video{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
}

/* Services cards */
.cards-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .22s ease, background .22s ease;
}

.card-icon{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(209,176,102,.14);
  color: rgba(209,176,102,.92);
  border: 1px solid rgba(209,176,102,.18);
  margin-bottom: 12px;
  font-weight: 900;
}
.card h3{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* Notice */
.notice-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.notice{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.notice-title{
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.03); }

/* ===== Galeria (carrossel 3 por vez) ===== */
.gallery-wrap{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 14px;
  align-items: center;
}

.gallery-arrow{
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 35px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: var(--gold);

  cursor: pointer;
  z-index: 2;

  transition: background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.gallery-arrow svg{
  width: 18px;
  height: 18px;
  display: block;
}

.gallery-arrow svg path{
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible{
  background: #ffffffcc;
  border-color: rgba(0,0,0,.16);
}

.gallery-arrow:active{
  transform: translateY(0);
}

.gallery-viewport{
  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  border-radius: 16px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.gallery-viewport::-webkit-scrollbar{
  display: none;
}

.gallery-track{
  display: flex;
  gap: 16px;
  padding: 2px;
  overflow: visible;
}

.gallery-card{
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  margin: 0;
}


.gallery-btn{
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;

  outline: 1px solid rgba(0,0,0,.06);
  outline-offset: -1px;

  /* NÃO meter transition no transform */
  transition: outline-color .16s ease;
}

.gallery-btn:hover{

  outline-color: rgba(0,0,0,.10);   /* hover mais suave */
}

.gallery-btn img{
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: none;
  transform: none;
}




@media (max-width: 900px){
  .gallery-card{ flex-basis: calc((100% - 16px) / 2); } /* 2 por vez */
  .gallery-btn img{ height: 220px; }
}
@media (max-width: 560px){
  .gallery-wrap{ grid-template-columns: 40px 1fr 40px; }
  .gallery-card{ flex-basis: 100%; } /* 1 por vez */
  .gallery-btn img{ height: 220px; }
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.lightbox-panel{
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-img{
  max-width: min(1100px, 92vw);
  max-height: min(78vh, 800px);
  width: auto;
  height: auto;

  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: #111;

  transition: opacity .2s ease, filter .2s ease;
}

/* Botões do lightbox */
.lightbox-close,
.lightbox-arrow{
  position: absolute;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 35px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: var(--gold);

  cursor: pointer;
  z-index: 2;

  transition:
    background .2s ease,
    border-color .2s ease,
    opacity .2s ease;
}

.lightbox-close{
  top: 18px;
  right: 18px;
}

.lightbox-arrow{
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev{
  left: 18px;
}

.lightbox-next{
  right: 18px;
}

.lightbox-close svg,
.lightbox-arrow svg{
  width: 18px;
  height: 18px;
  display: block;
}

.lightbox-close svg path,
.lightbox-arrow svg path{
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-close:hover,
.lightbox-arrow:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible{
  background: #ffffffcc;
  border-color: rgba(0,0,0,.16);
}

.lightbox-close:active{
  transform: translateY(0);
}

.lightbox-arrow:active{
  transform: translateY(-50%);
}

.lightbox.is-loading .lightbox-img{
  opacity: .45;
  filter: blur(6px);
}



/* FAQ */
.faq{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.faq-item{
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item:last-child{
  border-bottom: 0;
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 700;
  letter-spacing: -.01em;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

/* Ícone + / × */
.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;

  color: rgba(209,176,102,.92);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;

  transform: translateY(-50%) rotate(0deg);
  transition:
    transform .42s cubic-bezier(.22,1,.36,1),
    color .2s ease;
}

.faq-item.is-open summary::after{
  transform: translateY(-50%) rotate(135deg);
}

/* Corpo da resposta */
.faq-body{
  height: 0;
  overflow: hidden;
  opacity: 0;

  padding: 0 16px;

  transition:
    height .42s cubic-bezier(.22,1,.36,1),
    opacity .22s ease;

  will-change: height, opacity;
}

.faq-item.is-open .faq-body{
  opacity: 1;
}

.faq-body p{
  margin: 0;
  padding-right: 45px;
  padding-bottom: 17px;
}

.faq-body > *{
  margin-top: 0;
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}
.contact-card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  display: grid;
  gap: 10px;
}
.contact-card h3{
  margin: 0;
  font-weight: 900;
  letter-spacing: -.01em;
}
.contact-actions{
  display: grid;
  gap: 10px;
  margin: 8px 0 2px;
}
.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-align: center;
  font-weight: 700;
}
.pill:hover{ background: var(--surface-2); }
.pill:hover{ background: rgba(255,255,255,.07); }

.map{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0,0,0,.14);
}
.map iframe{
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(.1) contrast(1.05) brightness(.96);
}

/* Footer */
.site-footer{
  padding: 52px 0 22px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,.10);
  color: rgba(11,12,14,.92);

  /* Light theme tokens */
  --text: rgba(11,12,14,.92);
  --muted: rgba(11,12,14,.62);
  --border: rgba(11,12,14,.12);
  --surface: rgba(0,0,0,.03);
  --surface-2: rgba(0,0,0,.06);
  --shadow: 0 12px 40px rgba(0,0,0,.14);
}
.footer-top{
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr 1.1fr;
  gap: 34px;
  padding-bottom: 26px;
}
.footer-title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-heading{
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.footer-links{
  display: grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(11,12,14,.86);
  opacity: .9;
}
.footer-links a:hover{
  opacity: 1;
  text-decoration: none;
  color: #0b0c0e;
}
.link-muted{ opacity: .55 !important; cursor: not-allowed; }

.footer-pills{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.footer-bottom{
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom-left{
  color: rgba(11,12,14,.62);
  font-size: 13px;
}
.footer-bottom-left a{
  color: rgba(11,12,14,.62);
  transition: color .25s ease;
}

.footer-bottom-left a:hover{
  color: #0b0c0e;
}
.sep{ opacity: .45; padding: 0 8px; }
.footer-bottom-right{
  display: inline-flex;
  gap: 18px;
  font-size: 13px;
}
.footer-bottom-right a{
  color: rgba(11,12,14,.86);
}
.footer-bottom-right a:hover{ text-decoration: underline; }

.footer-bottom a:hover{
  color: #0b0c0e;
  text-decoration: none;
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: auto;
}

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.modal-panel{
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);

  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 20px;
  background: #fff;
  color: rgba(11,12,14,.92);

  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);

  padding: 0;
}

.modal-panel h3{
  margin: 0;
  padding: 20px 64px 16px 20px;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.01em;

  color: rgba(11,12,14,.94);
  border-bottom: 1px solid rgba(0,0,0,.06);

  flex: 0 0 auto;
}

.modal-panel p{
  margin: 0;
  padding: 18px 20px 22px;
  color: rgba(11,12,14,.68);
  line-height: 1.7;
}

.modal-panel .muted{
  color: rgba(11,12,14,.68);
}

.modal-close{
  position: absolute;
  top: 12px;
  right: 12px;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgb(255, 255, 255);
  color: var(--accent, #b48c4b);

  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.modal-close svg{
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-close:hover{
  background: rgba(133, 133, 133, 0.07);
  border-color: rgba(0,0,0,.14);
}
/* Conteúdo legal dentro dos modais */
.modal-panel .legal-content{
  padding: 20px 28px 22px 20px;
  color: rgba(11,12,14,.72);
  font-size: 15px;
  line-height: 1.75;

  overflow-y: auto;
  max-height: calc(100vh - 130px);
}

.modal-panel .legal-content p{
  margin: 0 0 14px;
  padding: 0;
}

.modal-panel .legal-content h4{
  margin: 26px 0 10px;
  padding: 0;
  color: rgba(11,12,14,.94);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.modal-panel .legal-content h4:first-child{
  margin-top: 0;
}

.modal-panel .legal-content ul{
  margin: 0 0 16px 20px;
  padding: 0;
}

.modal-panel .legal-content li{
  margin-bottom: 8px;
}

.modal-panel .legal-content strong{
  color: rgba(11,12,14,.92);
  font-weight: 700;
}

.modal-panel .legal-content .legal-updated{
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 14px;
  color: rgba(11,12,14,.55);
}

/* Modal de vídeo */
.modal-panel.modal-video{
  width: min(1120px, 100%);
  max-height: calc(100vh - 64px);
  overflow: visible;

  padding: 12px;

  background: rgba(10,10,10,.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.modal-panel.modal-video .modal-close{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.9);
}

.modal-panel.modal-video .modal-close:hover{
  background: rgba(255,255,255,.06);
}

.video-modal{
  width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

/* To top */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 35px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: var(--gold);

  cursor: pointer;
  z-index: 70;

  transition: background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.to-top svg{
  width: 19px;
  height: 19px;
  display: block;

  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.to-top:hover,
.to-top:focus-visible{
  background: #ffffffcc;
  border-color: rgba(0,0,0,.16);
}

.to-top:active{
  transform: translateY(0);
}


/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .card, .gallery-item img, .btn{ transition: none; }
}

/* Anchors offset for fixed header */
section[id]{ scroll-margin-top: calc(var(--header-h) + 18px); }

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .notice-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .hero::before{
    background: linear-gradient(180deg,
      rgba(46,55,66,.86) 0%,
      rgba(46,55,66,.62) 52%,
      rgba(46,55,66,.18) 100%);
  }
  .hero-bg{
    background-image: image-set(
      url("../assets/img/hero-mobile-1200.webp") type("image/webp") 1x,
      url("../assets/img/hero-mobile-1200.jpg") type("image/jpeg") 1x
    );
    background-position: center;
  }
}

@media (max-width: 560px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .hero-inner{ padding: 70px 0 80px; }
  .mini-cards{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
}

/* Cookies UI */
.cookie-banner{
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 120;

  width: min(var(--container), calc(100% - 40px));

  opacity: 0;
  transform: translateX(-50%) translateY(14px) scale(.98);
  pointer-events: none;

  transition:
    opacity .26s ease,
    transform .32s cubic-bezier(.22,1,.36,1);
}

.cookie-banner.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-banner__inner{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.cookie-banner__text p{
  margin: 6px 0 0;
}

.cookie-banner__actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}


/* Modal cookies */
.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;

  opacity: 0;
  pointer-events: none;

  transition: opacity .26s ease;
}

.cookie-modal.is-visible{
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal__backdrop{
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  transition: opacity .26s ease;
}

.cookie-modal.is-visible .cookie-modal__backdrop{
  opacity: 1;
}

.cookie-modal__panel{
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 36px);

  display: flex;
  flex-direction: column;
  overflow: hidden;

  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);

  opacity: 0;
  transform: translateY(14px) scale(.98);

  transition:
    opacity .24s ease,
    transform .32s cubic-bezier(.22,1,.36,1);
}

.cookie-modal.is-visible .cookie-modal__panel{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cookie-modal__top{
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.cookie-modal__body{
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;

  padding: 0 18px 18px;

  scrollbar-gutter: stable;
}

.cookie-modal__bottom{
  flex: 0 0 auto;

  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 16px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
  flex-wrap: wrap;
}


/* X dos cookies igual aos modais legais */
.cookie-x{
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;
  flex: 0 0 auto;

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: var(--gold);

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.cookie-x svg{
  width: 18px;
  height: 18px;
  display: block;

  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-x:hover{
  background: rgba(133,133,133,.07);
  border-color: rgba(0,0,0,.14);
}


/* Accordion cookies */
.cookie-accordion{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.cookie-item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(0,0,0,.02);
  overflow: hidden;
}

.cookie-item summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-weight: 600;
}

.cookie-item summary::-webkit-details-marker{
  display: none;
}

/* Accordion cookies — abertura suave */
.cookie-item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(0,0,0,.02);
  overflow: hidden;
}

.cookie-item summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-weight: 600;
}

.cookie-item summary::-webkit-details-marker{
  display: none;
}

.cookie-item__content{
  height: 0;
  overflow: hidden;
  opacity: 0;

  padding: 0 14px;

  transition:
    height .42s cubic-bezier(.22,1,.36,1),
    opacity .22s ease;

  will-change: height, opacity;
}

.cookie-item.is-open .cookie-item__content{
  opacity: 1;
}

.cookie-item__content > *{
  margin-top: 0;
}

.cookie-item__content p{
  margin: 0;
  padding-bottom: 14px;
}


/* Switch cookies */
.cookie-switch{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cookie-switch input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__ui{
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  position: relative;
  transition: background .2s ease;
}

.cookie-switch__ui::after{
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  top: 3px;
  left: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform .2s ease;
}

.cookie-switch input:checked + .cookie-switch__ui{
  background: rgba(209,176,102,.95);
}

.cookie-switch input:checked + .cookie-switch__ui::after{
  transform: translateX(18px);
}


/* Toggle bloqueado — cookies necessários */
.cookie-toggle{
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,.10);
  position: relative;
}

.cookie-toggle__dot{
  position: absolute;
  width: 22px;
  height: 22px;
  top: 3px;
  right: 3px;
  border-radius: 999px;
  background: rgba(209,176,102,.95);
}

.cookie-toggle--locked{
  opacity: .75;
}


/* Força tema claro dentro do UI de cookies */
.cookie-banner__inner,
.cookie-modal__panel{
  color: rgba(11,12,14,.92);

  --text: rgba(11,12,14,.92);
  --muted: rgba(11,12,14,.62);
  --border: rgba(11,12,14,.12);
  --surface: rgba(0,0,0,.03);
  --surface-2: rgba(0,0,0,.06);
  --shadow: 0 12px 40px rgba(0,0,0,.14);
}

.cookie-modal__panel .muted{
  color: var(--muted);
}

.cookie-item summary{
  color: var(--text);
}

.cookie-item__content{
  color: rgba(11,12,14,.78);
}



/* =========================================================
   MOBILE FIXES — colar no fim do style.css
   ========================================================= */

/* Tablet / mobile */
@media (max-width: 980px){

  :root{
    --header-h: 86px;
    --header-row: 54px;
    --logo-nudge: -2px;
  }

  .container{
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header{
    height: var(--header-h);
    padding-top: 16px;
  }

  .header-inner{
    align-items: center;
  }

  .brand-logo{
    height: var(--header-row);
  }
  .brand{
  transform: translateY(-6px);
  }

 .nav-toggle{
    position: relative;
    width: 44px;
    height: 40px;

    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(8px);
  }

  .nav-toggle-bar{
    display: none;
  }

 .nav-toggle{
  position: relative;
  width: 44px;
  height: 40px;

  border: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-toggle::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);

  transform: translate(-50%, -50%);
  box-shadow:
    0 -8px 0 var(--gold),
    0  8px 0 var(--gold);
}

 .site-nav{
    position: fixed;
    top: calc(var(--header-h) + 12px);
    right: 12px;

    width: min(330px, calc(100% - 24px));
    height: auto;
    min-height: 0;
    max-height: calc(100svh - var(--header-h) - 24px);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 4px;
    padding: 10px;

    overflow-y: auto;
    overflow-x: hidden;

    background: rgba(255,255,255,.96);
    color: rgba(11,12,14,.88);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);

    transform: translateY(-10px) scale(.98);
    transform-origin: top right;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 60;

    transition:
      opacity .24s ease,
      transform .28s cubic-bezier(.22,1,.36,1),
      visibility 0s linear .28s;
  }

  body.nav-open .site-nav{
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition:
      opacity .22s ease,
      transform .30s cubic-bezier(.22,1,.36,1),
      visibility 0s;
  }

  .site-nav .nav-link{
    width: 100%;
    height: auto;
    min-height: 44px;

    display: flex;
    align-items: center;

    padding: 12px 14px;
    border-radius: 12px;

    color: rgba(11,12,14,.82);
    opacity: 1;
    font-size: 15px;
    line-height: 1.2;

    transition:
      background .2s ease,
      color .2s ease,
      transform .2s ease;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus-visible,
  .site-nav .nav-link.is-active{
    background: rgba(0,0,0,.04);
    color: #0b0c0e;
  }

.nav-backdrop{
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  transition: opacity .25s ease;

  z-index: 55;
}

  body.nav-open .nav-backdrop{
    opacity: 1;
  }

  .hero{
    min-height: 100svh;
  }

  .hero-inner{
    padding: 210px 0 64px;
  }

  .hero-copy{
    max-width: 640px;
  }

  .hero-title{
    font-size: clamp(36px, 8vw, 58px);
    line-height: 1.05;
  }

  .hero-actions{
    gap: 14px;
    flex-wrap: wrap;
  }

  .section{
    padding: 62px 0;
  }

  .section-block{
    margin-top: 48px;
  }

  .about-grid,
  .contact-grid,
  .notice-grid,
  .cards-3{
    grid-template-columns: 1fr;
  }

  .video-card{
    border-radius: 22px;
    padding: 10px;
  }

  .video-wrap{
    border-radius: 20px;
  }

  .footer-top{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .footer-bottom{
    align-items: flex-start;
  }
}


/* Mobile */
@media (max-width: 700px){

  .section{
    padding: 54px 0;
  }

  .section-head{
    margin-bottom: 22px;
  }

  .section h2{
    font-size: clamp(25px, 7vw, 34px);
  }

  .maxw{
    max-width: 100%;
  }

  .mini-cards{
    grid-template-columns: 1fr;
  }

  .btn{
    padding: 12px 22px;
  }

  /* Galeria em mobile: setas sobre a imagem para não roubar largura */
.gallery-wrap{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42px 42px 1fr;
  gap: 12px;
  align-items: center;
}

.gallery-viewport{
  grid-column: 1 / -1;
  grid-row: 1;

  width: 100%;
  border-radius: 18px;
}

.gallery-arrow{
  position: static;

  width: 42px;
  height: 42px;

  background: #fff;
  color: var(--gold);
  border: 1px solid rgba(0,0,0,.10);
  backdrop-filter: none;

  z-index: 5;
}

.gallery-wrap .gallery-prev{
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  transform: none;
}

.gallery-wrap .gallery-next{
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  transform: none;
}

.gallery-wrap .gallery-prev:hover,
.gallery-wrap .gallery-next:hover,
.gallery-wrap .gallery-prev:focus-visible,
.gallery-wrap .gallery-next:focus-visible{
  background: #ffffffcc;
  border-color: rgba(0,0,0,.16);
  transform: none;
}

.gallery-wrap .gallery-prev:active,
.gallery-wrap .gallery-next:active{
  transform: none;
}

.gallery-track{
  gap: 12px;
}

.gallery-card{
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.gallery-btn img{
  height: clamp(220px, 58vw, 320px);
}

  /* Lightbox mais confortável em mobile */
  .lightbox-panel{
    padding: 14px;
  }

  .lightbox-img{
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 140px);
    border-radius: 14px;
  }

  .lightbox-close{
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .lightbox-arrow{
    top: auto;
    bottom: 18px;
    transform: none;
    width: 42px;
    height: 42px;
  }

  .lightbox-prev{
    left: calc(50% - 52px);
  }

  .lightbox-next{
    right: calc(50% - 52px);
  }

  .lightbox-arrow:hover{
    transform: none;
  }

  .lightbox-arrow:active{
    transform: none;
  }

  /* FAQ */
  .faq-item summary{
    padding: 15px 52px 15px 14px;
    line-height: 1.35;
  }

  .faq-item summary::after{
    right: 16px;
  }

  .faq-body{
    padding: 0 14px;
  }

  .faq-body p{
    padding-right: 28px;
    padding-bottom: 15px;
  }

  /* Contactos e mapa */
  .contact-card{
    padding: 16px;
  }

  .pill{
    width: 100%;
  }

  .map iframe{
    min-height: 320px;
  }

  /* Footer */
  .footer-top{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-right{
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .sep{
    padding: 0 5px;
  }

  /* Modais legais */
  .modal{
    padding: 12px;
  }

  .modal-panel{
    width: 100%;
    max-height: calc(100svh - 24px);
    border-radius: 18px;
  }

  .modal-panel h3{
    padding: 18px 58px 15px 18px;
    font-size: 19px;
  }

  .modal-close{
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .modal-panel .legal-content{
    padding: 18px;
    max-height: calc(100svh - 112px);
    font-size: 14.5px;
    line-height: 1.7;
  }

  .modal-panel .legal-content h4{
    font-size: 16px;
    margin: 24px 0 9px;
  }

  .modal-panel.modal-video{
    width: 100%;
    max-height: calc(100svh - 28px);
    padding: 8px;
    border-radius: 18px;
  }

  .video-modal{
    max-height: calc(100svh - 96px);
    border-radius: 14px;
  }

  /* Cookies */
.cookie-banner{
  left: 50%;
  right: auto;
  bottom: 12px;

  width: calc(100% - 24px);

  transform: translateX(-50%) translateY(14px) scale(.98);
}

.cookie-banner.is-visible{
  transform: translateX(-50%) translateY(0) scale(1);
}

  .cookie-banner__inner{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner__actions{
    justify-content: stretch;
  }

  .cookie-banner__actions .btn{
    flex: 1 1 100%;
    width: 100%;
  }

  .cookie-modal{
    padding: 12px;
  }

  .cookie-modal__panel{
    max-height: calc(100svh - 24px);
    border-radius: 18px;
  }

  .cookie-modal__top{
    padding: 16px 16px 12px;
  }

.cookie-modal__body{
  padding: 0 16px 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

  .cookie-modal__bottom{
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-modal__bottom .btn{
    width: 100%;
  }

  .to-top{
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}


/* Telemóveis pequenos */
@media (max-width: 420px){

  :root{
    --header-h: 80px;
    --header-row: 50px;
  }

  .container{
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header{
    padding-top: 14px;
  }

  .hero-inner{
    padding: 128px 0 70px;
  }

  .hero-title{
    font-size: clamp(33px, 10vw, 44px);
  }

  .hero-actions{
    align-items: stretch;
  }

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

  .hero-actions .btn-link{
    width: 100%;
    text-align: center;
  }

  .gallery-btn img{
    height: 220px;
  }

  .map iframe{
    min-height: 290px;
  }

  .footer-bottom-right{
    display: grid;
    gap: 10px;
  }

  .modal-panel .legal-content{
    padding: 16px;
    font-size: 14px;
  }
}
/* =========================================================
   AJUSTES EXTRA — HERO / HEADER MOBILE
   SUBSTITUIR o bloco anterior por este
   ========================================================= */

@media (max-width: 700px){

  :root{
    --header-h: 98px;
  }

  /* Header */
  .site-header{
    height: var(--header-h);
    padding-top: 22px;
  }

  .header-inner{
    align-items: center;
    padding-inline: 6px;
  }

  .brand{
    margin-left: 10px;
    transform: translateY(-5px);
  }

  .brand-logo{
    height: 47px;
  }

  /* Botão do menu: 3 linhas douradas */
  .nav-toggle{
    position: relative;
    width: 44px;
    height: 40px;

    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(8px);
  }

 .nav-toggle{
  position: relative;
  width: 44px;
  height: 40px;

  border: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-toggle::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);

  transform: translate(-50%, -50%);
  box-shadow:
    0 -8px 0 var(--gold),
    0  8px 0 var(--gold);
}

  /* Hero */
  .hero-inner{
    padding: 210px 0 64px;
    align-items: flex-start;
  }

  .hero-copy{
    max-width: 310px;
  }

  .hero-title{
    margin: 0 0 24px;
    font-size: clamp(50px, 11.5vw, 62px);
    line-height: .97;
    max-width: 300px;
  }

  .hero-actions{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 170px;
    max-width: 170px;
  }

  .hero-actions .btn,
  .hero-actions .btn-link{
    width: 170px;
    max-width: 170px;
  }

  .hero-actions .btn{
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    font-size: 13px;
  }

  .hero-actions .btn-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 420px){

  :root{
    --header-h: 102px;
  }

  .site-header{
    height: var(--header-h);
    padding-top: 24px;
  }

  .header-inner{
    padding-inline: 4px;
    
  }

  .brand{
    margin-left: 8px;
    transform: translateY(-7px);
  }

  .brand-logo{
    height: 45px;
  }

  .hero-inner{
    padding: 190px 0 60px;
  }

  .hero-copy{
    max-width: 285px;
  }

  .hero-title{
    margin: 0 0 22px;
    font-size: clamp(48px, 12vw, 56px);
    line-height: .95;
    max-width: 270px;
  }

  .hero-actions{
    gap: 8px;
    width: 160px;
    max-width: 160px;
  }

  .hero-actions .btn,
  .hero-actions .btn-link{
    width: 160px;
    max-width: 160px;
  }

  .hero-actions .btn{
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero-actions .btn-link{
    font-size: 13px;
  }
}

/* Fundo uniforme com blur no menu mobile */
@media (max-width: 980px){

  main,
  .site-footer,
  .to-top,
  .cookie-banner{
    filter: none !important;
    transform: none !important;
  }

  .nav-backdrop{
    display: none !important;
  }

  body.nav-open::before{
    content: "";
    position: fixed;

    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(11,12,14,.42);

   backdrop-filter: blur(12px) saturate(.95) brightness(.88);
-webkit-backdrop-filter: blur(12px) saturate(.95) brightness(.88);

    z-index: 55;
    pointer-events: auto;

    opacity: 1;
  }

  .site-header{
    z-index: 70;
  }

  .site-nav{
    z-index: 80;
  }

  .nav-toggle{
    z-index: 85;
  }
}
/* Remover borders/separadores do conteúdo em mobile, mantendo o footer */
@media (max-width: 700px){

  .site-header{
    border-bottom: 0;
  }

  .mini-card,
  .video-card,
  .video-wrap,
  .card,
  .notice,
  .gallery-item,
  .faq,
  .contact-card,
  .pill,
  .map{
    border-color: transparent;
  }

  .faq-item{
    border-bottom-color: transparent;
  }

  .gallery-btn{
    outline: 0;
  }

  .site-footer{
    border-top: 1px solid rgba(0,0,0,.10);
  }

  .footer-bottom{
    border-top: 1px solid rgba(0,0,0,.10);
  }
}

.cookie-banner{
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: 18px !important;

  width: min(var(--container), calc(100% - 40px)) !important;
  max-width: var(--container) !important;

  opacity: 0;
  transform: translateX(-50%) translateY(14px) scale(.98) !important;
  pointer-events: none;

  z-index: 120;
}

.cookie-banner.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1) !important;
  pointer-events: auto;
}

/* Mobile */
@media (max-width: 700px){
  .cookie-banner{
    left: 50% !important;
    right: auto !important;
    bottom: 12px !important;

    width: calc(100% - 24px) !important;
    max-width: none !important;

    transform: translateX(-50%) translateY(14px) scale(.98) !important;
  }

  .cookie-banner.is-visible{
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }
}

html,
body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.site-header,
main,
.hero,
.section,
.site-footer{
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 700px){
  .hero,
  .hero-bg,
  .hero-inner,
  .container{
    max-width: 100%;
    overflow-x: hidden;
  }
}