/* =========================================================
   ANACLA — Sistema visual
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
    --cor: #8f0b16;
    --cor-escura: #6d0911;
    --cor-clara: #c9a55b;

    --dourado: #c9a55b;
    --azul-escuro: #071a2b;

    --alt-vermelho: #74151d;
    --alt-azul: #071a2b;
    --alt-dourado: #c9a55b;
    --alt-marfim: #f3eee3;
    --alt-papel: #e9e1d2;
    --alt-ink: #20252a;
    --alt-linha: rgba(201,165,91,.45);

    --branco: #ffffff;
    --fundo: #f7f8fa;
    --fundo-suave: #fff6f6;
    --texto: #111318;
    --texto-suave: #4a4f5c;
    --borda: #e7e9ee;
    --sombra: 0 12px 35px rgba(20, 24, 35, .08);
    --sombra-hover: 0 20px 45px rgba(20, 24, 35, .13);
    --raio: 18px;
    --largura: 1180px;
}

.home-alternativa {
    background: var(--alt-marfim);
    color: var(--alt-ink);
    font-family: Georgia, 'Times New Roman', serif;
}
.home-alternativa a { text-decoration: none; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    color: var(--texto);
    background: var(--fundo);
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
}
h1, h2, h3, .section-title, .logo, .card-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
::selection { background: var(--azul-escuro); color: var(--dourado); }

/* ===== NAVBAR (apenas para formatar.html) ===== */
.navbar {
    background: var(--azul-escuro);
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    border-bottom: 1px solid rgba(201,165,91,.45);
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #f1d98d;
    font-size: 1.32rem;
    font-weight: 850;
    letter-spacing: -.03em;
}
.logo img {
    height: 46px;
    width: 46px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.12));
}
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links > a,
.nav-links .dropdown > a {
    color: #e9e4d8;
    padding: 11px 13px;
    font-size: .88rem;
    font-weight: 650;
    white-space: nowrap;
    border-radius: 10px;
    transition: .2s ease;
}
.nav-links > a:hover,
.nav-links .dropdown > a:hover,
.nav-links > a[aria-current="page"] {
    color: var(--dourado);
    background: rgba(201,165,91,.1);
}
.dropdown { position: relative; }
.dropdown > a::after { content: '⌄'; font-size: .75rem; margin-left: 5px; opacity: .7; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -6px;
    background: #0b2237;
    min-width: 245px;
    border: 1px solid rgba(201,165,91,.42);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    z-index: 1100;
    padding: 8px;
}
.dropdown-menu a {
    display: block;
    color: #eee8db;
    padding: 10px 13px;
    font-size: .86rem;
    font-weight: 550;
    border-radius: 9px;
    transition: .18s ease;
}
.dropdown-menu a:hover { color: var(--dourado); background: rgba(201,165,91,.1); transform: translateX(2px); }
.hamburger {
    display: none;
    background: transparent;
    border: 1px solid rgba(201,165,91,.55);
    color: var(--dourado);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
}

/* ===== MENU MOBILE ===== */
.menu-mobile {
    display: none;
    background: #0b2237;
    border-bottom: 1px solid rgba(201,165,91,.42);
    padding: 10px 20px 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,.22);
}
.menu-mobile.active { display: block; }
.menu-mobile > a,
.menu-mobile > .dropdown > a {
    display: block;
    color: #e9e4d8;
    padding: 12px 10px;
    border-radius: 9px;
    font-size: .95rem;
    font-weight: 650;
}
.menu-mobile > a:hover,
.menu-mobile > .dropdown > a:hover { color: var(--dourado); background: rgba(201,165,91,.08); }
.menu-mobile .dropdown > a::after { content: '⌄'; margin-left: 5px; }
.menu-mobile .dropdown-menu {
    display: none;
    position: static;
    background: rgba(201,165,91,.05);
    min-width: 0;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    padding: 4px;
    margin: 0 0 5px 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, margin .3s ease;
}
.menu-mobile .dropdown.open .dropdown-menu { display: block; max-height: 500px; padding: 4px; margin: 0 0 5px 8px; }
.menu-mobile .dropdown-menu a { padding: 9px 12px; font-size: .88rem; }

