/* ========================================
   SEÇÃO DE BENEFÍCIOS
======================================== */

.benefits_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E67E22, #F39C12, #E67E22);
}

.benefits_section .heading_container {
    margin-bottom: 60px;
}

.benefits_section .heading_container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefits_section .heading_container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.benefits-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.benefits-row > [class*="col-"] {
    padding: 0 10px;
    flex: 0 0 25%;
    max-width: 25%;
}

/* ========================================
   CARDS DE BENEFÍCIOS
======================================== */

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E67E22, #F39C12);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.2);
    border-color: #E67E22;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

/* ========================================
   ÍCONES DOS BENEFÍCIOS
======================================== */

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    opacity: 0.3;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon::after {
    transform: scale(1.3);
    opacity: 0;
}

.benefit-icon i {
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* ========================================
   TEXTO DOS BENEFÍCIOS
======================================== */

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card:hover h4 {
    color: #E67E22;
}

.benefit-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 991px) {
    .benefits_section {
        padding: 60px 0;
    }

    .benefits_section .heading_container h2 {
        font-size: 2rem;
    }

    .benefits-row {
        flex-wrap: wrap;
    }

    .benefits-row > [class*="col-"] {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .benefit-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {
    .benefits_section {
        padding: 50px 0;
    }

    .benefits_section .heading_container {
        margin-bottom: 40px;
    }

    .benefits_section .heading_container h2 {
        font-size: 1.8rem;
    }

    .benefits_section .heading_container p {
        font-size: 1rem;
    }

    .benefits-row {
        flex-direction: column;
    }

    .benefits-row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .benefit-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .benefit-icon i {
        font-size: 32px;
    }

    .benefit-card h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        padding: 25px 20px;
    }
}
