/* ============ VARIÁVEIS ============ */
:root {
  --black: #141212;
  --black-soft: #1e1c1c;
  --gold: #c9a24d;
  --gold-light: #e4c98a;
  --cream: #faf6f0;
  --cream-dark: #f0e9df;
  --text-dark: #2a2624;
  --text-muted: #6b625a;
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 4px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--black);
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn--nav {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--gold-light); }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(20, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
}
.logo span { color: var(--gold); font-weight: 500; }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    url('https://images.pexels.com/photos/6218312/pexels-photo-6218312.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(20,18,18,0.92) 0%, rgba(30,27,25,0.85) 45%, rgba(40,33,26,0.8) 100%),
    radial-gradient(circle at 80% 20%, rgba(201,162,77,0.22), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(201,162,77,0.14), transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 90px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold-light); }

.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 20px;
  border: 1px solid rgba(201,162,77,0.4);
  border-radius: 999px;
  background: rgba(201,162,77,0.08);
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-down span {
  display: block;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}
.scroll-down span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  70% { top: 20px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ============ PLACEHOLDER IMAGES ============ */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, var(--cream-dark), #e2d5c0);
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.img-placeholder--round {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  min-height: unset;
  margin: 0 auto 20px;
}

/* ============ SOBRE ============ */
.sobre {
  padding: 110px 0;
  background: var(--cream);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.sobre__img { min-height: 420px; }
.sobre__img .img-placeholder { min-height: 420px; }

.sobre__text h2 { margin-bottom: 20px; color: var(--black); }
.sobre__text p { color: var(--text-muted); margin-bottom: 16px; }

.sobre__list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.sobre__list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.sobre__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============ SERVIÇOS ============ */
.servicos {
  padding: 110px 0;
  background: var(--black);
}
.servicos .eyebrow { color: var(--gold-light); }
.servicos .section-title { color: var(--white); }
.servicos .section-subtitle { color: rgba(255,255,255,0.6); }

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.card {
  flex: 1 1 320px;
  max-width: 360px;
  background: var(--black-soft);
  border: 1px solid rgba(201,162,77,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.card__icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.card__price {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  width: 100%;
  transition: var(--transition);
}
.card__price:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ============ GALERIA ============ */
.galeria { padding: 110px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item .img-placeholder { min-height: 240px; }

/* ============ DEPOIMENTOS ============ */
.depoimentos { padding: 110px 0; background: var(--cream-dark); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}
.testimonial p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.testimonial__name {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}
.testimonial-note {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============ EQUIPE ============ */
.equipe { padding: 110px 0; background: var(--cream); }
.team-grid {
  display: flex;
  justify-content: center;
}
.team-card { text-align: center; max-width: 260px; }
.team-card h3 { color: var(--black); margin-bottom: 6px; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ============ CONTATO ============ */
.contato { padding: 110px 0; background: var(--black); }
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contato__info .eyebrow { color: var(--gold-light); }
.contato__info h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.contato__text {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.contato__list {
  display: grid;
  gap: 22px;
  margin-bottom: 36px;
}
.contato__list li {
  display: grid;
  gap: 4px;
}
.contato__list strong {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contato__list span, .contato__list a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.contato__list a:hover { color: var(--gold-light); }

.contato__map {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,77,0.25);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black-soft);
  padding: 40px 0;
  border-top: 1px solid rgba(201,162,77,0.15);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.logo--footer { font-size: 1.1rem; }
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.footer__social a:hover { color: var(--gold-light); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .sobre__grid, .contato__grid { grid-template-columns: 1fr; }
  .gallery-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contato__map { min-height: 300px; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s ease;
  }
  .nav.open { right: 0; }
  .nav-toggle { display: flex; }
  .btn--nav { display: none; }

  .gallery-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .card { flex-basis: 100%; }

  .header__inner { padding: 16px 20px; }
}