/* ===== HERO LINHA HORIZONTAL ===== */
/* ===== BOTÃO VOLTAR ===== */
.btn-voltar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--azul-escuro);
    color: var(--dourado);
    border: 1px solid rgba(201,165,91,.55);
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    transition: transform .25s, background .25s;
    z-index: 900;
    text-decoration: none;
}
.btn-voltar:hover {
    transform: translateY(-3px);
    background: var(--cor);
    border-color: var(--dourado);
    box-shadow: 0 10px 28px rgba(143,11,22,.4);
}
@media (max-width: 520px) {
    .btn-voltar { bottom: 20px; left: 20px; width: 36px; height: 36px; font-size: .9rem; }
}
.hero-linha-horizontal {
    height: 5px;
    background: var(--dourado);
}
.hero-linha-horizontal-preta {
    height: 10px;
    background: var(--texto);
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 0 20px 10px;
    color: var(--texto);
}
.hero h1 {
    text-shadow: 0 3px 12px rgba(0,0,0,.25);
}
.hero img {
    width: clamp(227px, 29vw, 293px);
    margin: 0 auto 25px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)) drop-shadow(0 0 25px rgba(201,165,91,.15));
    border: 3px solid rgba(201,165,91,.4);
    border-radius: 50%;
    padding: 8px;
    background: rgba(7,26,43,.5);
    transition: transform 0.4s, filter 0.4s;
}
.hero img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,.4)) drop-shadow(0 0 40px rgba(201,165,91,.2));
    border-color: rgba(201,165,91,.7);
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -.045em;
    margin-bottom: 13px;
}
.hero p { font-size: clamp(1rem, 2vw, 1.18rem); opacity: .92; margin-bottom: 27px; }

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--cor);
    color: white;
    border-radius: 11px;
    transition: .22s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 750;
    box-shadow: 0 7px 18px rgba(143,11,22,.18);
}
.btn:hover { background: var(--cor-escura); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(143,11,22,.25); }
.btn-outline { background: rgba(255,255,255,.08); border: 1px solid rgba(201,165,91,.72); box-shadow: none; color: white; }
.btn-outline:hover { background: var(--dourado); color: #071a2b; }
.btn-filtro { background: transparent; color: var(--texto); border: 1px solid var(--borda); box-shadow: none; }
.btn-filtro:hover { background: var(--fundo-suave); border-color: var(--cor); color: var(--cor); transform: translateY(-2px); }

/* ===== SEÇÕES ===== */
.section {
    padding: 10px 20px;
    max-width: var(--largura);
    margin: 0 auto;
}
.section-title {
    position: relative;
    text-align: center;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -.035em;
    color: var(--azul-escuro);
    margin-bottom: 40px;
}
.section-title::after {
    content: '';
    display: block;
    width: 46px;
    height: 4px;
    margin: 13px auto 0;
    border-radius: 999px;
    background: var(--dourado);
}
.section p { color: var(--texto-suave); }

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}
.card {
    background: white;
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); border-color: rgba(201,165,91,.55); }
.card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: linear-gradient(145deg, #f4f5f7, #fff);
}
.card-content { padding: 22px; }
.card-title { color: var(--azul-escuro); font-size: 1.12rem; line-height: 1.35; margin-bottom: 8px; }
.card:hover .card-title { color: var(--cor); }
.card-text { color: var(--texto-suave); font-size: .91rem; }

/* ===== CARD COM OVERLAY ===== */
.card-com-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--raio);
    cursor: pointer;
}
.card-com-overlay img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.3s;
}
.card-com-overlay:hover img {
    transform: scale(1.03);
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 40px 14px 14px;
    color: white;
}
.card-overlay .badge {
    background: var(--azul-escuro);
    color: var(--dourado);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 5px;
}
.card-overlay .nome {
    font-size: 0.9rem;
    font-weight: 600;
}
.card-overlay .sub {
    font-size: 0.78rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* ===== CONTEÚDO LONGO ===== */
.section > div[style*="max-width"] {
    background: var(--branco);
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    padding: clamp(24px, 5vw, 42px) !important;
    box-shadow: var(--sombra);
}
.section > div[style*="max-width"] > p { color: var(--texto-suave); }
.section > div[style*="max-width"] div[style*="border-left"] {
    background: var(--fundo-suave) !important;
    border-left: 4px solid var(--cor) !important;
    border-radius: 12px !important;
}

/* ===== CONTATO ===== */
.contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; text-align: center; }
.contato-card {
    padding: 26px 20px;
    background: white;
    border: 1px solid var(--borda);
    border-radius: 15px;
    box-shadow: 0 7px 22px rgba(20,24,35,.05);
    transition: .22s ease;
}
.contato-card:hover { transform: translateY(-4px); border-color: rgba(201,165,91,.55); }
.contato-card i { font-size: 1.75rem; color: var(--dourado); margin-bottom: 12px; }
.contato-card h3 { font-size: 1rem; margin-bottom: 5px; }
.contato-card p { font-size: .9rem; }

