:root {
  --primary: #b8923f;
  --primary-dark: #92722a;
  --primary-light: #f5ecd7;
  --accent: #d4a853;
  --dark: #2c2416;
  --text: #4a4438;
  --muted: #7a7264;
  --bg: #faf8f3;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 20px 50px rgba(184, 146, 63, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.8; }
h1, h2, h3, h5 { font-family: 'Cormorant Garamond', serif; color: var(--dark); line-height: 1.2; font-weight: 600; }

.navbar { padding: 1.25rem 0; transition: all 0.4s; background: transparent; }
.navbar.scrolled { background: rgba(250,248,243,0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.04); }
.navbar-brand { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.75rem; color: var(--dark) !important; letter-spacing: 1px; }
.navbar-brand span { color: var(--primary); font-style: italic; }
.nav-link { font-weight: 500; color: var(--text) !important; margin: 0 0.5rem; letter-spacing: 0.5px; font-size: 0.9rem; text-transform: uppercase; }
.nav-link:hover { color: var(--primary) !important; }

.btn-accent { background: var(--dark); border: none; color: var(--primary-light); padding: 0.75rem 2rem; border-radius: 4px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; transition: all 0.3s; }
.btn-accent:hover { background: var(--primary-dark); color: white; transform: translateY(-2px); }
.btn-outline-accent { border: 1px solid var(--dark); color: var(--dark); padding: 0.75rem 2rem; border-radius: 4px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; background: transparent; }
.btn-outline-accent:hover { background: var(--dark); color: white; }

.hero { min-height: 100vh; display: flex; align-items: center; padding: 110px 0 60px; background: var(--bg); }
.hero-badge { display: inline-block; border: 1px solid var(--primary); color: var(--primary-dark); padding: 0.4rem 1.2rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; font-weight: 500; }
.hero h1 span { color: var(--primary); font-style: italic; }
.hero-text { color: var(--muted); font-size: 1.05rem; max-width: 460px; margin-bottom: 2.5rem; }
.hero-img { border-radius: var(--radius); width: 100%; height: 500px; object-fit: cover; }
.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(184,146,63,0.2); }
.hero-stats strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--primary); font-weight: 600; }
.hero-stats span { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

section { padding: 100px 0; }
.section-tag { display: inline-block; color: var(--primary); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.5rem; font-weight: 500; }

.service-card { background: white; border: 1px solid rgba(184,146,63,0.15); border-radius: var(--radius); padding: 2.5rem 2rem; height: 100%; transition: all 0.4s; text-align: center; }
.service-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.service-icon { width: 48px; height: 48px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); border: 1px solid var(--primary-light); border-radius: 50%; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

.about { background: white; }
.about-img { border-radius: var(--radius); width: 100%; height: 440px; object-fit: cover; }
.about-list { list-style: none; margin-top: 2rem; }
.about-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(184,146,63,0.1); }
.about-list i { color: var(--primary); }

.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item strong { color: var(--dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-icon { width: 44px; height: 44px; border: 1px solid var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.contact-form { background: var(--bg); border: 1px solid rgba(184,146,63,0.15); border-radius: var(--radius); padding: 2.5rem; }
.form-control, .form-select { border: 1px solid rgba(184,146,63,0.25); border-radius: 4px; padding: 0.85rem 1rem; background: white; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: none; }

footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
footer h5 { font-family: 'Cormorant Garamond', serif; color: var(--primary-light); font-size: 1.25rem; margin-bottom: 1rem; }
footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
footer a:hover { color: var(--accent); }
footer hr { border-color: rgba(255,255,255,0.08); margin: 2.5rem 0 1.5rem; }

#contato { background: var(--bg); }
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .hero-img { height: 360px; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .navbar-collapse { background: var(--bg); padding: 1rem; margin-top: 0.75rem; border: 1px solid rgba(184,146,63,0.15); }
}
@media (max-width: 576px) {
  section { padding: 70px 0; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
