* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #003366;
    --gold: #C8A84B;
    --gold-light: #e8c96a;
    --white: #ffffff;
    --gray: #f4f6f9;
    --text: #1a1a2e;
    --muted: #6b7280;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
}

/* ── NAV ── */
nav {
    background: var(--navy);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700 !important;
    padding: 0.45rem 1.2rem;
    border-radius: 6px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-estado {
    color: var(--gold) !important;
    font-weight: 600 !important;
    border: 1px solid rgba(200, 168, 75, 0.4);
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    transition: background 0.2s !important;
}

.nav-estado:hover {
    background: rgba(200, 168, 75, 0.1) !important;
}

.btn-outline-sm {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    opacity: 0.75;
}

.btn-outline-sm:hover {
    opacity: 1;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #00509e 100%);
    color: var(--white);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(200, 168, 75, 0.12);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: rgba(200, 168, 75, 0.08);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 168, 75, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-1px);
}

/* ── STATS ── */
.stats {
    background: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    padding: 1rem 3rem;
    border-right: 1px solid #e5e7eb;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-value span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── SECTION BASE ── */
section {
    padding: 4rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* ── SOBRE ── */
.sobre-section {
    background: var(--gray);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sobre-texto p {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.sobre-ods {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.ods-badge {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.ods-badge small {
    font-weight: 400;
    display: block;
}

.ods1 {
    background: #fee2e2;
    color: #991b1b;
}

.ods5 {
    background: #fce7f3;
    color: #9d174d;
}

.ods8 {
    background: #fef3c7;
    color: #92400e;
}

.ods9 {
    background: #dbeafe;
    color: #1e40af;
}

.sobre-parceiros h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.parceiro-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid #e5e7eb;
}

.parceiro-card.parceiro-gapi {
    border-left-color: var(--gold);
}

.parceiro-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.parceiro-card strong {
    font-size: 0.88rem;
    color: var(--navy);
    display: block;
    margin-bottom: 0.25rem;
}

.parceiro-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ── COMPONENTES ── */
.comp-section {
    background: var(--white);
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.comp-card {
    background: var(--gray);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    border-top: 4px solid #e5e7eb;
    position: relative;
}

.comp-card-destaque {
    border-top-color: var(--gold);
    background: #fffbf0;
}

.comp-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 51, 102, 0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.comp-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.comp-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.comp-nota {
    font-size: 0.78rem;
    background: rgba(200, 168, 75, 0.15);
    border: 1px solid rgba(200, 168, 75, 0.4);
    color: #92400e;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.comp-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.comp-card ul li {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.comp-card ul li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── COMO FUNCIONA ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--gray);
    border-radius: 4px;
    padding: 1.75rem 1.5rem;
    border-top: 3px solid var(--gold);
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── ELEGIBILIDADE ── */
.elig-section {
    background: var(--gray);
}

.elig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.elig-card {
    background: var(--white);
    border-radius: 4px;
    padding: 1.75rem;
    border-left: 4px solid var(--gold);
}

.elig-card-pref {
    border-left-color: #f59e0b;
    background: #fffbf0;
}

.elig-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.elig-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.elig-card ul li {
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.elig-card ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── APOIO FINANCEIRO ── */
.apoio-section {
    background: var(--white);
}

.apoio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.apoio-card {
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.apoio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.12);
}

.apoio-micro {
    background: #f0f4ff;
    border-color: #c5d3f0;
}

.apoio-pequena {
    background: #fff8ec;
    border-color: var(--gold);
}

.apoio-startup {
    background: #f0fff4;
    border-color: #86efac;
}

.apoio-pequena::before {
    content: '⭐ Mais Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 8px;
}

.apoio-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.apoio-type {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.apoio-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.apoio-value span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 600;
}

.apoio-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

.apoio-note {
    background: rgba(200, 168, 75, 0.1);
    border: 1px solid rgba(200, 168, 75, 0.35);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 2rem;
}

.apoio-note strong {
    color: var(--navy);
}

.orcamento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.orcamento-item {
    background: var(--gray);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    border-top: 3px solid var(--navy);
}

.orcamento-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.orcamento-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── CONTRATAÇÃO ── */
.contrat-section {
    background: var(--gray);
}

.contrat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contrat-bloco {
    background: var(--white);
    border-radius: 10px;
    padding: 1.75rem;
    border-left: 4px solid var(--navy);
}

.contrat-alerta {
    border-left-color: #dc2626;
    background: #fff5f5;
}

.contrat-bloco h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.contrat-alerta h3 {
    color: #dc2626;
}

.contrat-bloco p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contrat-bloco ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contrat-bloco ul li {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contrat-bloco ul li::before {
    content: '•';
    color: var(--gold);
    font-weight: 900;
    flex-shrink: 0;
}

.contrat-alerta ul li::before {
    color: #dc2626;
}

.principios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.principio-item {
    background: var(--white);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.principio-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.principio-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.principio-item p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ── FAQ ── */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.faq-item {
    background: var(--gray);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
}

.faq-q {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.faq-a {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

.faq-a strong {
    color: var(--text);
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy), #00509e);
    color: var(--white);
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-sub {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* ── FOOTER ── */
footer {
    background: #001a33;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 2rem;
    font-size: 0.82rem;
}

footer strong {
    color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .comp-grid {
        grid-template-columns: 1fr;
    }

    .contrat-grid {
        grid-template-columns: 1fr;
    }

    .principios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orcamento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apoio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .elig-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem 2rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .principios-grid {
        grid-template-columns: 1fr 1fr;
    }

    .orcamento-grid {
        grid-template-columns: 1fr 1fr;
    }
}