/* ===== FORMULÁRIOS ===== */
input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfe2e8;
    border-radius: 10px;
    background: #fff;
    color: var(--texto);
    outline: none;
    transition: .2s ease;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 0 4px rgba(201,165,91,.15);
}
textarea { min-height: 130px; resize: vertical; }

/* ===== FOOTER ===== */
.footer {
    background: #001525;
    color: white;
    padding: 48px 20px 28px;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(201,165,91,.75);
}
.footer h3 { font-size: 1.05rem; letter-spacing: -.01em; color: #e6ce86; }
.footer-links { display: flex; justify-content: center; gap: 9px; margin: 22px 0; flex-wrap: wrap; }
.footer-links a { color: #b9bec8; padding: 7px 11px; border-radius: 8px; transition: .2s; }
.footer-links a:hover { color: var(--dourado); background: transparent; }
.social { display: flex; justify-content: center; gap: 10px; margin: 20px 0 25px; }
.social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.05rem;
    transition: .22s;
}
.social a:hover { background: var(--cor); border-color: var(--dourado); transform: translateY(-3px); }
.footer > p { color: #858b96; font-size: .82rem; }

/* ===== LOADING ===== */
.loading {
    text-align: center;
    padding: 45px 20px;
    color: var(--texto-suave);
    grid-column: 1 / -1;
}
.loading::before {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 12px;
    border: 3px solid rgba(201,165,91,.2);
    border-top-color: var(--dourado);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,22,37,.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}
.modal-content {
    background: white;
    margin: 5vh auto;
    padding: 30px;
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
    border: 1px solid rgba(201,165,91,.3);
}
.modal-close {
    position: absolute;
    top: 13px;
    right: 15px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 24px;
    cursor: pointer;
    border-radius: 10px;
    color: #667085;
}
.modal-close:hover { color: var(--dourado); background: var(--fundo-suave); }

/* ===== RESPONSIVO ===== */
@media (min-width: 981px) {
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu { display: block; }
}
@media (max-width: 980px) {
    .navbar { padding: 0 18px; }
    .nav-links { display: none; }
    .hamburger { display: grid; place-items: center; }
}
@media (max-width: 768px) {
    .hero { padding: 55px 18px; }
    .hero img { width: 135px; }
    .section { padding: 52px 17px; }
    .cards { grid-template-columns: 1fr; }
    .card img { height: 235px; }
    .contato-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .logo span { font-size: 1.15rem; }
    .logo img { width: 40px; height: 40px; }
    .contato-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 24px 18px; }
}

/* ===== BOTÃO TOPO ===== */
.btn-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--azul-escuro);
    color: var(--dourado);
    border: 1px solid rgba(201,165,91,.55);
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    transition: transform .25s, opacity .25s;
    z-index: 900;
}
.btn-topo:hover {
    transform: translateY(-3px);
    background: var(--cor);
    border-color: var(--dourado);
    box-shadow: 0 10px 28px rgba(143,11,22,.4);
}
.btn-topo.visible { display: flex; }
@media (max-width: 520px) {
    .btn-topo { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 1rem; }
}

