:root {
    --bg: #1a1616;           /* Marrom Mogno Escuro */
    --surface: #241f1f;      /* Cinza Pedra Escuro */
    --accent: #4a1010;       /* Vinho Nobre */
    --stone: #d1ccc0;        /* Tom de papiro/pedra */
    --white: #ffffff;
    --text-muted: #a09a8e;
    --success: #25d366;      /* WhatsApp Green */
}

/* RESET E BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* TIPOGRAFIA */
h1, h2, h3, h4 { font-family: 'Prata', serif; font-weight: 400; }
.tag { 
    color: var(--stone); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.7rem; 
    font-weight: 700; 
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

/* WHATSAPP FLUTUANTE */
.wpp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--success); color: white;
    width: 65px; height: 65px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; text-decoration: none; z-index: 1000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: 0.4s;
}
.wpp-float:hover { transform: scale(1.1) rotate(10deg); }
.wpp-tooltip {
    position: absolute; right: 80px; background: var(--white);
    color: var(--bg); font-size: 0.75rem; padding: 5px 15px;
    border-radius: 20px; font-weight: 700; white-space: nowrap;
    opacity: 0; transition: 0.3s; pointer-events: none;
}
.wpp-float:hover .wpp-tooltip { opacity: 1; right: 75px; }

/* NAVBAR */
.navbar {
    background: rgba(26, 22, 22, 0.98);
    padding: 15px 0;
    position: sticky; top: 0; z-index: 999;
    border-bottom: 1px solid rgba(209, 204, 192, 0.1);
    backdrop-filter: blur(10px);
}
.nav-box { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.symbol { background: var(--accent); color: var(--white); padding: 8px 12px; font-family: 'Prata', serif; font-weight: bold; font-size: 1.2rem; }
.logo .text { font-size: 0.8rem; letter-spacing: 3px; font-weight: 600; color: var(--stone); line-height: 1.1; }
.logo small { font-size: 0.55rem; letter-spacing: 1px; color: var(--text-muted); }

.main-menu ul { list-style: none; display: flex; align-items: center; gap: 30px; }
.main-menu a { text-decoration: none; color: var(--white); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.main-menu a:hover { color: var(--stone); }
.btn-cta { background: var(--stone) !important; color: var(--bg) !important; padding: 12px 25px !important; border-radius: 2px; }

/* HERO SECTION */
.hero { padding: 80px 0; min-height: 85vh; display: flex; align-items: center; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 4rem; margin: 15px 0; line-height: 1.1; }
.hero-text h1 span { color: var(--stone); font-style: italic; }
.hero-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }

.btn-main {
    background: var(--accent); color: var(--white);
    padding: 22px 40px; text-decoration: none; font-weight: 700;
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px;
    border-radius: 2px; transition: 0.3s; display: inline-block;
    box-shadow: 0 15px 35px rgba(74, 16, 16, 0.4);
}
.btn-main:hover { transform: translateY(-3px); filter: brightness(1.2); }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0px rgba(74, 16, 16, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(74, 16, 16, 0); }
    100% { box-shadow: 0 0 0 0px rgba(74, 16, 16, 0); }
}

.hero-img img { width: 100%; border-radius: 4px; box-shadow: 40px -40px 0px var(--surface); filter: grayscale(0.2); transition: 0.5s; }
.hero-img img:hover { filter: grayscale(0); transform: scale(1.02); }

/* ABOUT SECTION */
.about { padding: 100px 0; background: var(--surface); }
.about-flex { display: flex; gap: 80px; align-items: center; }
.about-info h2 { font-size: 2.8rem; margin-bottom: 25px; line-height: 1.2; }
.features { list-style: none; margin: 30px 0; }
.features li { margin-bottom: 15px; color: var(--stone); font-size: 1rem; display: flex; align-items: center; }
.features i { color: var(--accent); margin-right: 15px; font-size: 1.2rem; }
.btn-simple { color: var(--stone); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.about-stats { display: flex; flex-direction: column; gap: 30px; }
.stat-card { background: var(--bg); padding: 40px; border-left: 5px solid var(--accent); width: 280px; transition: 0.3s; }
.stat-card:hover { transform: translateX(10px); }
.stat-card strong { font-size: 2.5rem; display: block; color: var(--stone); margin-bottom: 5px; }
.stat-card span { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }

/* AREAS SECTION */
.areas { padding: 120px 0; }
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 3rem; margin-top: 10px; }

.grid-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.item-area { background: var(--surface); padding: 50px; border-radius: 4px; transition: 0.4s; border-bottom: 2px solid transparent; }
.item-area:hover { transform: translateY(-15px); background: #2d2828; border-color: var(--accent); }
.area-icon { font-size: 3rem; color: var(--accent); margin-bottom: 25px; }
.item-area h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--stone); }
.item-area p { color: var(--text-muted); font-size: 1rem; margin-bottom: 30px; }
.area-cta { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }

/* FAQ */
.faq-section { padding: 100px 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.faq-item { background: var(--surface); padding: 30px; border-radius: 4px; }
.faq-item h4 { color: var(--stone); margin-bottom: 12px; font-size: 1.1rem; }
.faq-item p { color: var(--text-muted); font-size: 0.9rem; }

/* LOCALIZAÇÃO */
.local-section { padding: 100px 0; background: var(--surface); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nap { margin: 30px 0; }
.nap p { margin-bottom: 15px; font-size: 1rem; color: var(--text-muted); }
.nap i { color: var(--accent); margin-right: 12px; width: 20px; }
.btn-maps { border: 1px solid var(--stone); color: var(--stone); padding: 12px 30px; text-decoration: none; display: inline-block; font-size: 0.8rem; text-transform: uppercase; font-weight: 700; transition: 0.3s; }
.btn-maps:hover { background: var(--stone); color: var(--bg); }
.local-map { border: 10px solid var(--bg); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* FOOTER */
footer { padding: 100px 0 0; background: #0c0a0a; }
.footer-content { display: flex; justify-content: space-between; padding-bottom: 60px; border-bottom: 1px solid #222; }
.footer-left .logo { margin-bottom: 20px; }
.footer-left p { color: var(--text-muted); font-size: 0.85rem; }
.footer-right p { color: var(--text-muted); margin-bottom: 12px; text-align: right; }
.bottom-bar { padding: 30px 0; text-align: center; font-size: 0.75rem; color: #555; }

/* MOBILE RESPONSIVITY */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-content, .about-flex, .local-grid { gap: 40px; }
}

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-img { display: none; }
    .about-flex { flex-direction: column; text-align: center; }
    .about-info h2 { font-size: 2.2rem; }
    .stat-card { width: 100%; }
    .main-menu { display: none; } /* Ideal: Menu hamburguer */
    .local-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; gap: 40px; }
    .footer-right p { text-align: center; }
    .faq-grid { grid-template-columns: 1fr; }
}