.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4CAF50;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 5px;
    display: block;
}

.percent-symbol {
    display: inline-block;
    font-size: 2rem;
    color: #4CAF50;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 30%;
}

/* Estilos para os cards de clientes */
.client-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.client-card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.client-info {
    margin-left: 15px;
}

.client-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
}

.client-info p {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.client-company {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.client-card-body {
    padding: 20px;
}

.client-testimonial {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.client-testimonial::before {
    content: '"';
    font-size: 50px;
    color: #4CAF50;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
}

.client-card-footer {
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: #FFD700;
}

.project-date {
    color: #888;
    font-size: 0.8rem;
}