
/* Definição de variáveis para facilitar ajustes */
:root {
    --primary-color: #9c23b0;
    --primary-light: rgba(156, 35, 176, 0.1);
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --bg-soft: #fdfbff; /* Um tom muito leve de roxo/branco para o fundo */
}

#benefits {
    background-color: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo de fundo (opcional - dá um charme extra) */
#benefits::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156,35,176,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

/* Estilo do Card */
.benefit-card {
    background: #ffffff;
    border: none;
    border-radius: 16px; /* Bordas mais arredondadas */
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03); /* Sombra muito suave inicial */
}

/* Efeito ao passar o mouse no Card */
.benefit-card:hover {
    transform: translateY(-10px); /* Sobe o card */
    box-shadow: 0 20px 40px rgba(156, 35, 176, 0.15); /* Sombra colorida e difusa */
}

/* Wrapper do Ícone */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%; /* Círculo perfeito */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Efeito no ícone ao passar o mouse no card */
.benefit-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(156, 35, 176, 0.4);
}

.benefit-card:hover .icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

.card-title-custom {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text-custom {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}