/**
 * Nos Avantages Styles
 *
 * @package Hello_Elementor_Child
 * @since 1.0.0
 */

.na-section {
    background: #ffffff;
}
.na-container {
    max-width: 1200px;
    margin: 0 auto;
}
.na-header {
    text-align: center;
    margin-bottom: 50px;
}
.na-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}
.na-subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}
.na-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.na-card {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.na-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(193, 163, 95, 0.2);
    border-color: #c1a35f;
}
.na-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.na-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.na-title {
    font-size: 22px;
    font-weight: 700;
    color: #c1a35f;
    margin-bottom: 15px;
}
.na-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .na-section {
        padding: 40px 15px;
    }
    .na-header {
        margin-bottom: 35px;
    }
    .na-main-title {
        font-size: 32px;
    }
    .na-subtitle {
        font-size: 16px;
    }
    .na-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .na-card {
        padding: 30px 20px;
    }
    .na-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .na-title {
        font-size: 20px;
    }
    .na-description {
        font-size: 15px;
    }
}
