.service-page {
    background: #050510;
    color: #f5f7ff;
}

.service-page header {
    top: 0;
}

.service-page main {
    overflow: hidden;
}

.service-hero {
    min-height: 76vh;
    display: grid;
    align-items: center;
    padding: 9rem 0 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 4rem;
    align-items: center;
}

.service-kicker {
    display: block;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    font-family: var(--fonte-titulo);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 900px;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 0.98;
}

.service-hero p {
    max-width: 760px;
    font-size: 1.15rem;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.service-summary {
    padding: 1.75rem;
    border-left: 2px solid var(--neon-gold);
    background: rgba(255, 255, 255, 0.035);
}

.service-summary h2 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-summary ul,
.service-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-summary li,
.service-checklist li {
    position: relative;
    margin-bottom: 0.85rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.service-summary li::before,
.service-checklist li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
}

.service-band {
    padding: 5rem 0;
}

.service-band-alt {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-copy {
    max-width: 860px;
}

.service-copy h2,
.service-band > .container > h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-copy h3 {
    margin: 2rem 0 0.6rem;
    color: #fff;
    font-size: 1.35rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-feature {
    min-width: 0;
    padding: 1.6rem 0;
    border-top: 2px solid var(--neon-roxo);
}

.service-feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-faq {
    max-width: 900px;
}

.service-faq details {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-faq summary {
    cursor: pointer;
    color: #fff;
    font-weight: 800;
}

.service-faq details p {
    margin: 0.8rem 0 0;
}

.service-final-cta {
    padding: 5rem 0;
    text-align: center;
}

.service-final-cta p {
    max-width: 700px;
    margin: 1rem auto 2rem;
}

.service-breadcrumb {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-breadcrumb a {
    color: var(--neon-cyan);
}

@media (max-width: 850px) {
    .service-hero {
        min-height: auto;
        padding-top: 8rem;
    }

    .service-hero-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-page nav ul {
        gap: 0.75rem;
    }

    .service-page nav a {
        font-size: 0.8rem;
    }
}
