/* ===================================
SEO AVANÇADO
=================================== */

/* HERO */
.hero-servico {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: .95rem;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,.75);
    transition: .3s;
}

.hero-breadcrumb a:hover {
    color: #fff;
}

.hero-breadcrumb span {
    color: rgba(255,255,255,.4);
}

.hero-breadcrumb strong {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(0,255,136,.08);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(0,255,136,.12),
        transparent
    );
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
}


/* SOBRE SEO */
.servico-sobre {
    background: linear-gradient(
        180deg,
        rgba(15,23,42,.35),
        transparent
    );
}


/* PROCESSO */
.processo {
    background: #0d1117;
}

.processo .cards {
    grid-template-columns: repeat(4, 1fr);
}

.processo .card h3 {
    color: var(--primary);
}



/* ========== FAQ ======== */
.faq {
    background: #0d1117;
}
.faq .card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}




/* ========= CTA FINAL ========== */
.cta-final {
    text-align: center;
    background: linear-gradient(180deg, #020617 0%, #0d1117 100%);
}
.cta-final .section-Ftitle {
    max-width: 800px;
    margin: 0 auto 60px;
}
.cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

@media(max-width:768px) {

    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-final-buttons a {
        width: 100%;
        max-width: 320px;
    }

}


/* RESPONSIVO */
@media (max-width: 992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .hero-image {
        order: -1;
    }

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

@media (max-width: 768px) {

    .hero-servico {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .processo .cards {
        grid-template-columns: 1fr;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-final-buttons a {
        width: 100%;
        max-width: 320px;
    }
}