*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --bg: #F8F7F4; --dark: #053C33; --dark2: #064A3E; --gold: #B8963E; --gold-lt: #D4AE5A; --text: #000; --muted: #6B6B65; --border: #E5E3DC; --pad: clamp(24px, 5vw, 80px); --sec: clamp(72px, 9vw, 120px); }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.serif { font-family: 'Cormorant Garamond', serif; }
.hidden { display: none !important; }

/* Acessibilidade para quem navega por teclado (Tab) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px dashed var(--gold);
    outline-offset: 4px;
}

nav { position: sticky; top: 0; z-index: 100; padding: 0 var(--pad); height: 66px; display: flex; align-items: center; justify-content: space-between; transition: background .3s, box-shadow .3s; }
nav.scrolled { background: rgba(248, 247, 244, .97); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--border); }
.nav-logo { display: flex; align-items: center; text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; letter-spacing: .06em; color: var(--text); }
.nav-logo span { color: var(--gold); font-weight: 400; }
.nav-links { display: flex; gap: 24px; list-style: none; transition: all 0.3s ease; }
.nav-links a { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--dark); }
.nav-cta { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); text-decoration: none; border: 1px solid var(--dark); padding: 7px 18px; transition: all .2s; }
.nav-cta:hover { background: var(--dark); color: #fff; }

.menu-toggle { display: none; background: none; border: none; color: var(--dark); cursor: pointer; }
.mobile-only { display: none; }

/* Menu Hambúrguer (Mobile) */
@media(max-width: 800px) {
    .menu-toggle { display: block; }
    .desktop-only { display: none; }
    .mobile-only { display: block; margin-top: 10px; }
    
    .nav-links { 
        position: absolute; top: 66px; left: 0; right: 0; 
        background: var(--bg); flex-direction: column; padding: 20px var(--pad); 
        box-shadow: 0 10px 15px rgba(0,0,0,0.05); gap: 20px; 
        opacity: 0; visibility: hidden; transform: translateY(-10px);
    }
    .nav-links.active { opacity: 1; visibility: visible; transform: translateY(0); }
}

