/* ===== Estilos partilhados entre páginas de serviço (limpeza, turismo, transporte, marketing) ===== */

.service-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h, 92px);
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 18% 20%, rgba(13, 110, 253, .18), transparent 60%),
        radial-gradient(900px 520px at 82% 10%, rgba(255, 255, 255, .08), transparent 60%),
        radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .55) 100%);
    pointer-events: none;
}

.service-hero .hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: .95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.hero-title {
    letter-spacing: -0.8px;
    text-shadow: 0 18px 55px rgba(0, 0, 0, .55);
    line-height: 1.05;
}

.hero-sub {
    color: rgba(255, 255, 255, .86);
    max-width: 760px;
}

.soft-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    box-shadow: 0 28px 85px rgba(0, 0, 0, .24);
}

.cta-input {
    background: rgba(255, 255, 255, .10) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    color: #fff !important;
    border-radius: 14px !important;
}
.cta-input::placeholder { color: rgba(255, 255, 255, .72); }
.cta-input:focus {
    border-color: rgba(13, 110, 253, .70) !important;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .20) !important;
    background: rgba(255, 255, 255, .12) !important;
}

.section-kicker {
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
}

.divider {
    width: 78px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), rgba(13, 110, 253, .20));
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .18);
}

.feature-card {
    background: linear-gradient(180deg, #0b0f1a 0%, #070a12 100%);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 85px rgba(0, 0, 0, .24);
    border-color: rgba(255, 255, 255, .14);
}

.icon-pill {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, .14);
    border: 1px solid rgba(13, 110, 253, .28);
    box-shadow: 0 14px 35px rgba(13, 110, 253, .10) inset;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 15, 26, .92), rgba(7, 10, 18, .92));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(520px 280px at 20% 15%, rgba(13, 110, 253, .18), transparent 60%),
        radial-gradient(380px 220px at 80% 10%, rgba(255, 255, 255, .08), transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 85px rgba(0, 0, 0, .24);
    border-color: rgba(255, 255, 255, .14);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, .14);
    border: 1px solid rgba(13, 110, 253, .28);
    box-shadow: 0 14px 35px rgba(13, 110, 253, .10) inset;
}

.service-card h5 { color: rgba(255, 255, 255, .95); letter-spacing: -0.2px; }
.service-card p  { color: rgba(255, 255, 255, .70); }
.service-card .btn-outline-primary {
    border-color: rgba(13, 110, 253, .55) !important;
    color: #fff !important;
    background: rgba(13, 110, 253, .10);
}

@media (max-width: 991.98px) {
    .service-hero { min-height: 82vh; }
    .hero-title { font-size: clamp(2.1rem, 6vw, 3rem); }
}
