/* Base visual da marca */
:root {
  --ink: #050505;
  --black: #000000;
  --panel: #151516;
  --panel-soft: #232426;
  --gold: #f4df21;
  --gold-dark: #c9a90d;
  --silver: #b8b8b5;
  --paper: #f3f0e6;
  --muted: #bbb8ad;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.section-inner,
.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 82px 0;
}

/* Cabeçalho */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background: var(--black);
  border-bottom: 2px solid rgba(244, 223, 33, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
}

.brand-logo {
  width: 148px;
  height: 76px;
  object-fit: contain;
  background: var(--black);
}

.brand-name {
  display: block;
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(244, 223, 33, 0.08);
}

/* Primeira dobra */
.hero {
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 178px 0 84px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 44%, rgba(5, 5, 5, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.94) 100%),
    url("../assets/fachada-nica.jpg") center center / cover no-repeat;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.12),
    0 22px 45px rgba(0, 0, 0, 0.6);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: #efe7d9;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.primary {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 28px rgba(244, 223, 33, 0.2);
}

.button.whatsapp {
  background: rgba(5, 5, 5, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Conteúdo */
.about {
  color: var(--ink);
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.section-label {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  color: #4b453e;
  font-size: 1.08rem;
}

.photo-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.services {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 1)),
    var(--ink);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 170px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.service-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contato */
.callout {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.callout .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.callout h2 {
  max-width: 700px;
  margin-bottom: 10px;
}

.callout p {
  margin-bottom: 0;
  color: rgba(5, 5, 5, 0.78);
}

.callout .button {
  color: var(--ink);
  border-color: rgba(5, 5, 5, 0.34);
}

.callout .button.whatsapp {
  background: rgba(5, 5, 5, 0.08);
}

.contact {
  background: #101011;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 30px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-item {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  color: var(--white);
  font-size: 1.08rem;
}

.map-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map {
  overflow: hidden;
  min-height: 450px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  filter: saturate(0.92) contrast(1.04);
}

footer {
  padding: 24px 0;
  color: var(--muted);
  background: var(--black);
  font-size: 0.9rem;
}

footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* Ajustes para tablets e celulares */
@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .brand-logo {
    width: 126px;
    height: 64px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .nav-links a {
    padding: 9px 10px;
  }

  .hero {
    min-height: 86svh;
    padding: 184px 0 56px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.95)),
      url("../assets/fachada-nica.jpg") center top / cover no-repeat;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .callout .section-inner,
  footer .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 62px 0;
  }
}

@media (max-width: 520px) {
  .section-inner,
  .hero-inner,
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    position: sticky;
  }

  .brand-logo {
    width: 118px;
    height: 58px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 56px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 24px;
  }

  .map,
  .map iframe {
    min-height: 360px;
  }
}
