/*
  =====================================================
  cleaning-services.css  — melhorias visuais
  Adicionar APÓS style.css no <head>
  =====================================================
*/

/* ─────────────────────────────────────────────────
   1. HERO / ABOUT SECTION
   ─────────────────────────────────────────────────*/

/* Fundo suave com gradiente diagonal */
.about-area {
    background: linear-gradient(145deg, #f4faff 0%, #ffffff 55%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Ornamento geométrico decorativo de fundo */
.about-area::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,124,251,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-area::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(130,204,9,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Imagem hero com borda-gradiente suave */
.about-img-wrap img:nth-child(1) {
    box-shadow: 0 32px 80px rgba(18, 57, 172, 0.12);
}

/* Título hero — maior impacto */
.about-content .section-title .title {
    font-size: 38px;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

/* Sub-title com pill colorida */
.about-content .section-title .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(130, 204, 9, 0.12);
    color: #5a9400;
    border-radius: 30px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

/* Parágrafos hero com leading melhor */
.about-content p {
    line-height: 1.8;
    margin-bottom: 18px;
    color: #636570;
}

/* Bloco "Call us" aprimorado */
.about-content .contact {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #f0f7ff;
    border-radius: 16px;
    padding: 14px 24px;
    border: 1px solid rgba(0,124,251,0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-content .contact:hover {
    box-shadow: 0 12px 36px rgba(0,124,251,0.14);
    border-color: rgba(0,124,251,0.35);
}

.about-content .contact .icon {
    background: var(--tg-primary-color);
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-content .contact:hover .icon {
    background: var(--tg-secondary-color);
    transform: rotate(-8deg);
}

.about-content .contact a {
    font-size: 20px;
    font-weight: 700;
    color: var(--tg-blue);
    letter-spacing: -0.01em;
}

.about-content .contact a:hover {
    color: var(--tg-primary-color);
}


/* 2. BEFORE / AFTER — agora usa .reveal-* classes (ver style.css) */


/* ─────────────────────────────────────────────────
   3. WHY CHOOSE US (work-area)
   ─────────────────────────────────────────────────*/

.work-area.has-animation {
    background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    position: relative;
}

/* Section title melhorado */
.section-title-two .sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tg-primary-color);
    background: rgba(0,124,251,0.08);
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title-two .title {
    font-size: 36px;
    letter-spacing: -0.02em;
}

/* Cards "work-item" */
.work-item {
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-6px);
}

/* Ícone circular */
.work-icon {
    width: 96px;
    height: 96px;
    border: 2px solid rgba(0,124,251,0.2);
    background: #f4faff;
    box-shadow: 0 8px 30px rgba(0,124,251,0.08);
    transition: all 0.3s ease;
}

.work-item:hover .work-icon {
    border-color: var(--tg-primary-color);
    box-shadow: 0 16px 48px rgba(0,124,251,0.18);
}

.work-icon .number {
    background: var(--tg-secondary-color);
    font-size: 13px;
    width: 34px;
    height: 34px;
    box-shadow: 0 4px 14px rgba(130,204,9,0.35);
}

.work-content .title {
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.work-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #8a8d96;
    width: 88%;
}


/* ─────────────────────────────────────────────────
   4. SERVICES CARDS
   ─────────────────────────────────────────────────*/

.services-area-cleaning {
    background: linear-gradient(175deg, #f3f9ff 0%, #ffffff 35%, #f5fff0 100%);
    position: relative;
}

/* Título da seção */
.services-area-cleaning .section-title .sub-title {
    font-size: 13px;
    letter-spacing: 0.12em;
}

.services-area-cleaning .section-title .title {
    font-size: 36px;
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.services-area-cleaning .section-title p {
    color: #8a8d96;
    max-width: 560px;
    margin: 14px auto 0;
    line-height: 1.75;
}

/* Cards individuais */
.services-item-three--cleaning {
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    overflow: hidden;
    background: #ffffff;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(148,163,184,.15);
    display: flex;
    flex-direction: column;
}

.services-item-three--cleaning:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 40px rgba(18, 57, 172, .10),
        0 2px 6px rgba(0,0,0,.04);
    border-color: rgba(0,124,251,.18);
}

/* Imagem */
.services-item-three--cleaning .services-thumb-three {
    position: relative;
    overflow: hidden;
}

.services-item-three--cleaning .services-thumb-three img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.services-item-three--cleaning:hover .services-thumb-three img {
    transform: scale(1.05);
}

/* Badge ícone */
.cleaning-icon-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
    color: var(--tg-primary-color);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.services-item-three--cleaning:hover .cleaning-icon-badge {
    background: var(--tg-primary-color);
    color: #fff;
    transform: scale(1.08);
}

/* Conteúdo do card */
.services-item-three--cleaning .services-content-three {
    padding: 26px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-item-three--cleaning .services-content-three .title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--tg-blue);
    transition: color .3s ease;
}

.services-item-three--cleaning:hover .services-content-three .title {
    color: var(--tg-primary-color);
}

.services-item-three--cleaning .services-content-three p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--tg-paragraph-color);
    margin-bottom: 18px;
    flex: 1;
}

/* Link CTA do card */
.cleaning-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tg-primary-color);
    letter-spacing: .02em;
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1.5px solid transparent;
    transition: border-color .25s ease;
}

.services-item-three--cleaning:hover .cleaning-card-link {
    border-color: var(--tg-primary-color);
}

.cleaning-card-link i {
    font-size: 11px;
    transition: transform .25s ease;
}

.services-item-three--cleaning:hover .cleaning-card-link i {
    transform: translateX(5px);
}

/* Grid */
.services-item-wrap-two--details .row {
    row-gap: 30px;
}

@media (max-width: 991.98px) {
    .services-item-three--cleaning {
        margin-bottom: 0;
    }
    .services-item-three--cleaning .services-thumb-three img {
        height: 180px;
    }
}


/* ─────────────────────────────────────────────────
   5. DEPOIMENTO (testimonial)
   ─────────────────────────────────────────────────*/

.services-area-cleaning .testimonial-item {
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
    border: 1px solid rgba(0,124,251,0.12);
    border-radius: 22px;
    padding: 48px 52px;
    box-shadow: 0 12px 50px rgba(18,57,172,0.08);
    position: relative;
    overflow: hidden;
}

.services-area-cleaning .testimonial-item::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: 32px;
    font-size: 180px;
    font-family: Georgia, serif;
    color: rgba(0,124,251,0.06);
    line-height: 1;
    pointer-events: none;
}

