/* ===== Variáveis ===== */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #181818;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-deep: #b8860b;
  --cream: #f5f1e8;
  --grey: #9a9a9a;
  --border: rgba(212, 175, 55, 0.18);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', Helvetica, Arial, sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--serif); margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--grey); }
svg { width: 1em; height: 1em; fill: currentColor; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8em;
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color: #0a0a0a;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); }
.btn--outline {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--outline:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }
.btn--small { padding: 9px 20px; font-size: 0.82rem; }

.link-arrow {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.link-arrow:hover { border-color: var(--gold); }

/* ===== Fade-in on scroll ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
}
.brand__name strong { color: var(--gold); }

.nav__list {
  display: flex;
  gap: 32px;
}
.nav__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav__list a:hover::after { width: 100%; }

.header__cta { white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.9) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 120px;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--cream);
  font-weight: 700;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #cfcfcf;
  max-width: 580px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 1.5em;
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollCue 1.6s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ===== Stats ===== */
.stats {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--grey);
  letter-spacing: 0.5px;
}

/* ===== Sections genéricas ===== */
section { padding: 110px 0; }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--cream); }
.section-head__desc { margin-top: 0.5em; }

/* ===== Sobre ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.about__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--cream); }

/* ===== Serviços ===== */
.services { background: var(--black-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.service-card h3 { font-size: 1.15rem; color: var(--cream); }
.service-card p { margin: 0; font-size: 0.92rem; }

.services__cta {
  text-align: center;
  margin-top: 56px;
}
.services__cta p { color: var(--grey); margin-bottom: 1em; }

/* ===== Galeria ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* ===== Depoimentos ===== */
.testimonials { background: var(--black-soft); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.testimonial__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { color: var(--cream); font-style: italic; }
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.testimonial__author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.testimonial__author strong { display: block; color: var(--cream); font-size: 0.92rem; }
.testimonial__author span { color: var(--grey); font-size: 0.8rem; }

/* ===== Imprensa ===== */
.press { padding: 64px 0; }
.press__label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 32px;
}
.press__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.85;
}
.press__grid img { height: 32px; width: auto; }

/* ===== Contactos ===== */
.contact { background: var(--black-soft); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__text h2, .contact h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--cream); }
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
}
.contact__icon {
  width: 1.2em; height: 1.2em;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact__list a:hover { color: var(--gold-light); }

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.hours td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--grey);
}
.hours td:first-child { color: var(--cream); font-weight: 500; }
.hours td:last-child { text-align: right; }

.social { display: flex; gap: 14px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s ease, transform 0.25s ease;
}
.social a svg { width: 18px; height: 18px; fill: currentColor; }
.social a:hover { background: var(--gold); color: #0a0a0a; transform: translateY(-2px); }

.contact__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: invert(100%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.88rem; color: var(--grey); }
.footer__nav a:hover { color: var(--gold-light); }
.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: #6b6b6b;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: rgba(10,10,10,0.97); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform 0.35s ease;
    display: flex; align-items: center; border-left: 1px solid var(--border); z-index: 99; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 28px; width: 100%; text-align: center; }
  .nav__list a { font-size: 1.1rem; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 360px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .press__grid { gap: 32px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}
