/* Definição de Cores (Reutilizando para consistência) */
:root {
    --jd-green: #367C2B;
    --jd-yellow: #FFDE00;
    --jd-gray: #54585A;
    --jd-black: #000000;
    --jd-white: #FFFFFF;
    --jd-border: #E5E5E5; /* Cor da borda suave */
    --jd-font: 'JD Sans Pro', Helvetica, sans-serif;
}

/* Wrapper Principal com as margens solicitadas */
.jd-features-wrapper {
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 64px;
    font-family: var(--jd-font);
}

/* Cabeçalho da Seção */
.jd-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px auto;
}

/* Badge "Novos Recursos" */
.jd-features-badge {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: var(--jd-green);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.jd-features-badge::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--jd-yellow);
    margin-top: 4px;
    border-radius: 2px;
}

/* Título Principal */
.jd-features-title {
    font-size: 32px;
    color: var(--jd-green);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Subtítulo */
.jd-features-subtitle {
    font-size: 18px;
    color: var(--jd-gray);
    line-height: 1.5;
}

/* Grid de Cards */
.jd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Colunas iguais */
    gap: 24px;
}

/* Card Individual */
.jd-feature-card {
    background: var(--jd-white);
    border: 1px solid var(--jd-border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Ícone do Card */
.jd-feature-icon-box {
    margin-bottom: 12px;
    display: inline-block;
}

.jd-feature-icon-box i, 
.jd-feature-icon-box svg {
    font-size: 32px;
    color: var(--jd-green);
    width: 32px;
    height: 32px;
}

/* Linha amarela abaixo do ícone */
.jd-feature-icon-line {
    width: 24px;
    height: 4px;
    background-color: var(--jd-yellow);
    margin-top: 8px;
    border-radius: 2px;
}

/* Título do Card */
.jd-card-title {
    font-size: 20px;
    color: var(--jd-green);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Texto do Card */
.jd-card-desc {
    font-size: 16px;
    color: var(--jd-gray);
    line-height: 1.5;
}

/* RESPONSIVO (Mobile) */
@media (max-width: 768px) {
    .jd-features-wrapper {
        padding: 40px 16px;
    }

    .jd-features-title {
        font-size: 24px;
    }

    .jd-features-subtitle {
        font-size: 16px;
    }

    .jd-features-grid {
        grid-template-columns: 1fr; /* 1 Coluna no mobile */
        gap: 16px;
    }
    
    .jd-features-header {
        margin-bottom: 24px;
    }

    .jd-feature-card {
        padding: 24px;
    }
}