/* ========================================
           SEÇÃO BENEFÍCIOS
        ======================================== */
.beneficios-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--branco) 0%, var(--bege-suave) 50%, var(--branco) 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil */
.beneficios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 166, 54, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 53, 131, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.beneficios-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
           HEADER DA SEÇÃO
        ======================================== */
.beneficios-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    animation: fadeInUp 0.8s ease-out;
}



.beneficios-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--azul-principal);
    margin-bottom: 1.5rem;
}

.beneficios-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--cinza-texto);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
           GRID DE CARDS
        ======================================== */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* ========================================
           CARD INDIVIDUAL
        ======================================== */
.beneficio-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 53, 131, 0.08),
        0 2px 8px rgba(0, 53, 131, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 53, 131, 0.06);
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--laranja-vibrante), var(--azul-principal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 53, 131, 0.15),
        0 8px 16px rgba(0, 53, 131, 0.08);
}

.beneficio-card:hover::before {
    transform: scaleX(1);
}

/* ========================================
           HEADER DO CARD - TÍTULO MAIS PRÓXIMO
        ======================================== */
.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bege-suave);
}

/* ÍCONE PRINCIPAL DO CARD - LINHAS FINAS */
.card-icon-3d {
    width: 48px;
    height: 48px;
    min-width: 48px;
    stroke: var(--azul-principal);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 6px rgba(0, 53, 131, 0.2));
    transition: all 0.3s ease;
}

.beneficio-card:hover .card-icon-3d {
    stroke: var(--azul-principal);
    filter: drop-shadow(0 4px 10px rgba(0, 53, 131, 0.35));
    transform: scale(1.05);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--azul-principal);
    line-height: 1.4;
}

/* ========================================
           LISTA DE BENEFÍCIOS
        ======================================== */
.beneficio-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.beneficio-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.beneficio-item:hover {
    transform: translateX(8px);
}

/* ÍCONES DOS ITENS - LINHAS FINAS */
.item-icon-3d {
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: var(--azul-principal);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 4px rgba(0, 53, 131, 0.15));
    transition: all 0.3s ease;
    opacity: 1;
}

.beneficio-item:hover .item-icon-3d {
    filter: drop-shadow(0 3px 8px rgba(0, 53, 131, 0.3));
    transform: scale(1.1);
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--azul-principal);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.item-description {
    font-size: 0.95rem;
    color: var(--cinza-texto);
    line-height: 1.6;
}

/* ========================================
           ANIMATIONS
        ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
           RESPONSIVE
        ======================================== */
@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .beneficios-section {
        padding: 4rem 1.5rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beneficio-card {
        padding: 2rem 1.5rem;
    }

    .card-icon-3d {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .item-icon-3d {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .beneficios-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .card-header {
        gap: 0.6rem;
    }

    .card-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .beneficio-card {
        padding: 1.75rem 1.25rem;
    }

    .card-icon-3d {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .item-icon-3d {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}