:root {
  --gold: #b8923f;
  --gold-light: #d4a853;
  --gold-dark: #96752e;
  --cream: #faf6ef;
  --cream-dark: #f0e8d8;
  --brown: #3d2e1f;
  --brown-light: #5c4a35;
  --text: #4a4035;
  --muted: #7a6f60;
  --white: #fffcf7;
  --border: rgba(184,146,63,0.2);
  --shadow: 0 16px 48px rgba(61,46,31,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); line-height: 1.75; }
h1, h2, h3, h5 { font-family: 'Cormorant Garamond', serif; color: var(--brown); line-height: 1.15; font-weight: 700; }

.navbar { padding: 1.1rem 0; transition: all 0.4s; background: transparent; border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(250,246,239,0.97); backdrop-filter: blur(10px); border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(61,46,31,0.06); }
.navbar-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 700; color: var(--brown) !important; letter-spacing: 0.5px; }
.navbar-brand span { color: var(--gold); font-style: italic; }
.nav-link { color: var(--text) !important; font-weight: 500; margin: 0 0.4rem; }
.nav-link:hover { color: var(--gold-dark) !important; }
.navbar-toggler { border-color: var(--border); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(184,146,63,0.15); }

.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); border: none; padding: 0.7rem 1.75rem; font-weight: 700; letter-spacing: 0.5px; transition: all 0.3s; box-shadow: 0 6px 20px rgba(184,146,63,0.25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,146,63,0.35); color: var(--white); }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold-dark); padding: 0.7rem 1.75rem; font-weight: 600; background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; position: relative; }
.hero-frame { position: absolute; top: 80px; right: 5%; width: 45%; height: 70%; border: 2px solid var(--gold); opacity: 0.25; pointer-events: none; }
.hero-est { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold-dark); }
.hero-text { color: var(--muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 2rem; }
.hero-img { border: 4px solid var(--white); box-shadow: var(--shadow); width: 100%; height: 480px; object-fit: cover; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.hero-stats strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: var(--gold-dark); }
.hero-stats span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

section { padding: 90px 0; }
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }

.service-card { background: var(--white); border: 1px solid var(--border); padding: 2rem 1.5rem; height: 100%; transition: all 0.35s; text-align: center; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.service-icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--gold); background: var(--cream); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; color: var(--muted); }

.about { background: var(--cream-dark); }
.about p { color: var(--muted); }
.about-img { width: 100%; height: 420px; object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow); }
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.45rem 0; }
.about-list i { color: var(--gold); margin-top: 0.2rem; }

.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item strong { color: var(--brown); font-size: 0.9rem; }
.contact-icon { width: 44px; height: 44px; border: 1px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-form { background: var(--white); border: 1px solid var(--border); padding: 2rem; box-shadow: var(--shadow); }
.form-control, .form-select { border: 1px solid var(--border); border-radius: 0; padding: 0.85rem 1rem; background: var(--cream); color: var(--text); }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,63,0.12); background: var(--white); }

footer { background: var(--brown); color: rgba(255,252,247,0.75); padding: 3.5rem 0 2rem; }
footer h5 { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; margin-bottom: 1rem; }
footer ul li { margin-bottom: 0.5rem; }
footer p { font-size: 0.95rem; }
footer a { color: rgba(255,252,247,0.75); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
footer hr { border-color: rgba(212,168,83,0.2); margin: 2rem 0 1.5rem; }

#contato { background: var(--white); border-top: 1px solid var(--border); }

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.text-center .section-title::after { margin-left: auto; margin-right: auto; }
#sobre .section-title::after { margin-left: 0; }

::selection { background: var(--cream-dark); color: var(--brown); }

.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .hero-frame { display: none; }
  .hero-img { height: 340px; }
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  .navbar-collapse { background: var(--white); padding: 1rem; margin-top: 0.75rem; border: 1px solid var(--border); }
}

@media (max-width: 576px) {
  section { padding: 70px 0; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .contact-form { padding: 1.5rem; }
  .about-img { height: 300px; }
}
