:root{
  --gold:#d4a853;
  --gold2:#c49943;
  --dark:#0a0a0a;
  --soft:#f4f5f7;
  --radius:18px;
  --shadow:0 18px 40px rgba(0,0,0,.18);
  --container:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
  background:#fff;
  line-height:1.55;
}
img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:min(var(--container), 92vw);
  margin:0 auto;
}

.center{text-align:center}
.mt-32{margin-top:32px}
.gold{color:var(--gold)}
.muted{color:#667085}

/* Header */
.header{
  position:fixed; inset:0 0 auto 0;
  z-index:50;
  padding:16px 0;
  transition:background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
  background:transparent;
}
.header.is-solid{
  background:rgba(10,10,10,.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand__logo{
  height: 84px;
  width: auto;
}

@media (max-width: 980px){
  .brand__logo{ height: 400px; }
}

@media (max-width: 520px){
  .brand__logo{ height: 56px; }
}

.nav{display:flex; gap:22px; align-items:center}
.nav__link{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:color .2s ease;
  padding:12px 0;
}
.nav__link:hover{color:#fff}
.nav__link:first-child{color:var(--gold)}

.header__actions{display:flex; align-items:center; gap:12px}
.phone{
  display:flex; align-items:center; gap:8px;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-size:14px;
}
.phone:hover{color:#fff}
.phone__icon{font-size:14px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:12px;
  padding:12px 16px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease;
  cursor:pointer;
  min-height:44px;
}
.btn--lg{padding:16px 22px; border-radius:14px; font-size:16px}
.btn--gold{background:var(--gold); color:#000}
.btn--gold:hover{background:var(--gold2); transform:translateY(-1px)}
.btn--dark{background:var(--dark); color:#fff}
.btn--dark:hover{background:#1a1a1a; transform:translateY(-1px)}
.btn--ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.28);
}
.btn--ghost:hover{background:rgba(255,255,255,.08)}
.btn--outline{
  background:#fff;
  color:#111;
  border-color:#111;
}
.btn--outline:hover{background:#111; color:#fff; transform:translateY(-1px)}

/* Burger */
.burger{
  width:42px; height:42px;
  border:none; background:transparent;
  display:none;
  border-radius:12px;
}
.burger span{
  display:block;
  width:22px; height:2px;
  background:#fff;
  margin:5px auto;
  border-radius:2px;
}

/* Mobile menu (dropdown suave) */
.mobile{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  display:none;
}
.mobile.is-open{display:block}
.mobile__panel{
  width:min(520px, 92vw);
  margin:12px auto 0;
  background:#0f0f0f;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile__link{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:12px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
}
.mobile__link:hover{background:rgba(255,255,255,.08)}
.mobile__cta{margin-top:8px}

/* Hero */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  background:var(--dark);
  padding-top:84px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.95), rgba(10,10,10,.85), rgba(10,10,10,.2)),
    center/cover no-repeat;
  opacity:.95;
}
.hero__content{
  position:relative;
  z-index:1;
  max-width:720px;
  padding:56px 0 84px;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(212,168,83,.10);
  border:1px solid rgba(212,168,83,.28);
  color:var(--gold);
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  margin-bottom:18px;
}
.pill__dot{
  width:9px; height:9px; border-radius:99px;
  background:var(--gold);
  box-shadow: 0 0 0 6px rgba(212,168,83,.12);
  animation:pulse 1.4s infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.12)}
}

.hero h1{
  color:#fff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.08;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.hero p{
  color:rgba(255,255,255,.76);
  font-size: clamp(16px, 1.7vw, 20px);
  margin:0 0 22px;
  max-width:60ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.hero__fade{
  position:absolute; inset:auto 0 0 0;
  height:90px;
  background:linear-gradient(to top, #fff, transparent);
  z-index:2;
}

/* Sections */
.section{padding:86px 0}
.section--white{background:#fff}
.section--dark{background:var(--dark); color:#fff}
.section--soft{background:var(--soft)}
.eyebrow{
  display:inline-block;
  color:var(--gold);
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}
.section h2{
  margin:10px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing:-.02em;
}

/* Chips */
.chips{
  display:flex; flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:18px;
}
.chip{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(10,10,10,.06);
  font-weight:700;
  font-size:13px;
}

/* ===== DIFERENCIAIS: GRID + LISTA + IMAGEM (AJUSTADO) ===== */
.grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;          /* <-- centraliza imagem com os botões */
}

/* Lista */
.bullets{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}
.bullets li{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:18px 18px;
  border-radius:14px;
  font-weight:700;
}

/* Card da imagem (tamanho travado e proporcional) */
.cardimg{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);

  width:100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;

  justify-self:end;            /* <-- mais estável que margin-left:auto */
}

.cardimg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.badge-years{
  position:absolute;
  left:16px; bottom:16px;
  background:var(--gold);
  color:#000;
  padding:14px 16px;
  border-radius:16px;
  font-weight:900;
  display:grid;
  gap:2px;
  width:max-content;
}
.badge-years strong{font-size:34px; line-height:1}
.badge-years span{font-size:12px; font-weight:800}

/* Services cards */
.cards{
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(212,168,83,.35);
}
.card__icon{
  width:52px; height:52px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(212,168,83,.10);
  font-size:22px;
  margin-bottom:14px;
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:#5b6572}

/* Gallery */
.gallery{
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.shot{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  text-decoration:none;
  color:#fff;
}
.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .45s ease;
}
.shot::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  opacity:0;
  transition: opacity .25s ease;
}
.shot:hover img{transform:scale(1.08)}
.shot:hover::after{opacity:1}
.shot__label{
  position:absolute; left:16px; bottom:14px;
  z-index:1;
  font-weight:900;
  opacity:0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.shot:hover .shot__label{opacity:1; transform: translateY(0)}

/* CTA */
.cta{
  padding:86px 0;
  background:var(--gold);
  color:#000;
}
.cta p{opacity:.82; font-size:18px; margin:10px auto 18px; max-width:70ch}
.contactline{
  margin-top:14px;
  display:flex; gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  font-weight:800;
}
.contactline a{color:#000; text-decoration:none}
.contactline a:hover{text-decoration:underline}

/* Footer */
.footer{
  background:var(--dark);
  color:#fff;
  padding:70px 0 24px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:22px;
  align-items:start;
}
.footer__logo{height:66px}
.footer__text{color:rgba(255,255,255,.68); max-width:50ch}
.footer h4{margin:0 0 12px}
.footer a{
  display:block;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  margin:8px 0;
}
.footer a:hover{color:var(--gold)}
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:28px;
  padding-top:18px;
  color:rgba(255,255,255,.55);
  font-size:13px;
}

/* Política de Privacidade */
.legal{
  max-width:900px;
  margin:auto;
}
.legal__title{
  margin-bottom:6px;
  font-size: clamp(26px, 3vw, 36px);
  text-align:center;
}
.legal__updated{
  text-align:center;
  margin-bottom:28px;
  color:#667085;
}
.legal__card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:32px;
  box-shadow:0 15px 35px rgba(0,0,0,.05);
}
.legal__card h3{
  margin-top:22px;
  font-size:18px;
}
.legal__card p{color:#303843}
.legal__actions{
  margin-top:30px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 110px; }

/* Link "Privacidade" como botão, sem cara de botão */
.nav__link--btn{
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 12px 0;
}

/* Link ativo no menu */
.nav__link.is-active{
  color: var(--gold) !important;
}

/* Footer link button */
.footer__linkbtn{
  display:block;
  margin: 8px 0;
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.footer__linkbtn:hover{ color: var(--gold); }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.modal.is-open{ display: block; }

.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.58);
}

.modal__panel{
  position: relative;
  width: min(760px, 92vw);
  max-height: min(78vh, 720px);
  overflow: hidden;
  margin: 10vh auto 0;
  background: #0f0f0f;
  color: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
}

.modal__head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.modal__head h3{ margin:0; font-size: 16px; letter-spacing: -.01em; }

.modal__close{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}
.modal__close:hover{ background: rgba(255,255,255,.10); }

.modal__body{
  padding: 16px;
  overflow: auto;
}
.modal__body h4{
  margin: 18px 0 8px;
  font-size: 14px;
  color: var(--gold);
}
.modal__body p, .modal__body a{ color: rgba(255,255,255,.78); }
.modal__body a:hover{ color: #fff; }

.modal__foot{
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:flex-end;
}

/* WhatsApp floating */
.wpp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  z-index:60;
  transition:transform .2s ease, box-shadow .2s ease;
}
.wpp svg{ width:28px; height:28px; }
.wpp:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 50px rgba(0,0,0,.35);
}

/* ===== RESPONSIVO GERAL ===== */
@media (max-width: 980px){
  .nav{display:none}
  .burger{display:block}
  .phone{display:none}

  .grid2{
    grid-template-columns: 1fr;
    align-items:start;
  }
  .cardimg{
    max-width:100%;
    justify-self:stretch;
    aspect-ratio: 16 / 9;
  }

  .cards{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns:1fr}

  .brand__logo{height:56px}
}

@media (max-width: 520px){
  .hero{min-height:82vh; padding-top:78px;}
  .hero__content{padding:36px 0 70px;}
  .hero__actions .btn{width:100%; justify-content:center;}
  .cards{grid-template-columns:1fr}

  .wpp{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
  }
}
.pill{ display:none; }
/* FORÇAR tamanho da logo (teste) */
.header .brand__logo{
  height: 120px !important;
  width: auto !important;
}
/* ===== Footer: evitar cortar texto no celular ===== */
.footer__grid{
  gap: 22px;
}

.footer a{
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* Mobile: footer em coluna */
@media (max-width: 520px){
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}