
:root {
    --paper: #FAFAFA;
    --ink: #1E1E1E;
    --muted: #666666;
    --accent: #8C6A3F;
    --accent-hover: #73552F;
    --rule: #EAEAEA;
    --bg-alt: #F2F2F2;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--paper); color: var(--ink); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1.5rem; }

h1, h2, h3, .logo { font-family: var(--font-heading); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; color: var(--ink); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.85rem; color: var(--accent); margin-bottom: 1rem; font-weight: 700; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-weight: 500; text-decoration: none; border-radius: 4px; transition: all 0.2s; cursor: pointer; }
.btn-primary { background-color: var(--accent); color: #FFF; }
.btn-primary:hover { background-color: var(--accent-hover); }
.btn-secondary { background-color: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background-color: var(--ink); color: #FFF; }

.header { position: fixed; top: 0; width: 100%; background-color: rgba(250, 250, 250, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--rule); z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.8rem; color: var(--ink); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; }
.nav-links a:hover { color: var(--accent); }

.hero { padding-top: 180px; padding-bottom: 100px; min-height: 70vh; display: flex; align-items: center; }
.hero-desc { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre { padding: 100px 0; }
.sobre p { margin-bottom: 1rem; font-size: 1.05rem; }
.sobre-img-placeholder { background: var(--bg-alt); height: 400px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--rule); border-radius: 8px; }
.logo-large { font-family: var(--font-heading); font-size: 4rem; color: #DDD; }

.bg-alt { background-color: var(--bg-alt); }
.diferenciais { padding: 100px 0; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.card { background: #FFF; padding: 2rem; border-radius: 8px; border: 1px solid var(--rule); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card h3 { font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 1rem; color: var(--accent); font-weight: 700; }
.card p { color: var(--muted); font-size: 0.95rem; }

.servicos { padding: 100px 0; }
.tags-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 900px; margin: 0 auto; }
.tag { padding: 12px 24px; background: var(--bg-alt); border: 1px solid var(--rule); border-radius: 4px; font-weight: 500; color: var(--ink); }

.local { padding: 100px 0; }
.unidade-card { padding: 1.5rem; background: var(--bg-alt); border-radius: 8px; border-left: 4px solid var(--accent); }
.unidade-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.horarios { margin-top: 2rem; background: #FFF; padding: 2rem; border-radius: 8px; border: 1px solid var(--rule); }
.horarios ul { list-style: none; margin-top: 1rem; }
.horarios li { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--rule); color: var(--muted); }
.horarios li:last-child { border-bottom: none; }
.horarios span:first-child { font-weight: 500; color: var(--ink); }
.local-map { height: 100%; min-height: 400px; background: #EEE; border-radius: 8px; overflow: hidden; }

.footer { background-color: #111; color: #888; padding: 60px 0; text-align: center; }
.footer-logo { font-size: 2rem; color: #FFF; margin-bottom: 1rem; }
.footer-links { margin: 1.5rem 0; }
.footer-links a, .footer p a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer p a:hover { color: #FFF; }
.copy { font-size: 0.9rem; margin-top: 2rem; border-top: 1px solid #333; padding-top: 1.5rem; }

.fab-whatsapp { position: fixed; bottom: 24px; right: 24px; background-color: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 999; opacity: 0; pointer-events: none; transition: all 0.3s; }
.fab-whatsapp.visible { opacity: 1; pointer-events: auto; }
.fab-whatsapp:hover { transform: scale(1.1); }

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero { padding-top: 140px; }
}