/* ===== ALT CONTENT (Design Alternativo) ===== */
.alt-content { width:min(1120px, calc(100% - 44px)); margin:auto; padding:60px 0; }
.alt-section-heading > span { color:#8a6731; font:bold .64rem Arial,sans-serif; letter-spacing:.18em; }
.alt-section-heading h2 { color:var(--alt-azul, #071a2b); font-size:clamp(2rem,3.4vw,3rem); font-weight:500; margin:10px 0 8px; }
.alt-section-heading p { color:#716d65; font: .92rem/1.6 Arial,sans-serif; }
.alt-news-layout { display:grid; grid-template-columns:1.15fr .85fr; gap:28px; margin-top:38px; }
.alt-feature { position:relative; overflow:hidden; background:#18212a; border-radius:12px; }
.alt-feature img { width:100%; height:280px; object-fit:cover; display:block; }
.alt-feature .feature-text { padding:20px 24px 24px; background:#fff; border-radius:0 0 12px 12px; }
.alt-feature .feature-text small { color:#8a6731; font:bold .6rem Arial,sans-serif; letter-spacing:.18em; }
.alt-feature .feature-text h3 { font-size:1.3rem; font-weight:600; color:var(--alt-azul, #071a2b); margin:8px 0; line-height:1.3; }
.alt-feature .feature-text p { color:#6c6963; font:.84rem/1.55 Arial,sans-serif; margin-bottom:12px; }
.alt-feature .feature-text a { color:var(--alt-vermelho, #74151d); font:bold .68rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.08em; text-decoration:none; }
.alt-feature { min-height:410px; position:relative; overflow:hidden; background:#18212a; border-radius:12px; }
.alt-feature img { width:100%; height:100%; min-height:410px; object-fit:cover; display:block; }
.feature-overlay { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:30px; color:#fff; background:linear-gradient(180deg, transparent 30%, rgba(4,15,24,.92)); }
.feature-overlay small { color:#dfbd72; font:bold .6rem Arial,sans-serif; letter-spacing:.18em; }
.feature-overlay h3 { font-size:clamp(1.6rem,2.8vw,2.5rem); font-weight:500; line-height:1.08; margin:10px 0; }
.feature-overlay p { max-width:650px; color:rgba(255,255,255,.78); font: .84rem/1.55 Arial,sans-serif; }
.feature-overlay a { margin-top:17px; color:#e3c57e; font:bold .68rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.08em; text-decoration:none; }
.alt-news-list { border-top:1px solid #cfc4b4; }
.alt-news-item { display:grid; grid-template-columns:35px 1fr 20px; gap:12px; padding:21px 0; border-bottom:1px solid #cfc4b4; }
.news-index { color:#a17a3c; font-size:.72rem; }
.alt-news-item small { color:#92703a; font:bold .57rem Arial,sans-serif; letter-spacing:.15em; }
.alt-news-item h3 { color:var(--alt-azul, #071a2b); font-size:1.08rem; font-weight:600; margin:6px 0; }
.alt-news-item h3 a { color:inherit; text-decoration:none; }
.alt-news-item h3 a:hover { color:var(--alt-vermelho, #74151d); }
.alt-news-item p { color:#6c6963; font: .76rem/1.5 Arial,sans-serif; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.alt-news-item > a { color:var(--alt-vermelho, #74151d); align-self:center; text-decoration:none; }
.alt-feature-loading { min-height:200px; display:grid; place-items:center; padding:30px; color:#756f65; font-family:Arial,sans-serif; text-align:center; }

/* ===== ALT CONTACT (Design Alternativo) ===== */
.alt-contact { background:#d9ccb9; display:grid; grid-template-columns:1fr 1fr; gap:50px; padding:65px max(22px, calc((100% - 1120px)/2)); }
.alt-contact h2 { color:var(--alt-azul, #071a2b); font-size:clamp(2rem,3vw,2.7rem); font-weight:500; margin:8px 0; }
.alt-contact p { color:#5d5a55; font: .85rem/1.6 Arial,sans-serif; }
.alt-contact-links { display:grid; grid-template-columns:1fr 1fr; gap:12px; align-content:center; }
.alt-contact-links a { border-left:2px solid #b2935b; padding:7px 0 7px 16px; color:var(--alt-azul, #071a2b); text-decoration:none; }
.alt-contact-links small { display:block; color:#816438; font:bold .56rem Arial,sans-serif; letter-spacing:.15em; margin-bottom:5px; }
.alt-contact-links strong { font: .78rem Arial,sans-serif; }
.alt-contact-links .contact-cta { grid-column:1/-1; border:1px solid #8f713f; text-align:center; padding:13px; margin-top:6px; font:bold .65rem Arial,sans-serif; text-transform:uppercase; letter-spacing:.08em; color:var(--alt-azul, #071a2b); }

/* ===== ALT STRIP (Design Alternativo) ===== */
.alt-strip { width:min(1240px, calc(100% - 44px)); margin:-1px auto 0; position:relative; z-index:5; display:grid; grid-template-columns:repeat(3,1fr); background:#f5f0e7; box-shadow:0 15px 35px rgba(17,24,31,.12); border-top:3px solid var(--alt-dourado, #c9a55b); }
.alt-strip-item { display:grid; grid-template-columns:45px 1fr 25px; gap:15px; padding:27px 25px; border-right:1px solid #d7cdbd; }
.alt-strip-item:last-child { border-right:0; }
.alt-strip-item .number { color:var(--alt-dourado, #c9a55b); font-size:.8rem; }
.alt-strip-item small { color:#7e5b2c; font:bold .58rem Arial,sans-serif; letter-spacing:.16em; }
.alt-strip-item h3 { margin:6px 0 4px; color:var(--alt-azul, #071a2b); font-size:1.12rem; font-weight:600; }
.alt-strip-item p { margin:0; color:#65615a; font: .78rem/1.55 Arial,sans-serif; }
.alt-strip-item > a { color:var(--alt-vermelho, #74151d); align-self:center; }

/* ===== ALT HEADER (Design Alternativo) ===== */
.alt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #071a2b;
    color: #f3eee3;
    border-bottom: 1px solid rgba(201,165,91,.45);
}
.alt-header-inner {
    width: min(1240px, calc(100% - 44px));
    min-height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.alt-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #f3eee3;
    min-width: 250px;
    text-decoration: none;
}
.alt-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    padding: 4px;
}
.alt-brand strong {
    display: block;
    color: #c9a55b;
    font-size: 1.3rem;
    letter-spacing: .08em;
}
.alt-brand span {
    display: block;
    font-size: .62rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .82;
}
.alt-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.alt-nav > a,
.alt-nav-group > button {
    border: 0;
    background: transparent;
    color: #eee8db;
    font: 600 .72rem Georgia, serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 30px 13px;
    cursor: pointer;
    position: relative;
}
.alt-nav > a::after,
.alt-nav-group > button::after {
    content: '';
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 21px;
    height: 1px;
    background: transparent;
    transition: .2s;
}
.alt-nav > a:hover,
.alt-nav > a.active,
.alt-nav-group > button:hover {
    color: #c9a55b;
}
.alt-nav > a:hover::after,
.alt-nav > a.active::after {
    background: #c9a55b;
}
.alt-nav-group {
    position: relative;
}
.alt-nav-group i {
    margin-left: 5px;
    font-size: .6rem;
}
.alt-dropdown {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    width: 250px;
    padding: 8px;
    background: #0b2237;
    border: 1px solid rgba(201,165,91,.45);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    z-index: 1100;
}
.alt-nav-group:hover .alt-dropdown,
.alt-nav-group:focus-within .alt-dropdown {
    display: block;
}
.alt-dropdown a {
    display: block;
    padding: 11px 12px;
    color: #eee8db;
    font-size: .78rem;
    line-height: 1.3;
    text-decoration: none;
}
.alt-dropdown a:hover {
    background: rgba(201,165,91,.1);
    color: #c9a55b;
}
.alt-menu-button {
    display: none;
    background: transparent;
    color: #c9a55b;
    border: 1px solid rgba(201,165,91,.45);
    width: 43px;
    height: 43px;
    cursor: pointer;
    font-size: 18px;
}
.alt-mobile-menu {
    display: none;
    padding: 8px 22px 18px;
    background: #0b2237;
    border-top: 1px solid rgba(201,165,91,.45);
}
.alt-mobile-menu.open {
    display: block;
}
.alt-mobile-menu > a,
.alt-mobile-menu summary {
    display: block;
    padding: 12px 5px;
    color: #eee8db;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    cursor: pointer;
    list-style: none;
}
.alt-mobile-menu details {
    border-bottom: 1px solid rgba(201,165,91,.12);
}
.alt-mobile-menu details a {
    display: block;
    padding: 8px 14px;
    color: #d9d1c3;
    font-size: .84rem;
    text-decoration: none;
}

@media (max-width: 980px) {
    .alt-nav { display: none; }
    .alt-menu-button { display: block; }
}

/* ===== ALT HERO (Design Alternativo) ===== */
.alt-hero {
    min-height: 550px;
    position: relative;
    color: #fff;
    overflow: hidden;
    background: #061827 url('../imagens/estaticas/imagem_capa_fundo.png') center/cover no-repeat;
}
.alt-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,22,37,.92), rgba(5,22,37,.68) 38%, rgba(5,22,37,.28) 72%, rgba(5,22,37,.55)),
                linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.60));
}
.alt-hero-inner {
    position: relative;
    width: min(1100px, calc(100% - 44px));
    margin: auto;
    padding: 30px 0 50px;
}
.alt-hero-topline {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #c9a55b;
    font-size: .64rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.alt-hero-topline .line {
    height: 1px;
    flex: 1;
    background: rgba(201,165,91,.45);
}
.alt-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .82fr .75fr;
    align-items: center;
    min-height: 500px;
    gap: 35px;
}
.alt-intro { padding: 20px 0; }
.eyebrow { color: #ddc78e; font-size: .72rem; letter-spacing: .18em; margin-bottom: 18px; }
.alt-intro h1 {
    margin: 0;
    color: #f6f0e4;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.035em;
    text-shadow: 0 5px 24px rgba(0,0,0,.35);
}
.alt-intro h1 em { color: #dfbd72; font-style: normal; }
.alt-intro .lead {
    max-width: 520px;
    margin: 25px 0 28px;
    color: rgba(248,244,234,.85);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}
.alt-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.alt-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    text-transform: uppercase;
    letter-spacing: .09em;
    font: bold .72rem Arial, sans-serif;
    border-radius: 8px;
    transition: .2s;
}
.alt-button.primary { background: #c9a55b; color: #101c25; }
.alt-button.primary:hover { background: #e0c47c; }
.alt-button.ghost { color: #f4ead4; border: 1px solid rgba(238,219,172,.6); }
.alt-button.ghost:hover { background: rgba(255,255,255,.08); }
.alt-seal-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.alt-seal-caption { color: #e5d09a; font-size: .7rem; line-height: 1.5; letter-spacing: .17em; margin-bottom: 14px; }
.alt-seal-caption span { color: #fff; opacity: .85; letter-spacing: .1em; }
.alt-seal {
    width: min(280px, 26vw);
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    padding: 14px;
    background: conic-gradient(from 35deg, #6f531e, #f0d18b, #8c6a27, #e9ca80, #6f531e);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.alt-seal::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
}
.alt-seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: #74151d;
    padding: 9px;
    position: relative;
    z-index: 2;
}
.seal-orbit {
    position: absolute;
    border: 1px solid rgba(255,230,165,.35);
    border-radius: 50%;
    z-index: 1;
}
.orbit-a { inset: -19px; }
.alt-founded { color: #e8d8b3; font-size: .65rem; letter-spacing: .15em; margin-top: 18px; text-transform: uppercase; }
.alt-manifesto { border-left: 1px solid rgba(201,165,91,.45); padding: 15px 0 15px 30px; }
.alt-manifesto .roman { color: #c9a55b; font-size: .7rem; letter-spacing: .2em; }
.alt-manifesto h2 { color: #f6f0e4; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.08; font-weight: 500; margin: 16px 0; }
.alt-manifesto p { color: rgba(248,244,234,.76); font-family: Arial, sans-serif; font-size: .86rem; line-height: 1.7; max-width: 240px; }
.small-rule { width: 55px; height: 1px; background: #c9a55b; margin: 24px 0; }
.alt-manifesto a { color: #dfbd72; font: bold .68rem Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.alt-manifesto a i { margin-left: 7px; }

@media (max-width: 1000px) {
    .alt-nav { display: none; }
    .alt-menu-button { display: block; }
    .alt-hero-grid { grid-template-columns: 1fr 280px; }
    .alt-manifesto { grid-column: 1/-1; border-left: 0; border-top: 1px solid rgba(201,165,91,.45); padding: 25px 0 0; }
    .alt-manifesto p { max-width: 500px; }
    .alt-news-layout { grid-template-columns: 1fr; }
    .alt-feature img { height: 220px; }
    .alt-strip { grid-template-columns: 1fr; }
    .alt-strip-item { border-right: 0; border-bottom: 1px solid #d7cdbd; }
    .alt-strip-item:last-child { border-bottom: 0; }
}
@media (max-width: 650px) {
    .alt-contact { grid-template-columns: 1fr; padding: 40px 22px; gap: 30px; }
    .alt-contact-links { grid-template-columns: 1fr; }
    .alt-contact-links .contact-cta { grid-column: auto; }
    .alt-header-inner { min-height: 70px; }
    .alt-brand img { width: 48px; height: 48px; }
    .alt-brand strong { font-size: 1.1rem; }
    .alt-brand span { font-size: .55rem; }
}
@media (max-width: 800px) {
    .alt-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .alt-intro .lead { margin-left: auto; margin-right: auto; }
    .alt-actions { justify-content: center; }
    .alt-seal { width: 220px; }
    .alt-manifesto { border-left: 0; border-top: 1px solid rgba(201,165,91,.45); padding: 25px 0 0; text-align: center; }
    .alt-manifesto p { margin: auto; }
    .small-rule { margin: 20px auto; }
}