.services-area-cleaning .testimonial-item:hover {
    border-color: rgba(0,124,251,0.25);
    box-shadow: 0 20px 70px rgba(18,57,172,0.13);
}

.services-area-cleaning .testimonial-icon {
    background: linear-gradient(135deg, var(--tg-primary-color), #0054d4);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,124,251,0.28);
}

.services-area-cleaning .testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4d56;
    margin-bottom: 28px;
}

.services-area-cleaning .testimonial-avatar-info .avatar-content .title {
    font-size: 17px;
    color: var(--tg-blue);
}

.services-area-cleaning .testimonial-avatar-info .avatar-content p {
    color: var(--tg-primary-color);
    font-size: 13px;
    font-weight: 600;
}

/* ─────────────────────────────────────────────────
   6. CTA FINAL
   ─────────────────────────────────────────────────*/

.cta-area {
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 40%, #f3faf0 100%);
    position: relative;
    overflow: hidden;
}

.cta-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0,124,251,0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(130,204,9,0.07) 0%, transparent 50%);
    pointer-events: none;
}

.cta-area .section-title .title {
    font-size: 40px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.cta-area .section-title p {
    font-size: 17px;
    line-height: 1.75;
    color: #636570;
    max-width: 500px;
    margin: 16px auto 0;
}

/* Botões CTA lado a lado */
.cta-area .text-center > .btn {
    padding: 20px 36px;
    font-size: 15px;
    letter-spacing: 0.06em;
    border-radius: 16px;
}

/* "Serving" text */
.cta-area .text-center.mt-40 p {
    font-size: 14px;
    color: #9ca3af;
    letter-spacing: 0.01em;
}

.cta-area .text-center.mt-40 p strong {
    color: var(--tg-blue);
    font-weight: 700;
}


/* ─────────────────────────────────────────────────
   7. TRUST BADGES (aprimoramento adicional)
   ─────────────────────────────────────────────────*/

.trust-badges-area {
    padding: 0 0 64px;
    position: relative;
    z-index: 2;
}

.trust-badges-inner {
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 20px 60px rgba(15, 23, 42, 0.10);
    padding: 0;
    border: 1px solid rgba(148, 163, 184, 0.18);
    overflow: hidden;
}

.trust-badges-inner .row {
    width: 100%;
    margin: 0;
}

.trust-badges-inner .row > [class*="col-"] {
    padding: 0;
    position: relative;
}

/* Divisórias verticais em gradiente */
.trust-badges-inner .row > [class*="col-"]:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(148, 163, 184, 0.3) 30%,
        rgba(148, 163, 184, 0.3) 70%,
        transparent
    );
}

/* Card individual */
.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 44px 20px;
    margin-bottom: 0;
    position: relative;
    cursor: default;
    transition: background 0.35s ease;
}

.trust-badge-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, #f0f7ff 0%, #e8f3ff 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.trust-badge-item:hover::before { opacity: 1; }

/* Traço colorido no topo no hover */
.trust-badge-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--tg-primary-color), var(--tg-secondary-color));
    opacity: 0;
    transition: opacity 0.35s ease, width 0.35s ease;
}

.trust-badge-item:hover::after {
    opacity: 1;
    width: 64px;
}

.trust-badge-content {
    position: relative;
    z-index: 1;
}

/* Número */
.trust-badge-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.trust-badge-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--tg-blue);
    letter-spacing: -2px;
    transition: color 0.3s ease;
}

.trust-badge-item:hover .trust-badge-number {
    color: var(--tg-primary-color);
}

.trust-badge-suffix {
    font-size: 26px;
    font-weight: 700;
    color: var(--tg-secondary-color);
    line-height: 1;
}

/* Label */
.trust-badge-item .title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.trust-badge-item:hover .title { color: #64748b; }

/* Mobile */
@media (max-width: 767.98px) {
    .trust-badges-area { padding: 0 0 40px; }
    .trust-badges-inner { border-radius: 18px; }

    .trust-badges-inner .row > [class*="col-"]:not(:last-child)::after {
        display: none;
    }

    .trust-badges-inner .row > [class*="col-"]:not(:last-child) .trust-badge-item {
        border-bottom: 1px solid rgba(148,163,184,0.2);
    }

    .trust-badge-item { padding: 30px 16px; }
    .trust-badge-number { font-size: 38px; }
    .trust-badge-suffix { font-size: 22px; }
}


/* ─────────────────────────────────────────────────
   8. MICRO-ANIMAÇÕES (scroll-reveal reforço)
   ─────────────────────────────────────────────────*/

/* Transições suaves em links */
.cleaning-card-link,
.about-content .contact a {
    will-change: transform;
}