.showcase-section {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    padding: 80px 20px;
}
.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}
.showcase-title span {
    color: #c1272d;
}
.showcase-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.showcase-card {
    position: relative;
    text-align: center;
    padding-top: 70px;
    margin-top: 70px;
}
.showcase-card-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.4s ease;
    background-color: white;
}
.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.showcase-card:hover .showcase-card-image img {
    transform: scale(1.08);
}
.showcase-card-content {
    background-color: #fff;
    padding: 100px 30px 30px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase-card:hover .showcase-card-content {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.showcase-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #334155;
    margin-top: 0;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.showcase-card:hover h3 {
    color: #c1272d;
}
.showcase-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}
