﻿:root {
    --azul: #0d6efd;
    --bg-soft: #f8fafc;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.navbar-brand strong {
    letter-spacing: .5px
}

/* Navbar links */
.navbar-nav .nav-link {
    color:#808080;
    font-weight: 600;
    transition: color .25s ease;
}

    /* efeito ao passar o mouse */
    .navbar-nav .nav-link:hover {
        color: #0d6efd !important; /* azul bootstrap */
    }

.hero {
    background: linear-gradient(135deg, rgba(13,110,253,.08), rgba(25,135,84,.08));
    padding: 5rem 0 4rem;
}

.service-card i {
    font-size: 2rem
}

.divider {
    height: 1px;
    background: #e9ecef
}

.shadow-soft {
    box-shadow: 0 20px 40px rgba(0,0,0,.06)
}

.section-title {
    font-weight: 800;
    letter-spacing: .2px
}

.pill {
    display: inline-block;
    padding: .375rem .75rem;
    border-radius: 999px;
    background: #e7f1ff;
    color: #0d6efd;
    font-weight: 600;
    font-size: .85rem
}

footer {
    background: #0b1220
}

    footer, footer a {
        color: #cbd5e1
    }

.list-check li {
    margin: .3rem 0
}

.list-check i {
    color: #198754;
    margin-right: .5rem
}

.area-cliente-btn {
    font-weight: 700
}

.pbo-img {
    object-fit: cover;
    height: 220px
}

/* CARD SERVIÇOS - HOVER SUAVE */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

    /* EFEITO AO PASSAR O MOUSE */
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        background-color: #f8fbff; /* 🔵 azul bem suave */
        border-color: #d6e9ff;
    }

        /* ÍCONE DESTACA JUNTO */
        .service-card:hover i {
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        /* TÍTULO DESTACA */
        .service-card:hover h5 {
            color: #0d6efd;
        }

        /* LISTA MAIS VISÍVEL */
        .service-card:hover li {
            color: #333;
        }
/* PROVA SOCIAL */
.prova-card {
    transition: all 0.3s ease;
}

    .prova-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        background-color: #ffffff;
    }

/* ==============================
   FUNDO DA ÁREA DE DEPOIMENTOS
============================== */
.bg-depoimentos {
    background: linear-gradient(135deg, rgba(13,110,253,.08), rgba(25,135,84,.08));
}

/* ==============================
   CARD DE DEPOIMENTO
============================== */
.depo-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .depo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

/* ==============================
   BORDA AZUL MAIS SUAVE
============================== */
.depo-card {
    border-left: 5px solid #4da3ff !important;
}

    /* ==============================
   TEXTO MAIS ELEGANTE
============================== */
    .depo-card p {
        font-size: 15px;
        line-height: 1.6;
    }

/* ==============================
   CONTROLES DO CARROSSEL
============================== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #4da3ff;
    border-radius: 50%;
    padding: 12px;
}

/* ==============================
   BOTÕES DO CARROSSEL
============================== */
.custom-carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

    /* ÍCONE */
    .custom-carousel-btn i {
        font-size: 16px;
        color: #4da3ff;
    }

/* POSIÇÃO */
.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* HOVER */
.custom-carousel-btn:hover {
    background: #4da3ff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 25px rgba(77, 163, 255, 0.35);
}

    .custom-carousel-btn:hover i {
        color: white;
    }

/* RESPONSIVO (MOBILE) */
@media (max-width: 768px) {
    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }

    .custom-carousel-btn {
        width: 40px;
        height: 40px;
    }
}