/* ================= DEPOIMENTOS ================= */

.depoimentos {
    padding: 90px 8%;
    text-align: center;
    background: #0b0f14;
}

.depoimentos h2 {
    font-size: 34px;
    font-weight: 800;
}

.depoimentos-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.depo-card {
    background: #11161d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1c242f;
    transition: 0.3s;
}

.depo-card p {
    font-size: 15px;
    color: #bbb;
    margin: 15px 0;
}

.stars {
    color: #f5b400;
    font-size: 18px;
    letter-spacing: 2px;
}

.depo-card:hover {
    transform: translateY(-6px);
    border-color: #f5b400;
}

.btn-google {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 35px;
    border-radius: 50px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-google:hover {
    background: #f5b400;
}