/* ============================================================
   Engenharia Agêntica — Estilos específicos
   ============================================================ */

/* ── Hero: texto de apoio ──────────────────────────────────── */
.hero-text-support {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    max-width: 750px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* hero overrides for agentic page */
.service-detail-hero .page-subtitle {
    font-size: 21px;
    max-width: 700px;
}

/* ── S03: Service-link cards ───────────────────────────────── */
.service-link-cards-section {
    padding: 80px 0;
}
.service-link-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.service-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.service-link-card .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #ff5956;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}
.service-link-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.service-link-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}
.service-link-card .card-link {
    font-size: 14px;
    font-weight: 600;
    color: #ff5956;
    text-decoration: none;
    transition: color 0.3s;
}
.service-link-card .card-link:hover {
    color: #e04542;
}
.service-link-card .card-link i {
    margin-right: 6px;
}

/* icon color variations */
.service-link-cards-section .col-lg-6:nth-child(2) .feature-icon { background: #6c5ce7; }
.service-link-cards-section .col-lg-6:nth-child(3) .feature-icon { background: #0984e3; }
.service-link-cards-section .col-lg-6:nth-child(4) .feature-icon { background: #00b894; }

/* ── S04: Stat descriptions ────────────────────────────────── */
.stat-box .stat-desc {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-style: italic;
}

/* ── S06: Blog cards ───────────────────────────────────────── */
.blog-cards-section {
    padding: 60px 0 80px;
    background: #f8f9fc;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.blog-card .blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,89,86,0.1);
    color: #ff5956;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.blog-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.blog-card .read-more {
    font-size: 14px;
    font-weight: 600;
    color: #ff5956;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-card .read-more:hover {
    color: #e04542;
}
.blog-card .read-more i {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s;
}
.blog-card .read-more:hover i {
    transform: translateX(4px);
}

/* ── Perfis: altura uniforme + spacing ─────────────────────── */
.service-profiles-section {
    padding-bottom: 50px;
}
.service-profiles-section .profile-card {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* ── Responsivo ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .service-link-cards-section { padding: 60px 0; }
    .blog-cards-section { padding: 60px 0; }
}
@media (max-width: 767px) {
    .hero-text-support { font-size: 15px; }
    .service-detail-hero .page-subtitle { font-size: 17px; }
    .service-link-cards-section { padding: 50px 0; }
    .blog-cards-section { padding: 50px 0; }
    .blog-card { padding: 24px 20px; }
}