.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px var(--pad) 80px; position: relative; overflow: hidden; background: radial-gradient(ellipse 70% 60% at 85% 50%, rgba(5, 60, 51, .08) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 10% 75%, rgba(5, 60, 51, .04) 0%, transparent 55%), var(--bg); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent); margin: 0 var(--pad); }
section { padding: var(--sec) var(--pad); }
.inner { max-width: 1200px; margin: 0 auto; }
.sec-label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dark); margin-bottom: 14px; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media(max-width:760px) { .sobre-grid { grid-template-columns: 1fr; gap: 40px; } }
.sobre-p { font-size: 1rem; color: var(--muted); line-height: 1.82; font-weight: 300; margin-bottom: 16px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.stat { border-top: 1px solid var(--border); padding-top: 18px; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 400; color: var(--dark); line-height: 1; margin-bottom: 5px; font-variant-numeric: lining-nums; }
.stat-l { font-size: .78rem; color: var(--muted); }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--dark); color: rgba(255, 255, 255, .8); padding: 9px 18px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 28px; }
.badge-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.card-dark { background: var(--dark2); padding: 40px; position: relative; }
.card-dark::before { content: ''; position: absolute; top: -7px; left: -7px; right: 7px; bottom: 7px; border: 1px solid rgba(184, 150, 62, .28); pointer-events: none; }
.card-t { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: #fff; margin-bottom: 6px; }
.card-sub { font-size: .72rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 28px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.card-item { display: flex; gap: 10px; font-size: .88rem; color: rgba(255, 255, 255, .62); line-height: 1.5; }
.card-item::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.areas-sec { background: var(--dark); }
.areas-sec .sec-title { color: #fff; }
.areas-sec .sec-label { color: rgba(184, 150, 62, .85); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .06); margin-top: 56px; }
.area-card { background: var(--dark); padding: 36px 30px; transition: background .25s; }
.area-card:hover { background: var(--dark2); }
.area-n { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: rgba(184, 150, 62, .72); line-height: 1; margin-bottom: 14px; }
.area-t { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.area-d { font-size: .83rem; color: rgba(255, 255, 255, .44); line-height: 1.72; }
.quotes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 60px; }
@media(max-width: 900px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 560px) { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
.quote-card { background: var(--bg); padding: 22px 18px; }
.q-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.q-value { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 400; line-height: 1; margin-bottom: 4px; }
.q-change { font-size: .78rem; }
.q-change.pos { color: #1a7d4b; }
.q-change.neg { color: #b83232; }
.q-time { font-size: .65rem; color: var(--muted); margin-top: 4px; }
.news-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.news-refresh, .blog-new-btn, .cr-gen, .cr-cancel, .cr-pub { padding: 11px 26px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; border: none; }
.news-refresh { background: none; border: 1px solid var(--border); color: var(--dark); }
.news-refresh:hover:not(:disabled) { border-color: var(--dark); background: var(--dark); color: #fff; }
.blog-new-btn, .cr-gen { background: var(--dark); color: #fff; }
.blog-new-btn:hover, .cr-gen:hover:not(:disabled) { background: var(--dark2); }
.cr-pub { background: var(--gold); color: #fff; margin-top: 14px; }
.cr-pub:hover { background: var(--gold-lt); }
.cr-cancel { background: none; color: var(--muted); border: 1px solid var(--border); }
.cr-cancel:hover { border-color: var(--text); color: var(--text); }
button:disabled { opacity: .6; cursor: not-allowed; }

.news-grid, .blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.news-card, .blog-card { background: #fff; border: 1px solid var(--border); padding: 24px; transition: box-shadow .2s; cursor: default; }
a.news-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.blog-card { cursor: pointer; }
.news-card:hover, .blog-card:hover { box-shadow: 0 4px 18px rgba(5, 60, 51, .08); border-color: var(--dark); }
.n-cat, .b-tag { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.b-tag { background: rgba(5, 60, 51, .07); padding: 3px 8px; margin-right: 6px; }
.n-title, .b-title { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }
.n-summary, .b-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.68; }
.n-date, .b-date { font-size: .7rem; color: var(--muted); margin-top: 10px; }
.n-link { font-size: .72rem; color: var(--dark); margin-top: 14px; letter-spacing: .04em; opacity: .7; transition: opacity .2s; }
a.news-card:hover .n-link { opacity: 1; }

.nl-sec { background: var(--dark); padding: 56px var(--pad); }
.nl-box { max-width: 560px; margin: 0 auto; text-align: center; }
.nl-box .sec-title { color: #fff; margin-bottom: 10px; }
.nl-box .sec-label { color: rgba(184, 150, 62, .85); }
.nl-desc { font-size: .92rem; color: rgba(255, 255, 255, .5); margin-bottom: 28px; line-height: 1.7; }
.nl-row { display: flex; }
.nl-inp, .cr-input, .f-input { width: 100%; border: 1px solid rgba(255, 255, 255, .12); padding: 13px 16px; font-size: .88rem; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .2s; }
.nl-inp { flex: 1; background: rgba(255, 255, 255, .07); color: #fff; }
.nl-inp::placeholder { color: rgba(255, 255, 255, .25); }
.nl-inp:focus { border-color: var(--gold); }
.nl-btn, .f-btn { background: var(--gold); color: #fff; border: none; padding: 13px 28px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; font-family: 'DM Sans', sans-serif; white-space: nowrap; transition: background .2s; }
.nl-btn:hover, .f-btn:hover:not(:disabled) { background: var(--gold-lt); }
.nl-ok { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-top: 8px; }

.creator-panel { background: #fff; border: 1px solid var(--border); padding: 36px; margin-bottom: 28px; }
.cr-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 22px; }
.cr-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; display: block; }
.cr-input { border-color: var(--border); color: var(--text); background: #fff; margin-bottom: 14px; }
.cr-input:focus { border-color: var(--dark); }
.cr-ta { resize: none; height: 76px; }
.cr-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.cr-result { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 24px; }
.cr-res-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; margin-bottom: 6px; }
.cr-res-sub { font-family: 'Cormorant Garamond', serif; font-size: .98rem; font-style: italic; color: var(--muted); margin-bottom: 16px; }
.cr-res-body { font-size: .88rem; line-height: 1.8; color: #444; white-space: pre-wrap; max-height: 280px; overflow-y: auto; padding: 16px; background: var(--bg); border: 1px solid var(--border); }

.post-modal-bg { position: fixed; inset: 0; background: rgba(5, 60, 51, .72); z-index: 300; overflow-y: auto; display: flex; align-items: flex-start; justify-content: center; padding: 48px 20px; }
.post-modal { background: #fff; max-width: 700px; width: 100%; padding: 48px; position: relative; }
.pm-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
.pm-close:hover { color: var(--text); }
.pm-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pm-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400; line-height: 1.15; margin-bottom: 6px; }
.pm-sub { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--muted); margin-bottom: 20px; }
.pm-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pm-body { font-size: .93rem; line-height: 1.85; color: #333; white-space: pre-wrap; }

.cli-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media(max-width:560px) { .cli-grid { grid-template-columns: 1fr; } }
.cli-item { background: var(--bg); padding: 26px; }
.cli-type { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.cli-names { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; line-height: 1.4; }
.cli-det { margin-top: 6px; font-size: .78rem; color: var(--muted); }

.contact-sec { background: var(--dark); }
.contact-sec .sec-title { color: #fff; }
.contact-sec .sec-label { color: rgba(184, 150, 62, .85); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 52px; align-items: start; }
@media(max-width:760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-desc { font-size: .98rem; color: rgba(255, 255, 255, .48); line-height: 1.82; font-weight: 300; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 18px; }
.c-link { display: flex; gap: 14px; align-items: center; text-decoration: none; color: #fff; transition: color .2s; }
.c-link:hover { color: var(--gold); }
.c-icon { width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, .15); display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; transition: border-color .2s; font-family: 'Cormorant Garamond', serif; }
.c-link:hover .c-icon { border-color: var(--gold); }
.c-label { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .32); margin-bottom: 2px; }
.c-val { font-size: .9rem; }

.form-box { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); padding: 40px; }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: #fff; margin-bottom: 6px; }
.form-sub { font-size: .83rem; color: rgba(255, 255, 255, .38); margin-bottom: 26px; line-height: 1.6; }
.f-input { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); color: #fff; }
.f-input::placeholder { color: rgba(255, 255, 255, .22); }
.f-textarea { resize: none; height: 92px; }
.f-btn { width: 100%; margin-top: 4px; }
.f-error { font-size: .78rem; color: #ffb3b3; margin-top: 8px; line-height: 1.5; }
.f-sent { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); padding: 36px 0; line-height: 1.4; }

footer { padding: 26px var(--pad); border-top: 1px solid rgba(255, 255, 255, .08); background: var(--dark); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255, 255, 255, .55); letter-spacing: .05em; }
.foot-logo span { color: var(--gold); }
.foot-copy { font-size: .72rem; color: #fff; }

.float-bar { position: fixed; right: 18px; bottom: 88px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-family: 'Cormorant Garamond', serif; box-shadow: 0 2px 14px rgba(0, 0, 0, .2); transition: transform .2s; font-size: .85rem; }
.float-btn:hover { transform: scale(1.12); }
.f-wa { background: #25D366; color: #fff; }
.f-mail { background: var(--dark); color: #fff; font-size: .72rem; }
.f-ig { background: #E1306C; color: #fff; font-size: .75rem; }

.hero-banner { position: relative; width: 100%; height: clamp(280px, 55vw, 100vh); overflow: hidden; }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to bottom, transparent 0%, rgba(248, 247, 244, .2) 55%, rgba(248, 247, 244, .75) 80%, #F8F7F4 100%); pointer-events: none; }
.hero-ctas { position: absolute; bottom: clamp(28px, 4vw, 56px); left: var(--pad); display: flex; gap: 12px; flex-wrap: wrap; z-index: 1; }
.btn-pri-gold, .btn-ghost { display: inline-block; text-decoration: none; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; padding: 14px 34px; transition: all .2s; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-pri-gold { background: var(--gold); color: #fff; border: none; }
.btn-pri-gold:hover { background: var(--gold-lt); }
.btn-ghost { color: #fff; border: 1px solid rgba(255, 255, 255, .6); }
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }

@media (max-width: 768px) {
    .hero-banner { height: clamp(380px, 80vw, 100vh); }
    .hero-banner img { object-position: 25% top; }
    .hero-ctas { flex-direction: column; right: var(--pad); bottom: 24px; gap: 16px; }
    .btn-pri-gold, .btn-ghost { width: 100%; text-align: center; box-sizing: border-box; }
}