/* Estilos para Cards de Benefícios */

.benefits-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 0;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-content h3 {
    color: #2c5530;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.benefit-content strong {
    color: #2c5530;
    font-weight: 700;
}

/* Cores específicas para cada card */
.benefit-card:nth-child(1) .benefit-icon {
    color: #FF9800;
}

.benefit-card:nth-child(2) .benefit-icon {
    color: #F44336;
}

.benefit-card:nth-child(3) .benefit-icon {
    color: #2196F3;
}

.benefit-card:nth-child(1):hover {
    border-color: #FF9800;
}

.benefit-card:nth-child(2):hover {
    border-color: #F44336;
}

.benefit-card:nth-child(3):hover {
    border-color: #2196F3;
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .benefit-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
}
