/* Estilos para padronizar as páginas de conteúdo (Hub & Spoke) com a página inicial */

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #043d09;
}

.cluster-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
}

/* Transformando o Header em um Full-Width Hero */
.cluster-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #043d09 0%, #0a5c10 100%);
    color: #ffffff;
    border-radius: 0;
    padding: calc(4.375rem + 3rem) 1rem 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.cluster-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem auto 1rem;
    max-width: 1000px;
}

.cluster-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.cluster-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
    margin-bottom: 0.5rem;
}

/* Botão CTA Herdando o padrão btn-cta */
.cluster-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #ffffff;
    color: #043d09 !important;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cluster-cta-btn:hover {
    background: #f0fdf4;
    transform: scale(1.03);
    color: #2f942d !important;
}

.cluster-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background-color: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cluster-breadcrumb a {
    text-decoration: none;
    font-weight: 600;
    color: #2f942d;
}

.cluster-breadcrumb a:hover {
    text-decoration: underline;
}

.cluster-breadcrumb span {
    color: #64748b;
}

.cluster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 850px) {
    .cluster-grid {
        grid-template-columns: 2.5fr 1fr;
    }
}

.cluster-article {
    background: #ffffff;
}

.cluster-article h2 {
    font-size: 1.8rem;
    color: #043d09;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #2f942d;
    padding-bottom: 0.5rem;
}

.cluster-article p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cluster-box-highlight {
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    background: #fffbeb;
    border-left: 4px solid #ca8a04;
}

.cluster-box-highlight h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: #854d0e;
}

.cluster-box-highlight ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.cluster-box-highlight ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    color: #854d0e;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cluster-box-highlight ul li::before {
    content: "⚠️ ";
    position: absolute;
    left: 0;
    top: 0;
}

.cluster-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cluster-card-widget {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.cluster-card-widget h4 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    color: #043d09;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 0.5rem;
}

.cluster-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cluster-links-list a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    color: #2f942d;
}

.cluster-links-list a:hover {
    text-decoration: underline;
}

.simulador-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.simulador-banner h4 {
    color: #4ade80;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    border: none;
}

.simulador-banner p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
}

.simulador-banner a {
    display: inline-block;
    background: #4ade80;
    color: #043d09;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 1rem;
}
