/* Página inicial — tokens e componentes base vêm de shared.css */

.hero {
    padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(2rem, 4vw, 3.5rem);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--muted);
    font-size: var(--step--1);
}

.hero-status .icon {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.hero h1 {
    margin-bottom: 0.5rem;
}

.hero-role {
    margin-bottom: 1.25rem;
    font-size: var(--step-1);
    font-weight: 600;
    color: var(--accent);
}

.hero-summary {
    max-width: 54ch;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hero-photo-frame {
    position: relative;
    justify-self: center;
    padding: 8px;
    border-radius: 28px;
    background: linear-gradient(150deg, var(--accent-strong), transparent 55%, var(--gold));
}

.hero-photo {
    width: clamp(210px, 30vw, 300px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22px;
    background: var(--surface);
}

@media (max-width: 820px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-photo-frame {
        order: -1;
    }

    .hero-summary {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* Números em destaque */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--step-2);
    font-weight: 700;
    color: var(--text-strong);
    line-height: 1.1;
}

.stat-label {
    font-size: var(--step--1);
    color: var(--muted);
}

/* Áreas de atuação */
.service-card .icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.9rem;
    color: var(--accent);
}

.service-card p {
    color: var(--muted);
    font-size: 0.97rem;
}

/* Chamada final */
.cta-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
}

.cta-panel h2 {
    margin-bottom: 0.35rem;
}

.cta-panel p {
    margin: 0;
    color: var(--muted);
}
